forked from 0x2620/pandora
add resolutions to firefogg upload
This commit is contained in:
parent
1cad133fc3
commit
14fa74bf44
3 changed files with 20 additions and 3 deletions
|
|
@ -226,16 +226,32 @@ pandora.ui.uploadDialog = function(data) {
|
|||
options.samplerate = 44100;
|
||||
options.audioQuality = 3;
|
||||
options.channels = 2;
|
||||
} else if (resolution == 432) {
|
||||
options.height = 432;
|
||||
options.samplerate = 44100;
|
||||
options.audioQuality = 3;
|
||||
options.channels = 2;
|
||||
} else if (resolution == 360) {
|
||||
options.height = 320;
|
||||
options.samplerate = 44100;
|
||||
options.audioQuality = 1;
|
||||
options.channels = 1;
|
||||
} else if (resolution == 288) {
|
||||
options.height = 288;
|
||||
options.samplerate = 44100;
|
||||
options.audioQuality = 0;
|
||||
options.channels = 1;
|
||||
} else if (resolution == 240) {
|
||||
options.height = 240;
|
||||
options.samplerate = 44100;
|
||||
options.audioQuality = 0;
|
||||
options.channels = 1;
|
||||
} else if (resolution == 144) {
|
||||
options.height = 144;
|
||||
options.samplerate = 22050;
|
||||
options.audioQuality = -1;
|
||||
options.audioBitrate = 22;
|
||||
options.channels = 1;
|
||||
} else if (resolution == 96) {
|
||||
options.height = 96;
|
||||
options.samplerate = 22050;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue