Chris Griffith
Chris Griffith
You are correct, it is not able to detect these as those file types do not have [file magic numbers](https://en.wikipedia.org/wiki/Magic_number_(programming)#Magic_numbers_in_files) for file detection and require additional analytics for a best...
Took me a bit to figure out how to do this, so putting here to hopefully make it easier. This was added in https://github.com/FFmpeg/FFmpeg/commit/f8ad2ddd7a51df5d6e768ba2a6f65ee64b94e29b#diff-3adfff78d6c720bbaa2e75bd85524380 and has the basic instructions as...
This script currently doesn't support `zip` files, so would require some additions / testing to the `download` function, such as: ``` make_dir "$DOWNLOAD_PATH/$TARGETDIR" if [[ $DOWNLOAD_FILE == *.zip ]]; then...
@barrbrain Thanks for the quick info, `color_primaries` and `color_trc` work as expected! `colorspace` is giving an error of `Undefined constant or missing '(' in 'bt2020'` with whatever I try, unsure...
Tried a custom build of FFmpeg with latest 0.5-beta and still seems to not be incorporated. At least doesn't take the arguments the same way the command line does. (Not...
Oh whoops, looking back at @jamrial comment, would need to be defined https://github.com/xiph/rav1e/blob/master/src/capi.rs#L609 and is not there yet.
Would add as PR but has some things not sure how they want to address. First `libtools` must be installed (aka `sudo apt install libtools`) and then after this was...
@rokibhasansagar https://github.com/markus-perl/ffmpeg-build-script/pull/106 was just merged and adds zimg support. Had to do what your second solution was, using `libtoolize` as well.
Hi @Pljushevij this should be fixed with https://github.com/markus-perl/ffmpeg-build-script/pull/106 I was having the same issue and discovered it was due to libpng being built and setting the `CPPFLAGS` to what it...
I was able to get past this for now by not setting the `group_id` for the consumer created in `ensure_consumer_started`.