
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (63)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (...)
Sur d’autres sites (8429)
-
How to bulk insert an audio clip into a batch of videos using ffmpeg
6 décembre 2018, par Date CaptainI have a batch of videos, all in MP4 with different lenghts. I would like to insert a specific audio file exactly at the 30 second mark on ALL of the videos.
For example. if the video file were 1 min & the audio file that i wanted to insert was about 3 seconds long.
It would go like
0.0-0.30- Original video with it’s audio
0.30-0.33- Original video with the Custom audio cue
0.33-1.00- Original Video with its audioffmpeg -i a.mp4 -itsoffset 00:00:10 -i b.mp3 -map 0:0 -map 1:0 -preset ultrafast o.mp4
- This does something close to the end result. But
- It the entirely mutes the videos audio
- Will only work for a single video. Need to batch convert everything in the folder.
- This does something close to the end result. But
-
Is it possible to use nvidia hardware to decode videos in opencv ?
1er janvier 2016, par Mickey ShineI am using opencv 3.1 and try to deal with some video files and also streaming videos (rtps ://..). I installed vdpau and compiled ffmpeg 2.8.4 with vdpau enabled. But opencv seems still not using hardware to deocde videos. I don’t use GPU for video output but the integrated graphics.
[root@localhost ~]# nvidia-smi dmon
# gpu pwr temp sm mem enc dec mclk pclk
# Idx W C % % % % MHz MHz
0 72 49 0 0 0 0 3505 1001
1 49 47 0 0 0 0 3505 1001
0 73 49 0 0 0 0 3505 1001The ’dec’ were always 0. So any advices ?
-
Trying to add intro on big amount of videos
26 novembre 2019, par somerandomdudefirst time asking a question here so sorry if im not doing it right.
so i’ve got lots of videos on different folders. im trying to add an intro and a watermark on them all
watermark should be added to the video and then the intro should be added after.
i tried ffmpeg on a video it worked but the video is so damn slow like x.25 or somethingim trying to write a batch script that does the whole thing on all folders.
some of them are like :
folder/video.mp4
folder/subfolder/subfolder/video.mp4i don’t know how to deal with those and im talking like 6k videos.
again sorry if im not doing it right.
i tried something like this : in batch.(for %%i in (*.mp4) do @echo file '%%i') > ./list.txt
ffmpeg -f concat -i ./list.txt -c copy ./output.mp4
PAUSE