plugorgau / bbb-render

Scripts to convert a BigBlueButton recording into a single video file
MIT License
64 stars 26 forks source link

HTTP Error 404: Not Found #24

Open pyvany opened 2 years ago

pyvany commented 2 years ago

hi everyone! I'm dealing with this problem.. what am I possibly doing wrong? 1 2

with the second script, I also get this other error. 3 Thanks in advance!!

bansan85 commented 2 years ago

About the 404 error, I have the same problem.

It may happen when the deskshare video is not a video but just images from presentation.

I was able to generate the missing video with following steps:

file 'presentation/xx-yy/slide-1.png' duration 746.4 file 'presentation/xx-yy/slide-2.png' duration 204.9 ... To get duration, substract out - in

Finally run:

ffmpeg -f concat -i .\data.txt -vf fps=2 -c:v libx264 -preset veryslow -crf 22 -aq-mode 3 -pix_fmt yuv420p out.mkv

If you increase fps too much, ffmpeg may take huge amount of memory (20 Go) in my case.

I manually did it with regex and excel (for substract) but it could be done in a small py script I think.