Nasıl bir exec işlevi komuta hatası biliyorsunuz?

0 Cevap php

Ben php exec fonksiyonu ile bir video kesmek için bir ffmpeg komutunu kullanıyorum. Ama bu bir video dosyası oluşturma değildir ve herhangi bir hata görünmüyor. Aşağıda olarak exec el

exec("ffmpeg -i input.flv -ss 00:00:30.0 -t 00:00:10.0 -acodec copy -vcodec copy -async 1 output.flv");

Ben hata burada neler olduğunu bilmek için herhangi bir yardım alabilir miyim?

exec("ffmpeg -i input.flv -ss 00:00:30.0 -t 00:00:10.0 -acodec copy -vcodec copy -async 1 output.flv",$output);

Ben de denedim. Ama değişken $output herhangi bir hata mesajı almadım

0 Cevap