Package Details: obs-streamfx-git 0.12.0b299.r0.g8b97c2b2-1

Git Clone URL: https://aur.archlinux.org/obs-streamfx-git.git (read-only, click to copy)
Package Base: obs-streamfx-git
Description: Bring your stream back to life with modern effects!
Upstream URL: https://github.com/Xaymar/obs-StreamFX
Keywords: obs obs-streamfx obs-studio streamfx
Licenses: GPL2
Conflicts: obs-streamfx
Provides: obs-streamfx
Submitter: ThePooN
Maintainer: ThePooN
Last Packager: ThePooN
Votes: 9
Popularity: 0.000706
First Submitted: 2020-04-16 17:44 (UTC)
Last Updated: 2023-07-08 20:56 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

TiagoSinH commented on 2023-03-15 22:55 (UTC)

sorry, im a newbie. how do I configure the cmake variables?

iq2luc commented on 2023-03-14 09:41 (UTC) (edited on 2023-03-14 09:41 (UTC) by iq2luc)

Hi adoa, compilation fails because in handler.cpp@12 and encoder-ffmpeg.cpp@1048 it tries to use a constant (AV_CODEC_CAP_INTRA_ONLY) which is not available anymore in ffmpeg 6, it is only available in 4. So there are two options: 1. configure the corresponding CMAKE variables to use ffmpeg4.4 instead of ffmpeg (e.g. FFMPEG_xxx_INCLUDE_DIR=/usr/include/ffmpeg4.4 and FFMPEG_xxx_LIBRARY=/usr/lib64/ffmpeg4.4/libxxx.so), or 2. apply the following patch:

diff --git a/source/encoders/encoder-ffmpeg.cpp b/source/encoders/encoder-ffmpeg.cpp
index 1bfbc32..38d4c30 100644
--- a/source/encoders/encoder-ffmpeg.cpp
+++ b/source/encoders/encoder-ffmpeg.cpp
@@ -1045,7 +1045,9 @@ void ffmpeg_factory::get_defaults2(obs_data_t* settings)
    if (_handler)
        _handler->get_defaults(settings, _avcodec, nullptr, _handler->is_hardware_encoder(this));

-   if ((_avcodec->capabilities & AV_CODEC_CAP_INTRA_ONLY) == 0) {
+   const AVCodecDescriptor *d = avcodec_descriptor_get(_avcodec->id);
+   if((d->type == AVMEDIA_TYPE_VIDEO || d->type == AVMEDIA_TYPE_AUDIO) &&
+       !(d->props & AV_CODEC_PROP_INTRA_ONLY)) {
        obs_data_set_default_int(settings, ST_KEY_KEYFRAMES_INTERVALTYPE, 0);
        obs_data_set_default_double(settings, ST_KEY_KEYFRAMES_INTERVAL_SECONDS, 2.0);
        obs_data_set_default_int(settings, ST_KEY_KEYFRAMES_INTERVAL_FRAMES, 300);
diff --git a/source/encoders/handlers/handler.cpp b/source/encoders/handlers/handler.cpp
index bb109da..01e6d4c 100644
--- a/source/encoders/handlers/handler.cpp
+++ b/source/encoders/handlers/handler.cpp
@@ -9,7 +9,12 @@ using namespace streamfx::encoder::ffmpeg;

 bool handler::handler::has_keyframe_support(ffmpeg_factory* instance)
 {
-   return (instance->get_avcodec()->capabilities & AV_CODEC_CAP_INTRA_ONLY) == 0;
+   const AVCodecDescriptor *d = avcodec_descriptor_get(instance->get_avcodec()->id);
+   if((d->type == AVMEDIA_TYPE_VIDEO || d->type == AVMEDIA_TYPE_AUDIO) &&
+       (d->props & AV_CODEC_PROP_INTRA_ONLY == 0)) {
+   return true;
+   }
+   return false;
 }

 bool handler::handler::is_hardware_encoder(ffmpeg_factory* instance)

adoa commented on 2023-03-13 13:33 (UTC) (edited on 2023-03-13 17:48 (UTC) by adoa)

after an ffmpeg update, I need to rebuild this package, but I keep getting a sudden ninja error after a bunch of (unrelated?) warnings:

/data/valneq/.cache/pikaur/build/obs-streamfx-git/src/obs-streamfx-git/source/util/util-threadpool.hpp:110:30: Warnung: Verwendung von »std::hardware_destructive_interference_size« [-Winterference-size]
  110 |                 alignas(std::hardware_destructive_interference_size)
      |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ninja: build stopped: subcommand failed.
==> FEHLER: Ein Fehler geschah in build().

[update:] I also tryied with yay, same error. So don't think it's a pikaur issue.

ThePooN commented on 2023-01-31 16:35 (UTC)

Updated branch name just now. The repos are pretty large so I have some local setup to not clone them/keep a separate copy for every build and did not notice the branch name discrepancy.

ixhbinphoenix commented on 2022-11-28 16:04 (UTC)

It seems like the master branch has been renamed, so the makepkg fails at cloning. The new master branch seems to be named root

fatal: invalid reference: origin/master

Axenide commented on 2022-10-04 08:27 (UTC)

It shows on my OBS (obs-studio-git) but there are no effects at all. I have the StreamFX option on the top and it shows the StreamFX window at the start, but there is nothing inside filters.

theriddick commented on 2022-09-03 06:55 (UTC)

For some reason I can't get H.265 to show (any). Only H.264 shows now. Confusing.

ThePooN commented on 2022-08-13 23:06 (UTC)

currently builds fine on my end 🤔

pete910 commented on 2022-08-01 20:59 (UTC) (edited on 2022-08-01 21:00 (UTC) by pete910)

Fails to build for me.

     /pkg-tmp/obs-streamfx-git/src/obs-streamfx-git/source/obs/obs-source-factory.hpp:941:53: warning: unused parameter ‘milliseconds’ [-Wunused-parameter]
     941 |                 virtual void media_set_time(int64_t milliseconds) {}
     |                                             ~~~~~~~~^~~~~~~~~~~~
     ninja: build stopped: subcommand failed.
     ==> ERROR: A failure occurred in build().
     Aborting...