Advertisement
Guest User

Untitled

a guest
Jan 11th, 2018
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.63 KB | None | 0 0
  1. $ ffprobe /tmp/real_after.mp4
  2. ffprobe version N-89775-gef21033 Copyright (c) 2007-2018 the FFmpeg developers
  3. built with gcc 4.8.5 (GCC) 20150623 (Red Hat 4.8.5-11)
  4. configuration: --prefix=/root/ffmpeg_build --pkg-config-flags=--static --extra-cflags=-I/root/ffmpeg_build/include --extra-ldflags=-L/root/ffmpeg_build/lib --extra-libs=-lpthread --extra-libs=-lm --bindir=/root/bin --enable-gpl --enable-libfdk_aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-nonfree --disable-shared --enable-static
  5. libavutil 56. 7.100 / 56. 7.100
  6. libavcodec 58. 9.100 / 58. 9.100
  7. libavformat 58. 3.100 / 58. 3.100
  8. libavdevice 58. 0.100 / 58. 0.100
  9. libavfilter 7. 11.101 / 7. 11.101
  10. libswscale 5. 0.101 / 5. 0.101
  11. libswresample 3. 0.101 / 3. 0.101
  12. libpostproc 55. 0.100 / 55. 0.100
  13. Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/tmp/real_after.mp4':
  14. Metadata:
  15. major_brand : isom
  16. minor_version : 512
  17. compatible_brands: isomiso2avc1mp41
  18. encoder : Lavf58.3.100
  19. Duration: 00:00:51.13, start: 0.000000, bitrate: 275 kb/s
  20. Stream #0:0(und): Video: h264 (Constrained Baseline) (avc1 / 0x31637661), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], 46472 kb/s, 25 fps, 25 tbr, 12800 tbn, 50 tbc (default)
  21. Metadata:
  22. handler_name : VideoHandler
  23. Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 237 kb/s (default)
  24. Metadata:
  25. handler_name : SoundHandler
  26.  
  27.  
  28. $ ffprobe -count_frames -show_streams /tmp/real_after.mp4
  29. [STREAM]
  30. index=0
  31. codec_name=h264
  32. codec_long_name=H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
  33. profile=Constrained Baseline
  34. codec_type=video
  35. codec_time_base=1/50
  36. codec_tag_string=avc1
  37. codec_tag=0x31637661
  38. width=1280
  39. height=720
  40. coded_width=1280
  41. coded_height=720
  42. has_b_frames=0
  43. sample_aspect_ratio=1:1
  44. display_aspect_ratio=16:9
  45. pix_fmt=yuv420p
  46. level=31
  47. color_range=unknown
  48. color_space=unknown
  49. color_transfer=unknown
  50. color_primaries=unknown
  51. chroma_location=left
  52. field_order=unknown
  53. timecode=N/A
  54. refs=1
  55. is_avc=true
  56. nal_length_size=4
  57. id=N/A
  58. r_frame_rate=25/1
  59. avg_frame_rate=25/1
  60. time_base=1/12800
  61. start_pts=0
  62. start_time=0.000000
  63. duration_ts=512
  64. duration=0.040000
  65. bit_rate=46472000
  66. max_bit_rate=N/A
  67. bits_per_raw_sample=8
  68. nb_frames=1
  69. nb_read_frames=1
  70. nb_read_packets=N/A
  71. DISPOSITION:default=1
  72. DISPOSITION:dub=0
  73. DISPOSITION:original=0
  74. DISPOSITION:comment=0
  75. DISPOSITION:lyrics=0
  76. DISPOSITION:karaoke=0
  77. DISPOSITION:forced=0
  78. DISPOSITION:hearing_impaired=0
  79. DISPOSITION:visual_impaired=0
  80. DISPOSITION:clean_effects=0
  81. DISPOSITION:attached_pic=0
  82. DISPOSITION:timed_thumbnails=0
  83. TAG:language=und
  84. TAG:handler_name=VideoHandler
  85. [/STREAM]
  86. [STREAM]
  87. index=1
  88. codec_name=aac
  89. codec_long_name=AAC (Advanced Audio Coding)
  90. profile=LC
  91. codec_type=audio
  92. codec_time_base=1/44100
  93. codec_tag_string=mp4a
  94. codec_tag=0x6134706d
  95. sample_fmt=fltp
  96. sample_rate=44100
  97. channels=2
  98. channel_layout=stereo
  99. bits_per_sample=0
  100. id=N/A
  101. r_frame_rate=0/0
  102. avg_frame_rate=0/0
  103. time_base=1/44100
  104. start_pts=0
  105. start_time=0.000000
  106. duration_ts=2253819
  107. duration=51.107007
  108. bit_rate=237198
  109. max_bit_rate=256000
  110. bits_per_raw_sample=N/A
  111. nb_frames=2202
  112. nb_read_frames=2201
  113. nb_read_packets=N/A
  114. DISPOSITION:default=1
  115. DISPOSITION:dub=0
  116. DISPOSITION:original=0
  117. DISPOSITION:comment=0
  118. DISPOSITION:lyrics=0
  119. DISPOSITION:karaoke=0
  120. DISPOSITION:forced=0
  121. DISPOSITION:hearing_impaired=0
  122. DISPOSITION:visual_impaired=0
  123. DISPOSITION:clean_effects=0
  124. DISPOSITION:attached_pic=0
  125. DISPOSITION:timed_thumbnails=0
  126. TAG:language=und
  127. TAG:handler_name=SoundHandler
  128. [/STREAM]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement