François Trahay

Results 16 comments of François Trahay

For now, the script captures a 1080x720 video which is then cropped (to remove the firefox window that plays the video). You can try changing the resolution of the captured...

I notice that the output file is '2020.10.27.mp4\n' which seems to make ffmpeg unhappy. Did you insert so weird line break in `test.txt` ?

The problem does come from the `-i` option. With this option, the input file is read line by line and two variables are set: `url` and `output_file`. In your case,...

Thanks for sending me your input file. It does contain `\r\n` at the end of each line, and `read` does not remove the `\r`, which causes the problem. Commit #4056837...

Actually, with commit #4056837 `capture-full-replay.sh` now supports input files that contain `\r`, so you don't need to change your file to unix format.

Another solution would be to add a blank mask over this part of the video with ffmpeg. It should be quite easy according to : https://superuser.com/questions/1221633/ffmpeg-setting-a-rectangle-in-a-video-to-black

This looks like a problem with the options passed to ffmpeg for transcoding the video, and it is discussed in issue from the elgalu/docker-selenium project: https://github.com/elgalu/docker-selenium/issues/147 I don't know much...

It looks like one dependency is missing. Did you run `npm install` (that should install `selenium-webdriver`) ?

Thanks for the log file. It shows a few weird errors that may be the cause of the problem, but I don't have enough information to debug :( I've just...

Hi, It should be possible to create mp4 files with chapters that correspond to the slides, but that quite complex (and I won't have the time to implement that). If...