
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (74)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (15485)
-
How can I use php-FFMpeg in laravel 5.1 to convert uploaded GIF image to video format automatically ?
18 février 2017, par Lastbusy.comI have installed
php-ffmpeg
in my localhost Laravel setup, but I need help on how to use ffmpeg with Laravel 5.1.I need this to convert gif image into .mp4 video format automatically.
When site visitors/users upload GIF image, it should be converted into .mp4 format.
(Example : Gif uploaded in 9gag.com)Please also suggest if there is any alternative solution to the requirement.
-
Add audios according to their timestamps with ffmpeg
27 novembre 2020, par user14706760I tried this :


ffmpeg -i first.mka -i second.mka -i third.mka -i fourth.mka
 -filter_complex
 "[1]adelay=184000|184000[b];
 [2]adelay=360000|360000[c];
 [3]adelay=962000|962000[d];
 [0][b][c][d]amix=4"
merged.mka



But it turned out that
amix
scales each input's volume by1/n
wheren
= no. of active inputs. A normalization workaround is unacceptable in my case because I have hundreds of inputs. Is the any alternative way to add audio files according to their timestamps ?

-
Add two MP3 files to an MP4 file using ffmpeg
26 septembre 2019, par sigur7I am using ffmpeg on Windows and getting the following error as I try to add two MP3
Stream specifier '' in filtergraph description [1]adelay=1|1[b];[2]adelay=100|100[c];[0][b][c]amix=3 matches no streams.
using the following command
ffmpeg -i vidwithnoaudio.mp4 -i audio0.mp3 -i audio1.mp3 -filter_complex "[1]adelay=1|1[b];[2]adelay=100|100[c];[0][b][c]amix=3" vidwithaudio.mp4
Here is an alternative command I have found I am trying to edit into working with this :
ffmpeg -i 1.mp4 -i 1.3gp -i 2.3gp -i 1.mp3
-filter_complex "[2]adelay=10000|10000[s2];[3:a][1:a][s2]amix=3[a]"
-map 0:v -map "[a]" -c:v copy result.mp4