2012/9/18 Francois Cartegnie <span dir="ltr"><<a href="mailto:git@videolan.org" target="_blank">git@videolan.org</a>></span><br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
vlc | branch: master | Francois Cartegnie <<a href="mailto:fcvlcdev@free.fr">fcvlcdev@free.fr</a>> | Tue Sep 18 13:02:25 2012 +0200| [f91a0f93f1a279c02dee8a63a0b31e30f63ceb8a] | committer: Francois Cartegnie<br>
<br>
Qt: add more sout profiles.<br>
<br>
Less technical profiles, directly targeting devices.<br>
More to be added.<br>
<br>
> <a href="http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f91a0f93f1a279c02dee8a63a0b31e30f63ceb8a" target="_blank">http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f91a0f93f1a279c02dee8a63a0b31e30f63ceb8a</a><br>

---<br>
<br>
 modules/gui/qt4/components/sout/profiles.hpp |   24 ++++++++++++++++++++++--<br>
 1 file changed, 22 insertions(+), 2 deletions(-)<br>
<br>
diff --git a/modules/gui/qt4/components/sout/profiles.hpp b/modules/gui/qt4/components/sout/profiles.hpp<br>
index deca9a6..cab47fc 100644<br>
--- a/modules/gui/qt4/components/sout/profiles.hpp<br>
+++ b/modules/gui/qt4/components/sout/profiles.hpp<br>
@@ -1,7 +1,7 @@<br>
 #define NB_PROFILE \<br>
     (sizeof(video_profile_value_list)/sizeof(video_profile_value_list[0]))<br>
<br>
-static const char video_profile_name_list[][35] = {<br>
+static const char video_profile_name_list[][37] = {<br>
     "Video - H.264 + MP3 (MP4)",<br>
     "Video - VP80 + Vorbis (Webm)",<br>
     "Video - H.264 + MP3 (TS)",<br>
@@ -16,9 +16,19 @@ static const char video_profile_name_list[][35] = {<br>
     "Audio - MP3 (MP4)",<br>
     "Audio - FLAC",<br>
     "Audio - CD",<br>
+    "Video for MPEG4 720p TV/device",<br>
+    "Video for MPEG4 1080p TV/device",<br>
+    "Video for DivX compatible player",<br>
+    "Video for iPod SD",<br>
+    "Video for iPod HD/iPhone/PSP",<br>
+    "Video for Android SD Low",<br>
+    "Video for Android SD High",<br>
+    "Video for Android HD",<br>
+    "Video for Youtube SD",<br>
+    "Video for Youtube HD",<br>
 };<br>
<br>
-static const char video_profile_value_list[][53] = {<br>
+static const char video_profile_value_list[][58] = {<br>
     /* Container(string), transcode video(bool), transcode audio(bool), */<br>
     /* use subtitles(bool), video codec(string), video bitrate(integer), */<br>
     /* scale(float), fps(float), width(integer, height(integer), */<br>
@@ -38,6 +48,16 @@ static const char video_profile_value_list[][53] = {<br>
     "mp4;1;1;0;none;800;1;0;0;0;mpga;128;2;44100;none;0",<br>
     "raw;1;1;0;none;800;1;0;0;0;flac;128;2;44100;none;0",<br>
     "wav;1;1;0;none;800;1;0;0;0;s16l;128;2;44100;none;0",<br>
+    "mp4;1;1;0;h264;1500;1;0;1280;720;mp3;192;2;44100;none;0",<br></blockquote><div><br></div><div>Video bitrate seems quite small for OK quality. </div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

+    "mp4;1;1;0;h264;3500;1;0;1920;1080;mp3;192;2;44100;none;0",<br>
+    "avi;1;1;0;DIV3;900;1;0;720;568;mp3;128;2;44100;0;0",<br></blockquote><div><br></div><div>Is there some reason to select 720x568 instead of 720x576?</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

+    "mp4;1;1;0;h264;600;1;0;320;180;mp3;128;2;44100;none;0",<br>
+    "mp4;1;1;0;h264;700;1;0;480;272;mp3;128;2;44100;none;0",<br>
+    "mp4;1;1;0;h264;56;1;12;176;144;mp3;24;1;44100;none;0",<br>
+    "mp4;1;1;0;h264;500;1;0;480;360;mp3;128;2;44100;none;0",<br>
+    "mp4;1;1;0;h264;2000;1;0;1280;720;mp3;192;2;44100;none;0",<br>
+    "mp4;1;1;0;h264;800;1;0;640;480;mp3;128;2;44100;none;0",<br>
+    "mp4;1;1;0;h264;1500;1;0;1280;720;mp3;128;2;44100;none;0",<br></blockquote><div><br></div><div>Same as first one, specially since AFAIK YouTube re-encodes everything. </div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

 };<br>
<br>
<br>
<br>
_______________________________________________<br>
vlc-commits mailing list<br>
<a href="mailto:vlc-commits@videolan.org">vlc-commits@videolan.org</a><br>
<a href="http://mailman.videolan.org/listinfo/vlc-commits" target="_blank">http://mailman.videolan.org/listinfo/vlc-commits</a><br>
</blockquote></div><br>