Changes between Initial Version and Version 1 of Ticket #1970, comment 2
- Timestamp:
- 11/27/2012 11:11:37 AM (7 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1970, comment 2
initial v1 2 2 3 3 *** TEST1 - ffmpeg with map arguments and writing to file 4 4 {{{ 5 5 # ffmpeg -i http://10.2.3.14:9050/233.239.0.66 -map 0:2 -map 0:0 -c copy /tmp/tofile.ts 6 6 ffmpeg version N-46531-g7693543 Copyright (c) 2000-2012 the FFmpeg developers … … 34 34 frame= 212 fps= 58 q=-1.0 Lsize= 4071kB time=00:00:08.88 bitrate=3754.8kbits/s 35 35 video:3558kB audio:200kB subtitle:0 global headers:0kB muxing overhead 8.323952% 36 36 }}} 37 37 Notice '''Stream #0:2 -> #0:0 (copy)''' 0:2 -> 0:0 Thats OK. 38 38 39 39 *** TEST2 - ffmpeg with map arguments and feeding to ffserver 40 40 {{{ 41 41 #ffmpeg -i http://10.2.3.14:9050/233.239.0.66 -map 0:2 -map 0:0 http://127.0.0.1:1200/stream.ffm 42 42 ffmpeg version N-46531-g7693543 Copyright (c) 2000-2012 the FFmpeg developers … … 76 76 Stream #0:0 -> #0:1 (mpeg2video -> libx264) 77 77 Press [q] to stop, [?] for help 78 78 }}} 79 79 Notice '''Stream #0:1 -> #0:0 (mp2 -> libmp3lame)''' audio stream picked first, despite of -map 0:2! Thats not OK. 80 80 … … 82 82 83 83 *** FFSERVER config 84 84 {{{ 85 85 Port 1200 86 86 ####################################### … … 118 118 StartSendOnKey 119 119 </Stream> 120 }}}


