
Recherche avancée
Autres articles (90)
-
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" (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (10963)
-
FFMPEG Color Filter Command For Video
23 août 2017, par Patel HirenI am new to android application development.
Please let me know which command is used for apply color filter on the video.
Is there any FFMPEG command for change the video color by passing hexadecimal color code.
I have try a lot but not get success.
Please help any one know.
Thanks.
-
Using ffmpeg to ensure all files have AC3 and AAC available ?
10 février 2016, par JamieBI currently use the following command to convert files to MP4 with AC3 :
ffmpeg.exe -fix_sub_duration -i `"$oldfile`" -vcodec libx264 -map 0:0 -vb 1095k -c:a:0 ac3 -map 0:1 -ac:a:0 6 -b:a:0 1536k -metadata:s:a:0 language=eng -f mp4 -threads auto -y `"$newFile`"
I’d like to run a batch file across my entire library which would make sure each file has AAC and AC3 available. Is this possible ?
-
Combine frames with offset in ffmpeg [duplicate]
7 octobre 2019, par Nathan VanceThis question already has an answer here :
With ffmpeg, it is simple to combine still images into a video with a fixed framerate. For example :
ffmpeg -framerate $FRAMERATE -i images/%d.png -c:v libx264 -pix_fmt yuv420p out.mp4
However, in my case the frames are not at all at a fixed rate, but rather I record the millisecond offset since the start of image acquisition in the filename. For example :
$ ls images/
0.png 208.png 396.png 761.png 959.png 2131.png 2335.pngIs it possible to use ffmpeg to combine these frames in this way, and how ?