Advertisement
Guest User

Untitled

a guest
May 14th, 2015
8
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.53 KB | None | 0 0
  1. $ ./ffprobe nature/goose.mp4
  2. ffprobe version 2.5.4-   http://johnvansickle.com/ffmpeg/    Copyright (c) 2007-2015 the FFmpeg developers
  3.   built on Feb 17 2015 03:40:54 with gcc 4.9.2 (Debian 4.9.2-10)
  4.   configuration: --enable-gpl --enable-version3 --disable-shared --disable-debug --enable-runtime-cpudetect --enable-libmp3lame --enable-libx264 --enable-libx265 --enable-libwebp --enable-libspeex --enable-libvorbis --enable-libvpx --enable-libfreetype --enable-fontconfig --enable-libxvid --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-gray --enable-libopenjpeg --enable-libopus --enable-libass --enable-gnutls --enable-libvidstab --cc=gcc-4.9
  5.   libavutil      54. 15.100 / 54. 15.100
  6.   libavcodec     56. 13.100 / 56. 13.100
  7.   libavformat    56. 15.102 / 56. 15.102
  8.   libavdevice    56.  3.100 / 56.  3.100
  9.   libavfilter     5.  2.103 /  5.  2.103
  10.   libswscale      3.  1.101 /  3.  1.101
  11.   libswresample   1.  1.100 /  1.  1.100
  12.   libpostproc    53.  3.100 / 53.  3.100
  13. Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'nature/goose.mp4':
  14.   Metadata:
  15.     major_brand     : mp42
  16.     minor_version   : 0
  17.     compatible_brands: isommp42
  18.     creation_time   : 2014-01-15 02:28:49
  19.   Duration: 00:01:10.57, start: 0.000000, bitrate: 3194 kb/s
  20.     Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1280x720, 2999 kb/s, 25 fps, 25 tbr, 50 tbn, 50 tbc (default)
  21.     Metadata:
  22.       handler_name    : VideoHandler
  23.     Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 191 kb/s (default)
  24.     Metadata:
  25.       creation_time   : 2014-01-15 02:28:49
  26.       handler_name    : IsoMedia File Produced by Google, 5-11-2011
  27.  
  28.  
  29. $ ./ffprobe nature/waterfall.mp4
  30. ffprobe version 2.5.4-   http://johnvansickle.com/ffmpeg/    Copyright (c) 2007-2015 the FFmpeg developers
  31.   built on Feb 17 2015 03:40:54 with gcc 4.9.2 (Debian 4.9.2-10)
  32.   configuration: --enable-gpl --enable-version3 --disable-shared --disable-debug --enable-runtime-cpudetect --enable-libmp3lame --enable-libx264 --enable-libx265 --enable-libwebp --enable-libspeex --enable-libvorbis --enable-libvpx --enable-libfreetype --enable-fontconfig --enable-libxvid --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-gray --enable-libopenjpeg --enable-libopus --enable-libass --enable-gnutls --enable-libvidstab --cc=gcc-4.9
  33.   libavutil      54. 15.100 / 54. 15.100
  34.   libavcodec     56. 13.100 / 56. 13.100
  35.   libavformat    56. 15.102 / 56. 15.102
  36.   libavdevice    56.  3.100 / 56.  3.100
  37.   libavfilter     5.  2.103 /  5.  2.103
  38.   libswscale      3.  1.101 /  3.  1.101
  39.   libswresample   1.  1.100 /  1.  1.100
  40.   libpostproc    53.  3.100 / 53.  3.100
  41. Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'nature/waterfall.mp4':
  42.   Metadata:
  43.     major_brand     : mp42
  44.     minor_version   : 0
  45.     compatible_brands: isommp42
  46.     creation_time   : 2011-11-20 23:13:22
  47.   Duration: 00:04:42.33, start: 0.000000, bitrate: 3167 kb/s
  48.     Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1280x720, 3012 kb/s, 25 fps, 25 tbr, 50 tbn, 50 tbc (default)
  49.     Metadata:
  50.       creation_time   : 1970-01-01 00:00:00
  51.       handler_name    : VideoHandler
  52.     Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 151 kb/s (default)
  53.     Metadata:
  54.       creation_time   : 2011-11-20 23:13:22
  55.       handler_name    : IsoMedia File Produced by Google, 5-11-2011
  56.  
  57. $ ./ffmpeg -f concat -i mylist.txt -c copy output.mp4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement