Missing content
Created by: Aekyios
Hello, I have a project that uses the ffmpeg module and I'm working on it on my laptop and a desktop PC, on the laptop everything works but on the desktop PC it doesn't work so while looking for the problems I realized that some modules that are necessary are not installed and that the init.py program is empty while on my laptop it is supposed to contain the code below. Could you help me because I don't understand and I have other friends who I wanted to test who have the same problem. Thanks you
Translated with www.DeepL.com/Translator (free version)
"from future import unicode_literals from . import nodes from . import _ffmpeg from . import _filters from . import _probe from . import _run from . import _view from .nodes import * from ._ffmpeg import * from ._filters import * from ._probe import * from ._run import * from ._view import *
all = (
nodes.all
+ _ffmpeg.all
+ _probe.all
+ _run.all
+ _view.all
+ _filters.all
)"