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

[QUAD] FFMPEG Deprecated Flag: remove deprecated flag that cause bugs or crashes #6306

Closed
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 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
Loading