So it appears the the previous MP4 URL is no longer in service. I found another sample URL, except this one isn't live audio, however, I still think it will help us with what I want to do.
I tried this in the CLI, but still doesn't work:
Code: Select all
vlc "http://www.ultimatestreamingtraining.com/videos/UltimateStreamingTraining.mp4" :sout='#transcode{acodec=mp3,channels=1}:duplicate{dst=std{access=http,mux=mpeg1,url=source:user@localhost:8000/test.mp3}}' -q --intf dummy
I also tried this a moment ago, and it worked at first just with video, no audio, but now no longer!
Code: Select all
vlc -vvv http://www.ultimatestreamingtraining.com/videos/UltimateStreamingTraining.mp4 --sout '#standard{access=http,mux=ogg,dst=192.168.X.X:9000}'
Output:
[00000299] mp4 demuxer debug: unrecognized major file specification (mp42).
[00000299] mp4 demuxer debug: find 4 tracks
[00000299] mp4 demuxer warning: elst box found
[00000299] mp4 demuxer debug: - [0] duration=55155ms media time=0ms) rate=1.0
[00000299] mp4 demuxer debug: track[Id 0x1] read 221 chunk
[00000299] mp4 demuxer debug: track[Id 0x1] read 1188 samples length:55s
[00000284] main input debug: selecting program id=0
[00000299] mp4 demuxer debug: adding track[Id 0x1] audio (enable) language eng
[00000299] mp4 demuxer warning: elst box found
[00000299] mp4 demuxer debug: - [0] duration=55155ms media time=0ms) rate=1.0
[00000299] mp4 demuxer debug: track[Id 0x2] read 221 chunk
[00000299] mp4 demuxer debug: track[Id 0x2] read 1655 samples length:55s
[00000299] mp4 demuxer debug: adding track[Id 0x2] video (enable) language eng
[00000299] mp4 demuxer debug: ignoring track[Id 0x3]
[00000299] mp4 demuxer debug: ignoring track[Id 0x4]
[00000299] main demuxer debug: using demux2 module "mp4"
[00000299] mp4 demuxer warning: DEMUX_GET_FPS unimplemented !!
[00000301] main packetizer debug: looking for packetizer module: 16 candidates
[00000301] packetizer_mpeg4audio packetizer debug: running MPEG4 audio packetizer
[00000301] packetizer_mpeg4audio packetizer debug: AAC 22050Hz 1024 samples/frame
[00000301] main packetizer debug: using packetizer module "packetizer_mpeg4audio"
[00000284] main input debug: stream out mode -> no decoder thread
[00000321] main packetizer debug: looking for packetizer module: 16 candidates
[00000321] packetizer_mpeg4video packetizer debug: opening with vol size: 32
[00000321] main packetizer debug: using packetizer module "packetizer_mpeg4video"
[00000284] main input debug: stream out mode -> no decoder thread
[00000284] main input debug: starting in sync mode
If you take the URL and put it into VLC Player GUI (mine is for Windows), it works w/ no trouble. So I'm trying to take just the audio portion of this short video and stream it to mp3 in Linux.
-vvv doesn't seem to help and the process doesn't die, it just sits there until I hit CTL+C.
Any ideas? Please help!