
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (92)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (12086)
-
How to display live web camera video into video player using ffmpeg
30 octobre 2013, par Akash LanghaniI want to use live camera video and play same time in a video player, means record and play parallel, can ffmpeg perform this, if yes then how.
-
FFmpeg command to overlay first video on top of other video in batch file [closed]
18 septembre 2022, par Ionut BejinariuWith this code I'm trying to add a video with a transparent background over another, more precisely a waveform over another mp4 video.


what is wrong in the code below ?
I try it on a batch file, but is not executed..


ffmpeg -y -i test.mp4 -i waveform.mp4 -filter_complex [1]format=rgb24,colorkey=black:0.3:0.2,colorchannelmixer=aa=0.3,setpts=PTS+8/TB[1d]; [0][1d]overlay=enable='between(t,8, 13)'[v1]; -map [v1] -map 0:a -c:a copy -c:v libx264 -preset ultrafast export.mp4





thank you for your gelp


-
I have two ffmpeg command one is for Overlay text on video and other is for add picture logo on video, i want to merge them but it's not working
18 février 2019, par Zeeshan Sheikhi want to combine these two commands
one is for overlay text on video :1) ffmpeg -i video.mp4 -vf "movie=logo.png [watermark] ; [in][watermark] overlay=10:10 [out]" -y output.mp4
2) ffmpeg -i video.mp4 -filter:v drawtext="fontfile=font/arial.ttf:text=’Text’:fontcolor=white@1.0:fontsize=30:y=h/2:x=0:enable=’between(t,6,10)’" -t 10 e :\output.mp4
i want to use both functionaties into one command. but it’s not working on my side