Advertisement
TachyonVortex

ffprobe no 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 old.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": "Constrained Baseline",
  10.             "codec_type": "video",
  11.             "codec_time_base": "1/50",
  12.             "codec_tag_string": "avc1",
  13.             "codec_tag": "0x31637661",
  14.             "width": 432,
  15.             "height": 320,
  16.             "has_b_frames": 0,
  17.             "sample_aspect_ratio": "1:1",
  18.             "display_aspect_ratio": "27:20",
  19.             "pix_fmt": "yuv420p",
  20.             "level": 30,
  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/25",
  26.             "start_pts": 0,
  27.             "start_time": "0.000000",
  28.             "duration_ts": 43147,
  29.             "duration": "1725.880000",
  30.             "bit_rate": "300516",
  31.             "nb_frames": "43147",
  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.                 "creation_time": "1970-01-01 00:00:00",
  47.                 "language": "und",
  48.                 "handler_name": "\fVideoHandler"
  49.             }
  50.         },
  51.         {
  52.             "index": 1,
  53.             "codec_name": "aac",
  54.             "codec_long_name": "AAC (Advanced Audio Coding)",
  55.             "codec_type": "audio",
  56.             "codec_time_base": "1/48000",
  57.             "codec_tag_string": "mp4a",
  58.             "codec_tag": "0x6134706d",
  59.             "sample_fmt": "fltp",
  60.             "sample_rate": "48000",
  61.             "channels": 2,
  62.             "bits_per_sample": 0,
  63.             "r_frame_rate": "0/0",
  64.             "avg_frame_rate": "0/0",
  65.             "time_base": "1/48000",
  66.             "start_pts": 0,
  67.             "start_time": "0.000000",
  68.             "duration_ts": 82835456,
  69.             "duration": "1725.738667",
  70.             "bit_rate": "127963",
  71.             "nb_frames": "80894",
  72.             "disposition": {
  73.                 "default": 0,
  74.                 "dub": 0,
  75.                 "original": 0,
  76.                 "comment": 0,
  77.                 "lyrics": 0,
  78.                 "karaoke": 0,
  79.                 "forced": 0,
  80.                 "hearing_impaired": 0,
  81.                 "visual_impaired": 0,
  82.                 "clean_effects": 0,
  83.                 "attached_pic": 0
  84.             },
  85.             "tags": {
  86.                 "creation_time": "1970-01-01 00:00:00",
  87.                 "language": "und",
  88.                 "handler_name": "\fSoundHandler"
  89.             }
  90.         }
  91.     ],
  92.     "format": {
  93.         "filename": "old.mp4",
  94.         "nb_streams": 2,
  95.         "format_name": "mov,mp4,m4a,3gp,3g2,mj2",
  96.         "format_long_name": "QuickTime / MOV",
  97.         "start_time": "0.000000",
  98.         "duration": "1725.880000",
  99.         "size": "93433088",
  100.         "bit_rate": "433091",
  101.         "tags": {
  102.             "major_brand": "isom",
  103.             "minor_version": "512",
  104.             "compatible_brands": "mp41",
  105.             "creation_time": "1970-01-01 00:00:00",
  106.             "encoder": "VisualHub 1.29",
  107.             "artist": "Test artist",
  108.             "album": "Test album",
  109.             "track": "2/3",
  110.             "show": "Test show",
  111.             "episode_id": "Test episode",
  112.             "episode_sort": "2",
  113.             "season_number": "1"
  114.         }
  115.     }
  116. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement