Advertisement
Guest User

Untitled

a guest
Sep 10th, 2015
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. -------------------------------------------- Original --------------------------------------------
  2. ffprobe project-fi.webm ~/Projects/video-playground/src/images
  3. ffprobe version 2.6.2 Copyright (c) 2007-2015 the FFmpeg developers
  4. built with Apple LLVM version 6.1.0 (clang-602.0.49) (based on LLVM 3.6.0svn)
  5. configuration: --prefix=/usr/local/Cellar/ffmpeg/2.6.2 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-libx264 --enable-libmp3lame --enable-libvo-aacenc --enable-libxvid --enable-libvorbis --enable-libvpx --enable-vda
  6. libavutil 54. 20.100 / 54. 20.100
  7. libavcodec 56. 26.100 / 56. 26.100
  8. libavformat 56. 25.101 / 56. 25.101
  9. libavdevice 56. 4.100 / 56. 4.100
  10. libavfilter 5. 11.102 / 5. 11.102
  11. libavresample 2. 1. 0 / 2. 1. 0
  12. libswscale 3. 1.101 / 3. 1.101
  13. libswresample 1. 1.100 / 1. 1.100
  14. libpostproc 53. 3.100 / 53. 3.100
  15. Input #0, matroska,webm, from 'project-fi.webm':
  16. Metadata:
  17. encoder : Google
  18. Duration: 00:01:00.61, start: 0.000000, bitrate: 222 kb/s
  19. Stream #0:0: Video: vp8, yuv420p, 640x360, SAR 1:1 DAR 16:9, 24 fps, 24 tbr, 1k tbn, 1k tbc (default)
  20. Stream #0:1: Audio: vorbis, 44100 Hz, stereo, fltp (default)
  21.  
  22.  
  23. -------------------------------------------- convert Command --------------------------------------------
  24. $ffmpeg -i project-fi.webm -vf scale=320:-1 small/project-fi.webm
  25.  
  26.  
  27. -------------------------------------------- after --------------------------------------------
  28. ffprobe small/project-fi.webm ~/Projects/video-playground/src/images
  29. ffprobe version 2.6.2 Copyright (c) 2007-2015 the FFmpeg developers
  30. built with Apple LLVM version 6.1.0 (clang-602.0.49) (based on LLVM 3.6.0svn)
  31. configuration: --prefix=/usr/local/Cellar/ffmpeg/2.6.2 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-libx264 --enable-libmp3lame --enable-libvo-aacenc --enable-libxvid --enable-libvorbis --enable-libvpx --enable-vda
  32. libavutil 54. 20.100 / 54. 20.100
  33. libavcodec 56. 26.100 / 56. 26.100
  34. libavformat 56. 25.101 / 56. 25.101
  35. libavdevice 56. 4.100 / 56. 4.100
  36. libavfilter 5. 11.102 / 5. 11.102
  37. libavresample 2. 1. 0 / 2. 1. 0
  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, matroska,webm, from 'small/project-fi.webm':
  42. Metadata:
  43. encoder : Lavf56.25.101
  44. Duration: 00:01:00.61, start: 0.000000, bitrate: 214 kb/s
  45. Stream #0:0: Video: vp8, yuv420p, 320x180, SAR 1:1 DAR 16:9, 24 fps, 24 tbr, 1k tbn, 1k tbc (default)
  46. Stream #0:1: Audio: vorbis, 44100 Hz, stereo, fltp (default)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement