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 com.obsproject.Studio.Plugin.StreamFX #3159

Draft
wants to merge 1 commit into
base: new-pr
Choose a base branch
from
Draft
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: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.flatpak-builder
build-dir
17 changes: 17 additions & 0 deletions com.obsproject.Studio.Plugin.StreamFX.metainfo.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="addon">
<id>com.obsproject.Studio.Plugin.StreamFX</id>
<extends>com.obsproject.Studio</extends>
<name>StreamFX</name>
<summary>Additional sources, filters, transitions and encoders for OBS Studio</summary>
<description>
<p>StreamFX is a plugin to libOBS (OBS Studio, StreamElements OBS Live) that adds new sources, filters and transitions to give you the ability to drastically improve your stream and recording setup past what was possible in OBS Studio until now. Whether it is blurring out a region, moving something in 3D, or just writing your own shaders as a new transition, source or filter - StreamFX has it all.</p>
</description>
<url type="homepage">https://streamfx.xaymar.com/</url>
<url type="bugtracker">https://github.com/Xaymar/obs-StreamFX/issues</url>
<url type="contact">https://s.xaymar.com/streamfx-dc</url>
<url type="donation">https://github.com/Xaymar/obs-StreamFX/wiki#support-streamfx-on-github-sponsors-or-patreon</url>
<url type="translate">https://crowdin.com/project/obs-stream-effects</url>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-2.0</project_license>
</component>
33 changes: 33 additions & 0 deletions com.obsproject.Studio.Plugin.StreamFX.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
id: com.obsproject.Studio.Plugin.StreamFX
branch: stable
runtime: com.obsproject.Studio
runtime-version: stable
sdk: org.kde.Sdk//6.4
build-extension: true
separate-locales: false
appstream-compose: false
build-options:
prefix: /app/plugins/StreamFX

modules:
- name: streamfx
buildsystem: cmake-ninja
config-opts:
- -DSTRUCTURE_PACKAGEMANAGER=true
- -DENABLE_UPDATER=false
post-install:
- install -Dm644 --target-directory=${FLATPAK_DEST}/share/metainfo ${FLATPAK_ID}.metainfo.xml
- appstream-compose --basename=${FLATPAK_ID} --prefix=${FLATPAK_DEST} --origin=flatpak ${FLATPAK_ID}
sources:
- type: git
url: https://github.com/Xaymar/obs-StreamFX.git
tag: 0.12.0a173
commit: fcb441bdf6e5c70d5eb5ebf6795f2ddd43f70a23
disable-shallow-clone: true
x-checker-data:
type: json
url: https://api.github.com/repos/Xaymar/obs-StreamFX/releases/latest
tag-query: .tag_name
timestamp-query: .published_at
- type: file
path: com.obsproject.Studio.Plugin.StreamFX.metainfo.xml
4 changes: 4 additions & 0 deletions flathub.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"skip-icons-check": true,
"only-arches": ["x86_64"]
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Technically, StreamFX supports arm64 if the dependencies are all built for arm64 as well.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

but is there a flatpak of OBS on aarch64? I don't think.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is not, judging from the beta.flathub.org page. Maybe upstream could look into building for aarch64 as well?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

aarch64 builds are planned, but there are challenges that prevented it from happening, and it shouldn't block plugins from being accepted into Flathub. Whenever aarch64 builds are published to Flathub by the OBS community, plugin authors will be notified

}