Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.17 KB | None | 0 0
  1. $ /home/pi/special/ffmpeg/ffmpeg -loglevel debug \
  2. > -thread_queue_size 1024 \
  3. > -f video4linux2 -i /dev/video0 -framerate 20 -s 1280x720 -c:v h264_omx \
  4. > -c:a mp3 \
  5. > -thread_queue_size 1024 \
  6. > -i /tmp/temp_audio.mp3 \
  7. > -c:a copy \
  8. > -max_interleave_delta 500000 \
  9. > -report \
  10. > -f flv rtmp://209.85.230.23/live2/KEY
  11. ffmpeg started on 2017-03-24 at 23:51:54
  12. Report written to "ffmpeg-20170324-235154.log"
  13. ffmpeg version git-2017-02-05-e57fd92 Copyright (c) 2000-2017 the FFmpeg developers
  14. built with gcc 4.9.2 (Raspbian 4.9.2-10)
  15. configuration: --extra-cflags=-I/opt/vc/include/IL --enable-nonfree --enable-omx-rpi --logfile=CONFIG.TXT
  16. libavutil 55. 46.100 / 55. 46.100
  17. libavcodec 57. 75.100 / 57. 75.100
  18. libavformat 57. 66.101 / 57. 66.101
  19. libavdevice 57. 2.100 / 57. 2.100
  20. libavfilter 6. 73.100 / 6. 73.100
  21. libswscale 4. 3.101 / 4. 3.101
  22. libswresample 2. 4.100 / 2. 4.100
  23. Splitting the commandline.
  24. Reading option '-loglevel' ... matched as option 'loglevel' (set logging level) with argument 'debug'.
  25. Reading option '-thread_queue_size' ... matched as option 'thread_queue_size' (set the maximum number of queued packets from the demuxer) with argument '1024'.
  26. Reading option '-f' ... matched as option 'f' (force format) with argument 'video4linux2'.
  27. Reading option '-i' ... matched as input url with argument '/dev/video0'.
  28. Reading option '-framerate' ... matched as AVOption 'framerate' with argument '20'.
  29. Reading option '-s' ... matched as option 's' (set frame size (WxH or abbreviation)) with argument '1280x720'.
  30. Reading option '-c:v' ... matched as option 'c' (codec name) with argument 'h264_omx'.
  31. Reading option '-c:a' ... matched as option 'c' (codec name) with argument 'mp3'.
  32. Reading option '-thread_queue_size' ... matched as option 'thread_queue_size' (set the maximum number of queued packets from the demuxer) with argument '1024'.
  33. Reading option '-i' ... matched as input url with argument '/tmp/temp_audio.mp3'.
  34. Reading option '-c:a' ... matched as option 'c' (codec name) with argument 'copy'.
  35. Reading option '-max_interleave_delta' ... matched as AVOption 'max_interleave_delta' with argument '500000'.
  36. Reading option '-report' ... matched as option 'report' (generate a report) with argument '1'.
  37. Reading option '-f' ... matched as option 'f' (force format) with argument 'flv'.
  38. Reading option 'rtmp://209.85.230.23/live2/z6ur-1bme-jcpc-20xa' ... matched as output url.
  39. Finished splitting the commandline.
  40. Parsing a group of options: global .
  41. Applying option loglevel (set logging level) with argument debug.
  42. Applying option report (generate a report) with argument 1.
  43. Successfully parsed a group of options.
  44. Parsing a group of options: input url /dev/video0.
  45. Applying option thread_queue_size (set the maximum number of queued packets from the demuxer) with argument 1024.
  46. Applying option f (force format) with argument video4linux2.
  47. Successfully parsed a group of options.
  48. Opening an input file: /dev/video0.
  49. [video4linux2,v4l2 @ 0x34cd7c0] fd:4 capabilities:5000001
  50. [video4linux2,v4l2 @ 0x34cd7c0] Current input_channel: 0, input_name: default, input_std: 0
  51. [video4linux2,v4l2 @ 0x34cd7c0] Querying the device for the current frame size
  52. [video4linux2,v4l2 @ 0x34cd7c0] Setting frame size to 1920x1080
  53. [video4linux2,v4l2 @ 0x34cd7c0] Dequeued v4l2 buffer contains 3133440 bytes, but 3110400 were expected. Flags: 0x00000004.
  54. Input #0, video4linux2,v4l2, from '/dev/video0':
  55. Duration: N/A, bitrate: 746496 kb/s
  56. Stream #0:0, 0, 1/1000000: Video: rawvideo, 1 reference frame (I420 / 0x30323449), yuv420p, 1920x1080 (0x0), 0/1, 746496 kb/s, 30 fps, 30 tbr, 1000k tbn, 1000k tbc
  57. Successfully opened the file.
  58. Parsing a group of options: input url /tmp/temp_audio.mp3.
  59. Applying option s (set frame size (WxH or abbreviation)) with argument 1280x720.
  60. Applying option c:v (codec name) with argument h264_omx.
  61. Applying option c:a (codec name) with argument mp3.
  62. Applying option thread_queue_size (set the maximum number of queued packets from the demuxer) with argument 1024.
  63. Successfully parsed a group of options.
  64. Opening an input file: /tmp/temp_audio.mp3.
  65. Unknown decoder 'h264_omx'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement