Advertisement
TachyonVortex

ffprobe with audio language button

Jan 30th, 2013
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ffprobe -v quiet -print_format json -show_format -show_streams life.mp4
  2.  
  3. {
  4.     "streams": [
  5.         {
  6.             "index": 0,
  7.             "codec_name": "h264",
  8.             "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10",
  9.             "profile": "High",
  10.             "codec_type": "video",
  11.             "codec_time_base": "1/50",
  12.             "codec_tag_string": "avc1",
  13.             "codec_tag": "0x31637661",
  14.             "width": 320,
  15.             "height": 240,
  16.             "has_b_frames": 2,
  17.             "sample_aspect_ratio": "1:1",
  18.             "display_aspect_ratio": "4:3",
  19.             "pix_fmt": "yuvj420p",
  20.             "level": 13,
  21.             "is_avc": "1",
  22.             "nal_length_size": "4",
  23.             "r_frame_rate": "25/1",
  24.             "avg_frame_rate": "25/1",
  25.             "time_base": "1/12800",
  26.             "start_pts": 0,
  27.             "start_time": "0.000000",
  28.             "duration_ts": 384000,
  29.             "duration": "30.000000",
  30.             "bit_rate": "1440556",
  31.             "nb_frames": "750",
  32.             "disposition": {
  33.                 "default": 0,
  34.                 "dub": 0,
  35.                 "original": 0,
  36.                 "comment": 0,
  37.                 "lyrics": 0,
  38.                 "karaoke": 0,
  39.                 "forced": 0,
  40.                 "hearing_impaired": 0,
  41.                 "visual_impaired": 0,
  42.                 "clean_effects": 0,
  43.                 "attached_pic": 0
  44.             },
  45.             "tags": {
  46.                 "language": "und",
  47.                 "handler_name": "VideoHandler"
  48.             }
  49.         },
  50.         {
  51.             "index": 1,
  52.             "codec_name": "aac",
  53.             "codec_long_name": "AAC (Advanced Audio Coding)",
  54.             "codec_type": "audio",
  55.             "codec_time_base": "1/44100",
  56.             "codec_tag_string": "mp4a",
  57.             "codec_tag": "0x6134706d",
  58.             "sample_fmt": "fltp",
  59.             "sample_rate": "44100",
  60.             "channels": 1,
  61.             "bits_per_sample": 0,
  62.             "r_frame_rate": "0/0",
  63.             "avg_frame_rate": "0/0",
  64.             "time_base": "1/44100",
  65.             "start_pts": -1024,
  66.             "start_time": "-0.023220",
  67.             "duration_ts": 1233920,
  68.             "duration": "27.980045",
  69.             "bit_rate": "2072",
  70.             "nb_frames": "1205",
  71.             "disposition": {
  72.                 "default": 0,
  73.                 "dub": 0,
  74.                 "original": 0,
  75.                 "comment": 0,
  76.                 "lyrics": 0,
  77.                 "karaoke": 0,
  78.                 "forced": 0,
  79.                 "hearing_impaired": 0,
  80.                 "visual_impaired": 0,
  81.                 "clean_effects": 0,
  82.                 "attached_pic": 0
  83.             },
  84.             "tags": {
  85.                 "language": "und",
  86.                 "handler_name": "SoundHandler"
  87.             }
  88.         }
  89.     ],
  90.     "format": {
  91.         "filename": "life.mp4",
  92.         "nb_streams": 2,
  93.         "format_name": "mov,mp4,m4a,3gp,3g2,mj2",
  94.         "format_long_name": "QuickTime / MOV",
  95.         "start_time": "-0.023220",
  96.         "duration": "30.000000",
  97.         "size": "5434741",
  98.         "bit_rate": "1449264",
  99.         "tags": {
  100.             "major_brand": "isom",
  101.             "minor_version": "512",
  102.             "compatible_brands": "isomiso2avc1mp41",
  103.             "encoder": "Lavf54.59.106"
  104.         }
  105.     }
  106. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement