From: Michael Dale Date: Thu, 6 Aug 2009 23:56:34 +0000 (+0000) Subject: integration of default transcode settings presets to stand alone firefogg encoder app X-Git-Tag: 1.31.0-rc.0~40451 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=755507c2e5f5ff8ddab28303aa89b58d447ebf52;p=lhc%2Fweb%2Fwiklou.git integration of default transcode settings presets to stand alone firefogg encoder app --- diff --git a/js2/mwEmbed/libAddMedia/mvAdvFirefogg.js b/js2/mwEmbed/libAddMedia/mvAdvFirefogg.js index eb97042bb5..2a3a030b69 100644 --- a/js2/mwEmbed/libAddMedia/mvAdvFirefogg.js +++ b/js2/mwEmbed/libAddMedia/mvAdvFirefogg.js @@ -50,11 +50,33 @@ mvAdvFirefogg.prototype = { 'webvideo': { 'desc': "Web Video Theora, Vorbis 400kbs & 400px max width", 'conf': { - 'maxSize': 400, - 'videoBitrate': 400, - 'noUpscaling':true + 'maxSize' : 400, + 'videoBitrate' : 544, + 'audioBitrate' : 96, + 'noUpscaling' : true, } - } + }, + 'savebandwith': { + 'desc': "Low Bandwith Theora, Vorbis 164kbs & 200px max size", + 'conf': { + 'maxSize' : 200, + 'videoBitrate' : 164, + 'audioBitrate' : 32, + 'samplerate' : 22050, + 'framerate' : 15, + 'channels' : 1, + 'noUpscaling' : true + } + }, + 'hqstream':{ + 'desc': "High Quality Theora, Vorbis 1080px max width", + 'conf': { + 'maxSize' : 1080, + 'videoQuality' : 6, + 'audioQuality' : 3, + 'noUpscaling' : true, + } + }, } }, local_settings: {},