From 755507c2e5f5ff8ddab28303aa89b58d447ebf52 Mon Sep 17 00:00:00 2001 From: Michael Dale Date: Thu, 6 Aug 2009 23:56:34 +0000 Subject: [PATCH] integration of default transcode settings presets to stand alone firefogg encoder app --- js2/mwEmbed/libAddMedia/mvAdvFirefogg.js | 30 ++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) 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: {}, -- 2.20.1