Guest User

Untitled

a guest
Aug 20th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. Get ffmpeg information in friendly way
  2. {
  3. "Stream 0": {
  4. "type": "Video",
  5. "codec": "h264",
  6. "resolution": "720x480"
  7. },
  8. "Stream 1": {
  9. "type": "Audio",
  10. "bitrate": "128 kbps",
  11. "channels": 2
  12. }
  13. }
  14.  
  15. {
  16. "streams": [{
  17. "index": 0,
  18. "codec_name": "wmv3",
  19. "codec_long_name": "Windows Media Video 9",
  20. "codec_type": "video",
  21. "codec_time_base": "1/1000",
  22. "codec_tag_string": "WMV3",
  23. "codec_tag": "0x33564d57",
  24. "width": 320,
  25. "height": 240,
  26. "has_b_frames": 0,
  27. "pix_fmt": "yuv420p",
  28. "level": -99,
  29. "r_frame_rate": "30000/1001",
  30. "avg_frame_rate": "0/0",
  31. "time_base": "1/1000",
  32. "start_time": "0.000",
  33. "duration": "300.066",
  34. "tags": {
  35. "language": "eng"
  36. }
  37. }],
  38. "format": {
  39. "filename": "somefile.asf",
  40. "nb_streams": 1,
  41. "format_name": "asf",
  42. "format_long_name": "ASF format",
  43. "start_time": "0.000",
  44. "duration": "300.066",
  45. "tags": {
  46. "WMFSDKVersion": "10.00.00.3646",
  47. "WMFSDKNeeded": "0.0.0.0000",
  48. "IsVBR": "0"
  49. }
  50. }
  51. }
  52.  
  53. ffprobe ... -print_format json
Add Comment
Please, Sign In to add comment