Topic: Using SVPFlow + AviSynth/Vapoursynth for accepting stdin pipe input?
Hi, I'm trying to make AviSynth/Vapoursynth to accept video pipe input, something like:
ffmpeg -i - <stuff> -f mpegts - | VSPipe.exe "script.py" - | vlc -
Then using SVPFlow plugin to process the live stream then pipe output to program (such as ffmpeg, vlc or even ffplay).
Since youtube-dl did not support some sources streamlink have and streamlink did not even work with SVP (SVP Index shows N/A) so I have to make SVP to accept video pipe output from streamlink:
cmd /c 'streamlink https://twitch.tv/xqcow best -o - | vlc -'
Since I don't really want to launch VLC and instead using SVP directly but I'm not sure if SVP have command-line version or AviSynth/Vapoursynth accept video pipe input at all. Most of the example (especially examples come from doom9.org) are using AviSynth/Vapoursynth for local video files (which is not what I wanted).
Any idea so far?