Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #600

Merged
merged 1 commit into from
Nov 21, 2024
Merged

Fix #600

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion auto_editor/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

import auto_editor
from auto_editor.edit import edit_media
from auto_editor.ffwrapper import FFmpeg
from auto_editor.utils.func import get_stdout
from auto_editor.utils.log import Log
from auto_editor.utils.types import (
Expand Down Expand Up @@ -262,6 +261,7 @@ def get_domain(url: str) -> str:
else:
output_format = args.output_format

cmd = []
if download_format is not None:
cmd.extend(["-f", download_format])

Expand Down
2 changes: 0 additions & 2 deletions auto_editor/ffwrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
from dataclasses import dataclass
from fractions import Fraction
from pathlib import Path
from shutil import which
from subprocess import PIPE, Popen

import av

Expand Down