C0D3D3V / bbb-dl

Downlaod BigBlueButton recordings. A simple scrapper for Big Blue Button lessons. Download and merge the audio and video files of a BigBlueButton conference from the conference replay url.
MIT License
65 stars 16 forks source link

pause feature :) #36

Closed Qbreak closed 1 year ago

Qbreak commented 1 year ago

Is it possible to add a pause feature if it won't take your time? pleaseeeenn

C0D3D3V commented 1 year ago

I do not think this is a good idea, since this is the job of the Operation System / Shell.

On windows you can press [Pause Break] to pause a program in PowerShell and resume with [Enter].

On MacOs, Linux you can press [Ctr+Z] to suspend a program and resume by typing fg.

C0D3D3V commented 1 year ago

This should at least work in all cases, except when capturing frames with chrome, because playwright is starting a node.js server, which communication is broken if the client is suspended. I have nearly no control over this communication, the only thing I could add is a retry loop, in case of a failure.

Qbreak commented 1 year ago

Worked :D

I do not think this is a good idea, since this is the job of the Operation System / Shell.

On windows you can press [Pause Break] to pause a program in PowerShell and resume with [Enter].

On MacOs, Linux you can press [Ctr+Z] to suspend a program and resume by typing fg.