
Recherche avancée
Autres articles (94)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (15621)
-
LARAVEL FFMpeg : Unable to save frame error
9 novembre 2020, par Adrijus JakučionisWhen I'm trying to save my thumbnail, I'm getting "Unable to save frame" error.


I'm using https://github.com/protonemedia/laravel-ffmpeg Laravel-ffmpeg package, AWS S3 server.


My code :


Route::get('/thumbnail', function() {
 $file = FFMpeg::fromDisk('s3')
 ->open('/videos/71239_1598846328_p.mp4')
 ->getFrameFromSeconds(10)
 ->export()
 ->toDisk('s3')
 ->save('/videos/thumb.png');
 return "ok";
});



Can someone tell me what I'm doing wrong ?


-
ffmpeg save remote file to user's computer
18 mai 2018, par hmaxxI can cut and save a video from a remote server to my server using the below command :
ffmpeg -ss 00:00:30 -i "example.com/test.mp4" -t 00:00:09 -acodec copy -vcodec copy -async 1 -y out.mp4
I was wondering if I could prompt the user for a permission to save it on his computer instead of downloading it to my server. I will be using php with the exec function.
-
RTMP Stream Save Video using FFMPEG
9 août 2019, par Abhishek SenguptaI am having trouble saving a live stream to disk using FFMPEG.
It is saving the file after running the command :
ffmpeg -i rtmp://000.00.0.0/hls/test1705269295 -c copy -f mp4 /var/www/html/1_1564654090862.mp4
But it is becoming corrupted, if we dont use CTRL+C to save it manually, while the stream is still live.
Is there any way so that ffmpeg will automatically save the files properly when the live stream ends by the streamer ?