Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2016
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. lldb ./ffmpeg_g
  2. (lldb) target create "./ffmpeg_g"
  3. Current executable set to './ffmpeg_g' (x86_64).
  4. (lldb) r -i ~/VideoAnalysis/test.ts -an -f rtsp rtsp://127.0.0.1:1234
  5. Process 62388 launched: './ffmpeg_g' (x86_64)
  6. ffmpeg version N-81224-g5aede05 Copyright (c) 2000-2016 the FFmpeg developers
  7. built with Apple LLVM version 7.3.0 (clang-703.0.31)
  8. configuration: --enable-static --disable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --enable-opencl --enable-libx264 --enable-libmp3lame --enable-libxvid --enable-libfreetype --enable-ffplay --enable-libx265 --disable-lzma --enable-vda
  9. libavutil 55. 28.100 / 55. 28.100
  10. libavcodec 57. 51.100 / 57. 51.100
  11. libavformat 57. 44.100 / 57. 44.100
  12. libavdevice 57. 0.102 / 57. 0.102
  13. libavfilter 6. 49.100 / 6. 49.100
  14. libavresample 3. 0. 0 / 3. 0. 0
  15. libswscale 4. 1.100 / 4. 1.100
  16. libswresample 2. 1.100 / 2. 1.100
  17. libpostproc 54. 0.100 / 54. 0.100
  18. Input #0, mpegts, from '/Users/alan/VideoAnalysis/test.ts':
  19. Duration: 00:00:22.72, start: 0.000000, bitrate: 5831 kb/s
  20. Program 1
  21. Metadata:
  22. service_name : Service01
  23. service_provider: FFmpeg
  24. Stream #0:0[0x100]: Video: h264 (High) ([27][0][0][0] / 0x001B), yuv420p, 3168x1080, 59.94 fps, 59.94 tbr, 90k tbn, 119.88 tbc
  25. Stream #0:1[0x101]: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 128 kb/s
  26. [rtsp @ 0x104804200] Using AVStream.codec to pass codec parameters to muxers is deprecated, use AVStream.codecpar instead.
  27. Output #0, rtsp, to 'rtsp://127.0.0.1:1234':
  28. Metadata:
  29. encoder : Lavf57.44.100
  30. Stream #0:0: Video: mpeg4, yuv420p, 3168x1080, q=2-31, 200 kb/s, 59.94 fps, 90k tbn, 59.94 tbc
  31. Metadata:
  32. encoder : Lavc57.51.100 mpeg4
  33. Side data:
  34. cpb: bitrate max/min/avg: 0/0/200000 buffer size: 0 vbv_delay: -1
  35. Stream mapping:
  36. Stream #0:0 -> #0:0 (h264 (native) -> mpeg4 (native))
  37. Press [q] to stop, [?] for help
  38. Process 62388 stopped
  39. * thread #1: tid = 0x77018a, 0x000000010020f68e ffmpeg_g`do_packet_auto_bsf(s=0x0000000102808a00, pkt=0x00007fff5fbf89d0) + 30 at mux.c:824, queue = 'com.apple.main-thread', stop reason = EXC_BAD_ACCESS (code=1, address=0x1347238)
  40. frame #0: 0x000000010020f68e ffmpeg_g`do_packet_auto_bsf(s=0x0000000102808a00, pkt=0x00007fff5fbf89d0) + 30 at mux.c:824
  41. 821 AVStream *st = s->streams[pkt->stream_index];
  42. 822 int i, ret;
  43. 823
  44. -> 824 if (s->oformat->check_bitstream) {
  45. 825 if (!st->internal->bitstream_checked) {
  46. 826 if ((ret = s->oformat->check_bitstream(s, pkt)) < 0)
  47. 827 return ret;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement