
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 (20)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (3922)
-
ffmpeg how to put color overlay over video
13 mai 2020, par flieksI want to put a color overlay (blue, red or green or hex value) over a video giving it a Instagram filter like effect.



I think it should be in the lines of :



ffmpeg -i video.mp4 -i "red.png" -filter_complex "blend=all_mode='screen':all_opacity=0.7" output.mp4




or maybe with
all_mode=overlay



But I get an error :



First input link top parameters (SAR 0:1) do not match the corresponding second input link bottom parameters (SAR 1:1).




I also tried with
lutrgb=r=1.5
, but that didn't give it a red color (it takes the red away).


What am i doing wrong ?


-
Removing false colors
25 mai 2014, par Peak Reconstruction WavelengthI encountered this problem when my video recording device got warmer.
How do I fill all areas that have that same colored violet or green with a gradient between two right(as in intended) colors(the way logoaway solutions do it) or using some other method that recreates the original image using ffmpeg ?
What I tried :
AVISynth (http://forum.doom9.org/showthread.php?p=1681321#post1681321) but combining AVS with ffmpeg seems like a bad idea and given the huge amount of ffmpeg’s filters I presume ffmpeg offers a more efficient solution.
-
How do I use ffmpeg to create an audio-synced cut from a single file ?
1er octobre 2017, par AlaShibanI have 1 large file (lets call it test.mp4), and I’d like to create a new file (out.mp4) that takes 3 segments that are 1 second apart :
Seg1: 00:01:00 - 00:02:00
Seg2: 00:03:00 - 00:04:00
Seg3: 00:06:00 - 00:07:00And merge them into out.mp4
I’ve tried various concat filters, or using the textfile.txt with instructions in it :
file file-1.wav
duration 20.0But various methods produce glitchy video with the x264 codec (green artifacts, choppy out-of-sync audio)
Cutting each segment into its own file and then merging is not applicable because that approach would produce thousands of files and seems quite slow processing wise.
Does anyone have thoughts on how this can be done properly with ffmpeg ? Is there an alternative API/CLI tool I could use thats known to work better for these cases ?