Skip to content

Commit

Permalink
Copy data and attachments...
Browse files Browse the repository at this point in the history
Some anime files in particular like to include custom fonts and stuff
like that in these streams. I think it is useful to keep them as to
keep the generated file as close to the original as possible.
  • Loading branch information
arximboldi committed Jun 29, 2024
1 parent baa4aba commit 1e5859a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions video2x/encoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ def __init__(
output_height: int,
copy_audio: bool = True,
copy_subtitle: bool = True,
copy_data: bool = False,
copy_attachments: bool = False,
copy_data: bool = True,
copy_attachments: bool = True,
) -> None:
# create FFmpeg input for the original input video
original = ffmpeg.input(
Expand Down

0 comments on commit 1e5859a

Please sign in to comment.