I am using the following
Code: Select all
/Applications/VLC.app/Contents/MacOS/VLC http://URL/udp/IP:1294 vlc://quit --intf=dummy --sout-transcode-audio-sync --sout='#transcode{vcodec=h264,venc=x264{aud,profile=baseline,level=30,keyint=30,bframes=0,ref=1,nocabac},acodec=mp3,ab=128,channels=2,deinterlace,audio-sync}:duplicate{dst=std{mux=ts,dst=-,access=livehttp{seglen=10,delsegs=true,numsegs=10,index=/Users/strm/Sites/streaming/mystream.m3u8,index-url=http://192.168.1.27/~strm/streaming/mystream-########.ts},mux=ts{use-key-frames},dst=/Users/strm/Sites/streaming/mystream-########.ts}}'
When I am using the following the mediastreamsegmenter in stead of httplive I am getting video and sound what am I doing wrong???
Code: Select all
"/Applications/VLC.app/Contents/MacOS/VLC $input --intf=dummy --sout-transcode-audio-sync --sout='#transcode{vcodec=h264,venc=x264{aud,profile=baseline,level=30,keyint=30,bframes=0,ref=1,nocabac},acodec=mp3,ab=128,channels=2,deinterlace,audio-sync}:duplicate{dst=std{access=file,mux=ts,dst=-}}' vlc://quit | mediastreamsegmenter -O -f $base_dir -t $target_duration -s $sliding_window -S $start_index -D";
Please advice