267 questions
0
votes
1
answer
85
views
Facebook Graph API return OIL Error for some videos
We are using the Facebook Graph API to publish Reels on Instagram business accounts. When uploading videos either via file_url or through chunked uploads, certain videos consistently return an OIL ...
2
votes
1
answer
110
views
How to fix av_interleaved_write_frame() broken pipe error in php
I have an issue using ffmpeg to stream audio and parse to google cloud speech to text in PHP.
It returns this output.
I have tried delaying some part of the script, that did not solve it.
I have also ...
1
vote
0
answers
67
views
php ffmpeg cannot save video to system temporary folder
I am trying to covert a video to h.264 format. I can save the new video to a normal directory but saving the new video to a Windows temp file fails. However I can manage to save a snapshot image from ...
0
votes
1
answer
209
views
How do I make this Laravel Video watermark overlay function properly?
I have installed FFmpeg, and everything works and converts as I want it. However, when I tried with the watermark filter using the `ProtoneMediaLaravelFFMpegFiltersWatermarkFactory', it rendered ...
0
votes
1
answer
121
views
PHP FFmpeg drawtext command not working from exec
I have a problem that a struggle for days.
I have a laravel 9 backend and I'm using ffmpeg to edit videos.
I'm running diferite commands that are working perfectly from exec command.
The weird part is ...
1
vote
1
answer
341
views
Laravel php-ffmpeg Encoding failed
In laravel using php-ffmpeg want to convert video and do some changes on it, like watermark, change size and etc... I ran a test:
$format = new X264;
$ffmpeg = FFMpeg::create();
$video = $...
0
votes
1
answer
706
views
FFMpeg PHP: Unable to load FFProbe
I am using the Lumen PHP framework which is the form of Laravel. On the server side I have Bitnami.
I get the 500 error when the code that uses FFMpeg is being executed. My part of the code which ...
-1
votes
1
answer
2k
views
how to concatenate different audio files in different format into one mp3 file in ffpmeg or php? [closed]
I am allowing users to upload audio files with file extensions mp3, wav, flac. With the following command, I can concatenate audio files if it is in mp3 only.
ffmpeg -i "concat:sample1.mp3|...
1
vote
0
answers
146
views
Why am I getting a Fatal Error when using PHP FFMPEG to merge two videos of different qualities?
PHP FFMPEG not working when combining videos of 2 different qualities in respect of quality, length.
I am trying to merge 2 videos having different links and save the merged video link in a folder ...
1
vote
1
answer
1k
views
Convert large video files with php-ffmpeg
I have a very strange problem.
I need to convert video files by file resolution, for example, if the video file resolution is '1920x1080' then it must convert to 1080, 720, and 480 resolutions.
The ...
0
votes
2
answers
406
views
Call to undefined method FFMpeg\Media\Video::addWatermark()
I m trying to add a watermark to a video that I have but it's giving me this error while applying a watermark
The library is installed and working with the code commented but not when trying to add ...
0
votes
0
answers
135
views
Apostrophe issue with FFmpeg
I'm working on a company's project which is vue.js.
There are also code parts in php.
It uses FFmpeg to create a video from multiple videos.
On each video, there is a text type subtitle.
Each text is ...
0
votes
0
answers
168
views
FFmpeg concat videos from array with fade effect
I am trying to concatenate videos into one using PHP and FFMpeg.
The URL of each video are in the array $files_aux[].
$video = $ffmpeg->open($files_aux[0]);
$video->filters()->synchronize();
...
3
votes
1
answer
2k
views
How to draw text on a rectangle with rounded corners using ffmpeg?
I'm trying to draw text on a rectangle with rounded corners using ffmpeg, but my current command is not working.
Here's what I've tried:
ffmpeg -y -i ./video-ready-all.mp4 -filter_complex "...
1
vote
0
answers
185
views
FFMPEG conversion (h.264) taking long time for short videos
I am trying to record the video and upload into the aws s3 server. Vuejs as front end and php Laravel as backend, I was not using any conversion before saving it to s3. Due to this if any recording ...