Advertisement
Guest User

ffprobe of the media files

a guest
Nov 15th, 2013
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.83 KB | None | 0 0
  1. $ ffprobe test.mp4
  2.     avprobe version 0.8.9-4:0.8.9-0ubuntu0.12.04.1, Copyright (c) 2007-2013 the Libav developers
  3.       built on Nov  9 2013 19:08:00 with gcc 4.6.3
  4.     Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'test.mp4':
  5.       Metadata:
  6.         major_brand     : mp42
  7.         minor_version   : 0
  8.         compatible_brands: isomavc1mp42
  9.         creation_time   : 2010-05-12 11:05:21
  10.       Duration: 00:02:55.68, start: 0.000000, bitrate: 569 kb/s
  11.         Stream #0.0(und): Audio: aac, 44100 Hz, stereo, s16, 94 kb/s
  12.         Metadata:
  13.           creation_time   : 2010-05-12 11:05:21
  14.         Stream #0.1(und): Video: h264 (Constrained Baseline), yuv420p, 480x360 [PAR 1:1 DAR 4:3], 472 kb/s, 29.97 fps, 29.97 tbr, 30k tbn, 59.94 tbc
  15.         Metadata:
  16.           creation_time   : 2010-05-12 11:05:21
  17.  
  18. $ ffprobe test.avi
  19.     avprobe version 0.8.9-4:0.8.9-0ubuntu0.12.04.1, Copyright (c) 2007-2013 the Libav developers
  20.       built on Nov  9 2013 19:08:00 with gcc 4.6.3
  21.     Input #0, avi, from 'test.avi':
  22.       Metadata:
  23.         encoder         : Lavf55.18.104
  24.       Duration: 00:02:55.67, start: 0.000000, bitrate: 852 kb/s
  25.         Stream #0.0: Video: msmpeg4v2, yuv420p, 480x360, PAR 1:1 DAR 4:3, 29.97 tbr, 29.97 tbn, 29.97 tbc
  26.         Stream #0.1: Audio: adpcm_ms, 44100 Hz, 2 channels, s16, 352 kb/s
  27.  
  28. $ ffprobe test.ogg
  29.     avprobe version 0.8.9-4:0.8.9-0ubuntu0.12.04.1, Copyright (c) 2007-2013 the Libav developers
  30.       built on Nov  9 2013 19:08:00 with gcc 4.6.3
  31.     Input #0, ogg, from 'test.ogg':
  32.       Duration: 00:02:55.72, start: 0.000000, bitrate: 380 kb/s
  33.         Stream #0.0: Audio: flac, 44100 Hz, 2 channels, s16
  34.         Metadata:
  35.           MAJOR_BRAND     : mp42
  36.           MINOR_VERSION   : 0
  37.           COMPATIBLE_BRANDS: isomavc1mp42
  38.           CREATION_TIME   : 2010-05-12 11:05:21
  39.           ENCODER         : Lavf53.21.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement