OliverStrait

Results 19 comments of OliverStrait

I read some source code of pydub and find this: ```python try: import audioop except ImportError: import pyaudioop as audioop ``` It seems like, inside of `pydub` there is substitution...

Yeah, it is totally broken. If you resolve the import issue, then the code is just filled with type errors and mentioned function really was not there. Never tested hasty...

If dependency to external ffmpeg executable is dropped, this will be broken in that regard too. PyAv does not share it's ffmpeg through envPATH.

> The cases where pydub would call ffmpeg via the executable should be taken care of by manual transcoding on our end. Did you find some situation where pyav actually...

``` shell * graph1 before: * Family:[Undirected graph on 3 vertices and 2 edges, Dot, Dot, Dot, Line, Line] * sub: [Dot, Dot, Dot, Line, Line] * graph2 * Family:...

Your example images seems to be using normal `Line` because lines are white and not shaded (for 2D line z-stacking is possile by using `Line(a, b, z_index= -3)`) . Cairo...

@agryman I don't know what actual technical details are why this is happening, but it is Manim code problem because you can interface with Cairo only by ordering what is...

Imported Scenes are purely blocked by this line: https://github.com/ManimCommunity/manim/blob/3d029c1280fc8832503d01c6d729a6563e84c841/manim/utils/module_ops.py#L82 This line has been there from the creationof this functionality. I cannot figure out if there actually is some good reasons...

I figure it out, this limitation is put into place because all subtypes of `Scene` still are in same import space. So those will appear alongside with user Scenes.