[go: nahoru, domu]

Skip to content

Commit

Permalink
Allow running palet without av
Browse files Browse the repository at this point in the history
  • Loading branch information
WyattBlue committed Nov 1, 2023
1 parent a59dd4f commit 88d348a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions auto_editor/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
import sys

import auto_editor
from auto_editor.edit import edit_media
from auto_editor.ffwrapper import FFmpeg
from auto_editor.utils.func import setup_tempdir
from auto_editor.utils.log import Log
from auto_editor.utils.types import (
Expand Down Expand Up @@ -316,6 +314,9 @@ def main() -> None:
print(f"{auto_editor.version} ({auto_editor.__version__})")
sys.exit()

from auto_editor.edit import edit_media
from auto_editor.ffwrapper import FFmpeg

log = Log(args.debug, args.quiet)
ffmpeg = FFmpeg(
args.ffmpeg_location,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def pip_version():
install_requires=[
"numpy>=1.22.0",
"pillow==10.1.0",
"pyav==11.4.0",
"pyav==11.4.1",
"ae-ffmpeg==1.1.*",
],
python_requires=">=3.10",
Expand Down

0 comments on commit 88d348a

Please sign in to comment.