Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. ffprobe -loglevel error -select_streams v -show_entries stream -of json filename.mp4
  2. Output:
  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": "Baseline",
  13. "codec_type": "video",
  14. "codec_time_base": "250/15007",
  15. "codec_tag_string": "avc1",
  16. "codec_tag": "0x31637661",
  17. "width": 640,
  18. "height": 352,
  19. "coded_width": 640,
  20. "coded_height": 352,
  21. "has_b_frames": 0,
  22. "pix_fmt": "yuv420p",
  23. "level": 30,
  24. "chroma_location": "left",
  25. "refs": 1,
  26. "is_avc": "true",
  27. "nal_length_size": "4",
  28. "r_frame_rate": "15007/500",
  29. "avg_frame_rate": "15007/500",
  30. "time_base": "1/30014",
  31. "start_pts": 0,
  32. "start_time": "0.000000",
  33. "duration_ts": 479000,
  34. "duration": "15.959219",
  35. "bit_rate": "1826913",
  36. "bits_per_raw_sample": "8",
  37. "nb_frames": "479",
  38. "disposition": {
  39. "default": 1,
  40. "dub": 0,
  41. "original": 0,
  42. "comment": 0,
  43. "lyrics": 0,
  44. "karaoke": 0,
  45. "forced": 0,
  46. "hearing_impaired": 0,
  47. "visual_impaired": 0,
  48. "clean_effects": 0,
  49. "attached_pic": 0,
  50. "timed_thumbnails": 0
  51. },
  52. "tags": {
  53. "rotate": "90",
  54. "language": "und"
  55. },
  56. "side_data_list": [
  57. {
  58. "side_data_type": "Display Matrix",
  59. "displaymatrix": "n00000000: 0 65536 0n00000001: -65536 0 0n00000002: 0 0 1073741824n",
  60. "rotation": -90
  61. }
  62. ]
  63. }
  64. ]
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement