jaseg / python-mpv

Python interface to the awesome mpv media player
https://git.jaseg.de/python-mpv.git
Other
531 stars 67 forks source link

Smooth video switching #242

Closed renat2985 closed 1 year ago

renat2985 commented 1 year ago

How to make smooth video switching? For example, fade out and in when you switch a video file. Is it possible?

jaseg commented 1 year ago

You can to do that using an lavfi-complex. Have a look at this issue and this StackOverflow post. The relevant python-mpv options are "lavfi_complex" and "external_files", both directly mapped from mpv, for how they work check out the mpv man page here. Both options can be passed to python-mpv's loadfile method.

jaseg commented 1 year ago

Feel free to open another issue if you have further questions.