L
L
lilseo2018-02-04 16:23:09
Video
lilseo, 2018-02-04 16:23:09

Program or macro to perform certain actions?

You need software to record a webinar that has already passed with a large number of webinars. Ie for example I have a list of links. That is, I have a list of links, the program opens the link, launches another software for recording for 3 hours, then stops and follows the next link from the list and starts recording.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
Saboteur, 2018-02-04
@lilseo

Yes, a regular script in any language, plus a screen recording, for example, through ffmpeg
, they opened a link, started recording for 3 hours, and killed the browser.
repeated in a cycle.
Something like

FOR /F %%url IN (file.txt) DO (
   ECHO Обработка URL: %%url
   start firefox.exe %%url
   ffmpeg .....
   Taskkill /IM firefox.exe /F
)

Run in minimized mode, or manually minimize the script window at startup.

E
Ezhyg, 2018-02-04
@Ezhyg

AutoIT
Why record, why not just download the video from the already prepared list of links?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question