Index: trunk/extensions/TimedMediaHandler/WebVideoTranscode/WebVideoTranscode.php |
— | — | @@ -59,12 +59,12 @@ |
60 | 60 | 'twopass' => 'true', |
61 | 61 | 'keyframeInterval' => '64', |
62 | 62 | 'bufDelay' => '128', |
63 | | - 'videoCodec' => 'theora', |
| 63 | + 'videoCodec' => 'theora', |
64 | 64 | ), |
65 | 65 | WebVideoTranscode::ENC_OGV_4MBS => |
66 | 66 | array( |
67 | | - 'maxSize' => '360', |
68 | | - 'videoBitrate' => '368', |
| 67 | + 'maxSize' => '480', |
| 68 | + 'videoBitrate' => '512', |
69 | 69 | 'audioBitrate' => '48', |
70 | 70 | 'noUpscaling' => 'true', |
71 | 71 | 'twopass' => 'true', |
— | — | @@ -74,8 +74,8 @@ |
75 | 75 | ), |
76 | 76 | WebVideoTranscode::ENC_OGV_6MBS => |
77 | 77 | array( |
78 | | - 'maxSize' => '480', |
79 | | - 'videoBitrate' => '512', |
| 78 | + 'maxSize' => '640', |
| 79 | + 'videoBitrate' => '786', |
80 | 80 | 'audioBitrate' => '96', |
81 | 81 | 'noUpscaling' => 'true', |
82 | 82 | 'twopass' => 'true', |
— | — | @@ -86,19 +86,20 @@ |
87 | 87 | |
88 | 88 | WebVideoTranscode::ENC_OGV_HQ_VBR => |
89 | 89 | array( |
90 | | - 'maxSize' => '720', |
| 90 | + 'maxSize' => '1280', |
91 | 91 | 'videoQuality' => 6, |
92 | 92 | 'audioQuality' => 3, |
93 | 93 | 'noUpscaling' => 'true', |
94 | 94 | 'keyframeInterval' => '128', |
95 | 95 | 'videoCodec' => 'theora', |
96 | 96 | ), |
| 97 | + |
97 | 98 | |
98 | 99 | // WebM transcode: |
99 | 100 | WebVideoTranscode::ENC_WEBM_6MBS => |
100 | 101 | array( |
101 | | - 'maxSize' => '512', |
102 | | - 'videoBitrate' => '512', |
| 102 | + 'maxSize' => '640', |
| 103 | + 'videoBitrate' => '786', |
103 | 104 | 'audioBitrate' => '96', |
104 | 105 | 'noUpscaling' => 'true', |
105 | 106 | 'twopass' => 'true', |
— | — | @@ -108,11 +109,11 @@ |
109 | 110 | ), |
110 | 111 | WebVideoTranscode::ENC_WEBM_HQ_VBR => |
111 | 112 | array( |
112 | | - 'maxSize' => '720', |
| 113 | + 'maxSize' => '1280', |
113 | 114 | 'videoQuality' => 7, |
114 | 115 | 'audioQuality' => 3, |
115 | 116 | 'noUpscaling' => 'true', |
116 | | - 'videoCodec' => 'vp8', |
| 117 | + 'videoCodec' => 'vp8', |
117 | 118 | ) |
118 | 119 | ); |
119 | 120 | |