
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (97)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (6455)
-
videos converted to gif with ffmpeg have a box pattern background
18 mars 2017, par vasisdasI recently started using ffmpeg to convert small videos I make into gifs. However, I’m noticing that all gifs I make have a pattern background of some kind. It’s not too noticeable of a difference between the video and the gif, but you can see it clearly in the difference between the video preview and the gif preview :
Gif in imgur album, along with a thumbnail of the gif and the video
The command I send to ffmpeg to convert :
ffmpeg -i "video path" -pix_fmt rgb24 "output file path"
I’ve tried it with and without the -pix_fmt rgb24. Any ideas what else it could be ?
-
ffmpeg : input rate and output rate not respected
2 novembre 2022, par GregoryI am using
ffmpeg
to overlay PNG and gifs while trying to preserve the same framerate and delay of the GIFs. The gif files all have the same number of frames (5) and a 13ms delay between each frame.

Attempt #1 :


ffmpeg 
 -r 5 -i ./Salmonbg.png 
 -r 5 -i ./Pinkfur.gif 
 -r 5 -i ./Cap.gif 
 -r 5 -i ./Glasses.gif 
 -r 5 -i Bone.gif 
 -filter_complex "[0:v][1:v]overlay=format=auto[v1];[v1][2:v]overlay=format=auto[v2];[v2][3:v]overlay=format=auto[v3];[v3][4:v]overlay=format=auto[v4];[v4]split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" 
 -r 1000/130 preview.gif



The command above will generate with the correct frame alignment from the png + gifs, however output frame delay incorrect :


Frame #1: 260 <- WRONG (Why???)
Frame #2: 130
Frame #3: 260 <- WRONG (Why???)
Frame #4: 130
Frame #5: 130



Attempt #2 :


ffmpeg 
 -i ./Salmonbg.png 
 -i ./Pinkfur.gif 
 -i ./Cap.gif 
 -i ./Glasses.gif 
 -i Bone.gif 
 -filter_complex "[0:v][1:v]overlay=format=auto[v1];[v1][2:v]overlay=format=auto[v2];[v2][3:v]overlay=format=auto[v3];[v3][4:v]overlay=format=auto[v4];[v4]split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" 
 -r 1000/130 preview.gif



The command above will output the correct frame delay, 13ms for all of them. However, the output gif will not use the first frame of each GIF. The second frame is used twice basically.


Any idea what I am missing ? I feel like i'm 90% there but i can't figure out what i'm doing incorrectly.


-
QuickTime plays separate audio tracks all at once with ffmpeg generated file
23 mai 2022, par Justin SmithLet's say I have four files :


- 

- video.mp4
- english.mp4
- french.mp4
- spanish.mp4










I'm using the following ffmpeg command to create a single video file with multiple audio tracks for each language :


ffmpeg -i video.mp4 -i english.mp4 -i spanish.mp4 -i french.mp4 \
-map 0:v -map 1:a -map 2:a -map 3:a \
-metadata:s:a:0 language=eng -metadata:s:a:0 title="English" \
-metadata:s:a:1 language=spa -metadata:s:a:1 title="Spanish" \
-metadata:s:a:2 language=fra -metadata:s:a:2 title="French" \
-disposition:a:0 default \
-c:v copy -c:a aac output.mp4



The resulting video file output.mp4 works fine in VLC, but the audio tracks play all at once in QuickTime and the separate audio channels don't appear in the
Languages
menu. What am I doing wrong here ?