Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
FFMPEG Deprecated Flag: remove deprecated flag that cause bugs or cra…
Browse files Browse the repository at this point in the history
…shes
  • Loading branch information
BenSouchet committed Sep 11, 2024
1 parent d9731d0 commit 36875f6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion openpype/lib/transcoding.py
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,7 @@ def _ffmpeg_h264_codec_args(stream_data, source_ffmpeg_cmd):
if pix_fmt:
output.extend(["-pix_fmt", pix_fmt])

output.extend(["-intra", "-g", "1"])
output.extend(["-g", "1"])
return output


Expand Down
3 changes: 1 addition & 2 deletions openpype/settings/defaults/project_settings/global.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,7 @@
],
"output": [
"-pix_fmt yuv420p",
"-crf 18",
"-intra"
"-crf 18"
]
},
"filter": {
Expand Down
3 changes: 1 addition & 2 deletions server_addon/core/server/settings/publish_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -931,8 +931,7 @@ class PublishPuginsModel(BaseSettingsModel):
],
"output": [
"-pix_fmt yuv420p",
"-crf 18",
"-intra"
"-crf 18"
]
},
"filter": {
Expand Down
3 changes: 1 addition & 2 deletions website/docs/pype2/admin_presets_plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,7 @@ This is just usage example, without relevant data. Do **NOT** use these presets
],
"output": [
"-pix_fmt yuv420p",
"-crf 18",
"-intra"
"-crf 18"
]
},
"tags": ["burnin", "preview"]
Expand Down

0 comments on commit 36875f6

Please sign in to comment.