Skip to content

Commit

Permalink
Format with ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyballentine committed Jan 29, 2024
1 parent 50d7a45 commit efb9883
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,12 @@ def load_video_node(

ffmpeg_reader = (
ffmpeg.input(path)
.output("pipe:", format="rawvideo", pix_fmt="bgr24", sws_flags="lanczos+accurate_rnd+full_chroma_int+full_chroma_inp+bitexact")
.output(
"pipe:",
format="rawvideo",
pix_fmt="bgr24",
sws_flags="lanczos+accurate_rnd+full_chroma_int+full_chroma_inp+bitexact",
)
.run_async(pipe_stdout=True, cmd=ffmpeg_path)
)

Expand Down

0 comments on commit efb9883

Please sign in to comment.