I'm building an application that records live tv (dvbt: mpeg.ts-files) and immediately transcodes it with ffmpeg to a webm file. I'm able to do that at a constant rate; so ffmpeg doesnt catch up the growing file.
Now I want to playback this file on an html5 website. This works, but when ffmpeg isn't done transcoding (and my webm-file is still growing), i'm not able to seek it (and there is no progress bar).
Is it possible to seek a video file while it is beeing transcoded? Am i missing some ffmpeg-settings? Or is webm the problem?
This is what I have now:
ffmpeg -re "inputfile.ts" -y -f webm -vcodec libvpx -acodec libvorbis \
-aq 90 -ac 2 -b:v 1300k -threads 2 "outputfile.webm"
Thank you