
Recherche avancée
Autres articles (29)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)
Sur d’autres sites (9214)
-
What are the alternatives of PHP-ffmpeg and LaravelFFMpeg repo
24 juin 2019, par SirsemyI use Laravel and PHP. I’d convert video during streaming, and I’d like to put watermark to the video.
I spent days to try to set up the pascalbaljetmedia/laravel-ffmpeg repo from GitHub and try to use PHP-ffmpeg but I couldn’t.Are there any alternative for the same usage ?
I use
- Laravel 5.8
- PHP 7.1
- Windows 10
- Wamp server
Thanks for the help in advance.
Edit
We’ve used this code for call an external ffmpeg but that also haven’t worked.
$ffmpeg = "c:\\ffmpeg\bin\\ffmpeg.exe";
$cmd = $ffmpeg . " -i " . $videoPath . " -i " . $watermark . " -filter_complex 'overlay' " . $saveLocation;
exec($cmd, $output);Created the video but didn’t use the filter what the repo mention.
-
The appearance of silence time at the end when the -r is too small
14 juin 2023, par KazbekuriI have one mp3 and one picture I want to make mp4 and put this picture in the background, so that the rendering is very fast, because it is just a picture and do not want to put a lot of fps (weak pc), but there is a problem which is the appearance of silence time after the audio information. If I put more -r then everything is solved, but I need an alternative way to make it work fast and without typing different parameters like -t.


My command :
ffmpeg -loop 1 -r 1 -i peg.jpeg -i ex.mp3 -c:a aac -b:a 320K -strict -2 -shortest -fflags +shortest -max_interleave_delta 100M video.mp4


I tried "-max_muxing_queue_size 9999" but that didn't work for me. I also tried -fflags+shortest -max_interleave_delta 100M. This helped me a little, but not enough.


-
How to use python-ffmpeg to stream to platforms like youtube, twtich ? [closed]
16 mars 2023, par wraientI have been using ffmpeg from terminal to stream to twitch for a project. But I have to move it to python I found this python-ffmpeg module but could not find any good documentation. How do I convert this terminal ffmpeg command into python-ffmpeg command ?


"ffmpeg -re -i ./anime/aots8e1.mkv -c:v libx264 -preset veryfast -b:v 6000k -maxrate 6000k -bufsize 6000k -pix_fmt yuv420p -g 50 -c:a aac -b:a 160k -ac 2 -ar 44100 -f flv rtmp://live-ber.twitch.tv/app/"+streamkey



If there are other better alternative to use ffmpeg and python together, please recommend.