Commit f91a0f93 authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: add more sout profiles.

Less technical profiles, directly targeting devices.
More to be added.
parent 722c751d
#define NB_PROFILE \ #define NB_PROFILE \
(sizeof(video_profile_value_list)/sizeof(video_profile_value_list[0])) (sizeof(video_profile_value_list)/sizeof(video_profile_value_list[0]))
static const char video_profile_name_list[][35] = { static const char video_profile_name_list[][37] = {
"Video - H.264 + MP3 (MP4)", "Video - H.264 + MP3 (MP4)",
"Video - VP80 + Vorbis (Webm)", "Video - VP80 + Vorbis (Webm)",
"Video - H.264 + MP3 (TS)", "Video - H.264 + MP3 (TS)",
...@@ -16,9 +16,19 @@ static const char video_profile_name_list[][35] = { ...@@ -16,9 +16,19 @@ static const char video_profile_name_list[][35] = {
"Audio - MP3 (MP4)", "Audio - MP3 (MP4)",
"Audio - FLAC", "Audio - FLAC",
"Audio - CD", "Audio - CD",
"Video for MPEG4 720p TV/device",
"Video for MPEG4 1080p TV/device",
"Video for DivX compatible player",
"Video for iPod SD",
"Video for iPod HD/iPhone/PSP",
"Video for Android SD Low",
"Video for Android SD High",
"Video for Android HD",
"Video for Youtube SD",
"Video for Youtube HD",
}; };
static const char video_profile_value_list[][53] = { static const char video_profile_value_list[][58] = {
/* Container(string), transcode video(bool), transcode audio(bool), */ /* Container(string), transcode video(bool), transcode audio(bool), */
/* use subtitles(bool), video codec(string), video bitrate(integer), */ /* use subtitles(bool), video codec(string), video bitrate(integer), */
/* scale(float), fps(float), width(integer, height(integer), */ /* scale(float), fps(float), width(integer, height(integer), */
...@@ -38,6 +48,16 @@ static const char video_profile_value_list[][53] = { ...@@ -38,6 +48,16 @@ static const char video_profile_value_list[][53] = {
"mp4;1;1;0;none;800;1;0;0;0;mpga;128;2;44100;none;0", "mp4;1;1;0;none;800;1;0;0;0;mpga;128;2;44100;none;0",
"raw;1;1;0;none;800;1;0;0;0;flac;128;2;44100;none;0", "raw;1;1;0;none;800;1;0;0;0;flac;128;2;44100;none;0",
"wav;1;1;0;none;800;1;0;0;0;s16l;128;2;44100;none;0", "wav;1;1;0;none;800;1;0;0;0;s16l;128;2;44100;none;0",
"mp4;1;1;0;h264;1500;1;0;1280;720;mp3;192;2;44100;none;0",
"mp4;1;1;0;h264;3500;1;0;1920;1080;mp3;192;2;44100;none;0",
"avi;1;1;0;DIV3;900;1;0;720;568;mp3;128;2;44100;0;0",
"mp4;1;1;0;h264;600;1;0;320;180;mp3;128;2;44100;none;0",
"mp4;1;1;0;h264;700;1;0;480;272;mp3;128;2;44100;none;0",
"mp4;1;1;0;h264;56;1;12;176;144;mp3;24;1;44100;none;0",
"mp4;1;1;0;h264;500;1;0;480;360;mp3;128;2;44100;none;0",
"mp4;1;1;0;h264;2000;1;0;1280;720;mp3;192;2;44100;none;0",
"mp4;1;1;0;h264;800;1;0;640;480;mp3;128;2;44100;none;0",
"mp4;1;1;0;h264;1500;1;0;1280;720;mp3;128;2;44100;none;0",
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment