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

Add initial support for the OpenH264 H.264 software codec #8529

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

Conan-Kudo
Copy link
Contributor

@Conan-Kudo Conan-Kudo commented Mar 25, 2023

Description

This allows users to leverage the OpenH264 codec from Cisco to encode H.264 video content. It is significantly reduced in capability from alternatives, but it does the job.

This also provides a framework for adding support for other H.264 software codecs provided through FFmpeg.

Motivation and Context

A number of distributions use OpenH264 distributed by Cisco to provide a fully licensed H.264 implementation (in particular, both Fedora Linux and openSUSE Linux do). However, OBS Studio cannot currently use it.

This change allows OBS Studio to use OpenH264 through FFmpeg if it's available.

How Has This Been Tested?

  • Tested recording a screencast using OpenH264 + AAC with both Simple and Advanced settings modes
  • Tested streaming a screencast using OpenH264 + AAC with both Simple and Advanced settings modes

This was tested on Fedora Linux 38 for x86_64 with ffmpeg 6.0.

Types of changes

  • New feature (non-breaking change which adds functionality)

Checklist:

  • My code has been run through clang-format.
  • I have read the contributing document.
  • My code is not on the master branch.
  • The code has been tested.
  • All commit messages are properly formatted and commits squashed where appropriate.
  • I have included updates to all appropriate documentation.

@WizardCM WizardCM added the New Feature New feature or plugin label Mar 25, 2023
@RytoEX
Copy link
Member

RytoEX commented Mar 25, 2023

Does this require #8015?

@Conan-Kudo
Copy link
Contributor Author

Does this require #8015?

Not yet. This is only the wiring for the ffmpeg plugin, which I think means it only shows up in the "advanced view" right now? I literally just banged this out and am taking a bit of a break before continuing to iterate on it. I've got local builds going so I can test the functionality...

@Conan-Kudo Conan-Kudo force-pushed the obs-ffmpeg-h264 branch 7 times, most recently from 3182c09 to 64c44cd Compare March 26, 2023 03:40
@Conan-Kudo
Copy link
Contributor Author

Conan-Kudo commented Mar 26, 2023

@RytoEX That said, having #8015 land first would make it tremendously easier for the UI wiring I need to do...

@Conan-Kudo Conan-Kudo force-pushed the obs-ffmpeg-h264 branch 4 times, most recently from 7afe715 to cc43f38 Compare March 26, 2023 12:42
@Conan-Kudo Conan-Kudo changed the title obs-ffmpeg: Add initial support for the OpenH264 H.264 software codec Add initial support for the OpenH264 H.264 software codec Mar 26, 2023
@Conan-Kudo
Copy link
Contributor Author

I've pulled in #8015 into this pull request to simplify things for me and to show the full context of this change.

@Conan-Kudo Conan-Kudo force-pushed the obs-ffmpeg-h264 branch 9 times, most recently from 6164cb4 to de4b18d Compare March 26, 2023 19:40
@Conan-Kudo Conan-Kudo marked this pull request as ready for review March 26, 2023 20:08
@Conan-Kudo
Copy link
Contributor Author

I've now tested that this works, thanks to @Gawdl3y's help! 🎉

@Lain-B
Copy link
Collaborator

Lain-B commented Aug 17, 2023

Hey @Conan-Kudo, remind me to come back to this after we make our v30 release branch. Sorry about the delay

@PatTheMav
Copy link
Member

PatTheMav commented Sep 25, 2023

I agree with @tytan652 that the PR has its selection logic backwards: It installs OpenH264 as a fallback for x264, but x264 is a core module and the former is a very distro-specific option.

As such the PR needs to add OpenH264 as an optional codec and check for its availability and still fall back to x264 as the default.

@Conan-Kudo
Copy link
Contributor Author

As such the PR needs to add OpenH264 as an optional codec and check for its availability and still fall back to x264 as the default.

I added it this way because OBS crashes the other way because there will not be x264 in the first place in Fedora's build unless you install the plugin from RPM Fusion.

@Conan-Kudo
Copy link
Contributor Author

And ffmpeg is a "core module" too. Both are always present in upstream OBS builds, it depends on detection logic and whether ffmpeg is compiled with OpenH264 support.

@PatTheMav
Copy link
Member

x264 is the built-in fallback and the app is structured around that.

The better way to solve this would be for Fedora to patch obs-x264 to use OpenH264 so that the program is no wiser.

(Also I’m unsure as to whether that should be implemented in obs-x264 itself with a specific check for Fedora, because I’m not happy about distro-specific workarounds while we have to maintain support for 3 operating systems already.)

Afaik we officially support Ubuntu and Flatpak and any distro-specific changes need to be made by distributors while packaging the app.

@Conan-Kudo
Copy link
Contributor Author

obs-x264 is libx264 specific, an equivalent for OpenH264 would be to write a whole new plugin for libopenh264. I used ffmpeg because it already has an interface for this, we prefer OpenH264 to be accessed through ffmpeg anyway, and it would relatively straightforward to wire in, based on how AV1 was done.

@PatTheMav
Copy link
Member

Again, that will not work because you are creating a fallback for a fallback, you are not even checking if ffmpeg supports the encoder at runtime before making that decision and with that you also make macOS and Windows fall back to OpenH264 if x264 is not found.

It creates additional code complexity and maintenance burden for an edge case on a single distribution and IMO that’s not a good deal.

@Conan-Kudo
Copy link
Contributor Author

Conan-Kudo commented Sep 25, 2023

It creates additional code complexity and maintenance burden for an edge case on a single distribution and IMO that’s not a good deal.

It's not just a single distribution. At this point in time, it benefits four distributions:

  • CentOS/RHEL
  • Fedora Linux
  • openSUSE Tumbleweed
  • openSUSE Leap/SLE

This is also supported by the FFmpeg library included in the Freedesktop runtime for Flatpak too.

@PatTheMav
Copy link
Member

We can add generic support for OpenH264 if it is available (as in "checked if available via FFmpeg" because we do not ship FFmpeg with OpenH264 support on Windows and macOS as we do not support that codec at all), and that availability will probably be limited to Linux only and depends on the distribution-specific variant of FFmpeg available. If that check is positive, it can be added to the list of available encoders.

But distribution-specific fixes need to be implemented/patched by distributors. Adding a global (as in: affecting all platforms) fallback on OpenH264 if the actual fallback x264 (which is commonly shipped by OBS Studio itself or expected to be available on the platform) is not a solution IMO.

Upstream distributors can then handle the added complexity of adding an OpenH264 fallback if it is available at all and abort the OBS Studio launch if it cannot be found.

Also AV1 is not a "baseline/fallback" encoder, so the comparison with its implementation is not applicable.

@derrod
Copy link
Member

derrod commented Dec 10, 2023

It would probably be sensible to split the encoder addition and the UI changes into separate PRs so we can move things along. The former is probably fine (with some minor code review nits).

@Conan-Kudo
Copy link
Contributor Author

I've split out the first half of this pull request as #10135, per @derrod's request.

The code here assumes that the only software encoder is the x264-based
H.264 encoder. That may not always remain true. This change adjusts
the encoder string to indicate that it's an H.264 encoder from x264.
This allows users to leverage the OpenH264 codec from Cisco to encode
H.264 video content. It is significantly reduced in capability from
alternatives, but it does the job.

This also provides a framework for adding support for other H.264
software codecs provided through FFmpeg.
OpenH264 exists as the codec of last resort, so it is implemented
such that it is only used as the software codec if x264 is not
available.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
New Feature New feature or plugin
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

7 participants