happycube / ld-decode

Software defined LaserDisc decoder
GNU General Public License v3.0
294 stars 76 forks source link

Avoid using bare except #871

Closed oyvindln closed 7 months ago

oyvindln commented 7 months ago

Avoid using bare except clauses, this is kinda bad practice and ends up catching keyboard interrupts which may or may not be what's causing ctrl-c to not always work as excpected.

Also adds in an optional import of static_ffmpeg that's used when packaging for pypi and such, it's a module that auto-downloads ffmpeg but it won't do anything if the module isn't available.