I need to add a logo into a videostream that is outputting to an mp4 file.
I can get the logo to display locally on my screen but I just can't get it to actually burn the logo onto the video file thats being output. Here is the code I am using via a batch script.
Can someone advise if its possible to do this (via command line ideally).
Code: Select all
set SOURCE="http://192.168.0.1:1025/videostream.asf?user=birdop&pwd=batfink&resolution=8&rate=0"
set DESTINATION='C:\\Users\\Administrator\\Desktop\FTP\video.mp4'
"C:\Program Files\VideoLAN\VLC\vlc.exe" %SOURCE% --sout="#transcode{vcodec=h264,vb=0,scale=0,acodec=mp4a,ab=128,channels=2,samplerate=44100,soverlay,sfilter=marq}:duplicate{dst=file{dst=%DESTINATION%},dst=display}" --run-time 300 --stop-time=300 vlc://quit