Patrizio Bekerle
Patrizio Bekerle
I ran into the same problem with `CODEC_ID_MPEG2TS`. Is there any solution on the horizon?
I fixed this bug now, was able to build ffmpeg-php and created a pull request: https://github.com/tony2001/ffmpeg-php/pull/17 Since it might be possible this request will never get accepted (like all other...
The pull request got already accepted! ;)
I still run into https://github.com/tony2001/ffmpeg-php/issues/16 :smile: How far did you get?
I had to find a fix for a above bug first, but now the module loads! @tony2001, shall we close this issue?
I've got that too. :)
I added `#define av_frame_alloc avcodec_alloc_frame` to `php_ffmpeg.h`, that did the trick. It would be better to do a ``` c #if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(55,28,1) #define av_frame_alloc avcodec_alloc_frame #endif ``` but...
now in https://github.com/tony2001/ffmpeg-php/pull/18
@tony2001, any ideas?
Okey dokey! 😁