profiles.hpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. /* Increase this value if you add a new profile */
  2. #define NB_PROFILE 12
  3. static const char *const video_profile_name_list[] = {
  4.     "Video - H.264 + AAC (TS)",
  5.     "Video - Dirac + AAC (TS)",
  6.     "Video - Theora + Vorbis (OGG)",
  7.     "Video - Theora + Flac (OGG)",
  8.     "Video - MPEG-4 + AAC (MP4)",
  9.     "Video - MPEG-2 + MPGA (TS)",
  10.     "Video - WMV + WMA (ASF)",
  11.     "Video - DIV3 + MP3 (ASF)",
  12.     "Audio - Vorbis (OGG)",
  13.     "Audio - MP3",
  14.     "Audio - AAC (MP4)",
  15.     "Audio - FLAC",
  16. };
  17. static const char *const video_profile_value_list[] = {
  18.     /* Container(string), transcode video(bool), transcode audio(bool), */
  19.     /* use subtitles(bool), video codec(string), video bitrate(integer), */
  20.     /* scale(float), fps(float), width(integer, height(integer), */
  21.     /* audio codec(string), audio bitrate(integer), channels(integer), */
  22.     /* samplerate(integer), subtitle codec(string), subtitle overlay(bool) */
  23.     "ts;1;1;0;h264;800;1;0;0;0;mp4a;128;2;44100;0;0",
  24.     "ts;1;1;0;drac;800;1;0;0;0;mp4a;128;2;44100;0;0",
  25.     "ogg;1;1;0;theo;800;1;0;0;0;vorb;128;2;44100;0;0",
  26.     "ogg;1;1;0;theo;800;1;0;0;0;flac;128;2;44100;0;0",
  27.     "mp4;1;1;0;mp4v;800;1;0;0;0;mp4a;128;2;44100;0;0",
  28.     "ts;1;1;0;mp2v;800;1;0;0;0;mpga;128;2;44100;0;0",
  29.     "asf;1;1;0;WMV2;800;1;0;0;0;wma2;128;2;44100;0;0",
  30.     "asf;1;1;0;DIV3;800;1;0;0;0;mp3;128;2;44100;0;0",
  31.     "ogg;0;1;0;0;800;1;0;0;0;vorb;128;2;44100;0;0",
  32.     "raw;0;1;0;0;800;1;0;0;0;mp3;128;2;44100;0;0",
  33.     "mp4;0;1;0;0;800;1;0;0;0;mp4a;128;2;44100;0;0",
  34.     "raw;0;1;0;0;800;1;0;0;0;flac;128;2;44100;0;0",
  35. };