bbb-render icon indicating copy to clipboard operation
bbb-render copied to clipboard

HTTP Error 404: Not Found

Open pyvany opened this issue 2 years ago • 1 comments

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!!

pyvany avatar Mar 29 '22 00:03 pyvany

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:

  • Open shapes.svg
  • You will have all slides.
  • Generate a file (data.txt in the same output directory than the one specified to download.py) that will have:

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.

bansan85 avatar May 01 '22 18:05 bansan85