WyattBlue

Results 36 comments of WyattBlue

Closing this because of its age and lack of interest

I support this feature, but a PR that hasn't been updated in 4 years isn't gonna cut it.

@NPN @FirefoxMetzger @jlaine I have merged these changes as-is [in my fork](https://github.com/WyattBlue/pyav).

> Nice! > > @WyattBlue Are you planning on forking PyAV and maintaining it, or is this more of a "one-off" thing? I definitely plan on maintaining it. I'm already...

I've fixed this in master now. The logging is now disabled by default (the callback is a no-op). ```python import av # No logs whatso ever (no GIL calls) av.logging.set_level(None)...

Here's a basic test ```python import av print('Starting test.') container = av.open('example.mp4') container.streams.video[0].thread_type = 'AUTO' # Have to decode at least one frame to trigger the bug. next(container.decode(video=0)) print('Test complete.')...

This commit doesn't work anymore and don't care about this enough to fix it myself, so I will be closing.

You can disable logs now in master. In fact, it's the default behaviour now. ```python import av # turn off logs av.logging.set_level(None) # turn on logs av.logging.set_level(av.logging.VERBOSE) ```

This PR is so basic, and nothing has happened for so long. I don't think it's worth keeping it open anymore.

Superseded by #1383