Guest User

Untitled

a guest
Jun 18th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. $ ffprobe -v error -select_streams v:0 -show_entries stream -of default=noprint_wrappers=1 -print_format json movie.mp4
  2.  
  3. {
  4. "programs": [
  5.  
  6. ],
  7. "streams": [
  8. {
  9. "index": 0,
  10. "codec_name": "h264",
  11. "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10",
  12. "profile": "Main",
  13. "codec_type": "video",
  14. "codec_time_base": "126669/6400000",
  15. "codec_tag_string": "avc1",
  16. "codec_tag": "0x31637661",
  17. "width": 2592,
  18. "height": 1944,
  19. "coded_width": 2592,
  20. "coded_height": 1944,
  21. "has_b_frames": 0,
  22. "sample_aspect_ratio": "4:3",
  23. "display_aspect_ratio": "16:9",
  24. "pix_fmt": "yuvj420p",
  25. "level": 50,
  26. "color_range": "pc",
  27. "color_space": "bt709",
  28. "color_transfer": "bt709",
  29. "color_primaries": "bt709",
  30. "chroma_location": "left",
  31. "refs": 1,
  32. "is_avc": "true",
  33. "nal_length_size": "4",
  34. "r_frame_rate": "25/1",
  35. "avg_frame_rate": "3200000/126669",
  36. "time_base": "1/12800",
  37. "start_pts": 0,
  38. "start_time": "0.000000",
  39. "duration_ts": 126682,
  40. "duration": "9.897031",
  41. "bit_rate": "4638928",
  42. "bits_per_raw_sample": "8",
  43. "nb_frames": "250",
  44. "disposition": {
  45. "default": 1,
  46. "dub": 0,
  47. "original": 0,
  48. "comment": 0,
  49. "lyrics": 0,
  50. "karaoke": 0,
  51. "forced": 0,
  52. "hearing_impaired": 0,
  53. "visual_impaired": 0,
  54. "clean_effects": 0,
  55. "attached_pic": 0,
  56. "timed_thumbnails": 0
  57. },
  58. "tags": {
  59. "language": "und",
  60. "handler_name": "VideoHandler"
  61. }
  62. }
  63. ]
  64. }
  65.  
  66. "width": 2592,
  67. "height": 1944,
  68. "coded_width": 2592,
  69. "coded_height": 1944,
  70. "has_b_frames": 0,
  71. "sample_aspect_ratio": "4:3",
  72. "display_aspect_ratio": "16:9",
  73.  
  74. ffmpeg -y -hide_banner -nostats -loglevel error -i movie.mp4 -vf select='eq(n,10)+eq(n,20)+eq(n,30)+eq(n,40)',scale=-1:640 -vsync 0 /tmp/ffmpeg_image_%04d.jpg
Add Comment
Please, Sign In to add comment