
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (53)
-
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
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 (8194)
-
How to stack videos horizontally with their audios combined in ffmpeg in nodejs ?
5 novembre 2018, par AbhilashI have a video calling app which I have implemented using Kurento Media Server. With the Recorder Endpoints from kurento I am able to record the videos of caller and callee separately. After the call I want to combine the videos into a single video. I want to stack the videos horizontally and combine their audios. I have done this using ffmpeg from terminal using complex filters but I want to achieve the same thing using ffmpeg nodejs library. Please help me. Thanks in advance.
-
how to cut the last 2 minutes of the videos in bulk using ffmpeg
8 mai 2020, par jose antonio da silva juniorhow to cut the last 2 minutes of the videos in bulk using ffmpeg I'm using this but I must do this in bulk but the time of the videos is not the same



for %%a in ("*.mp4") do ffmpeg -i "%%a" -i overlay-black.png -filter_complex overlay=0:600 -ss 00:00:05 -codec:a copy "convertidos\%% na.mp4" 
pause


-
How to split multiple videos 2.24 seconds before the end
15 décembre 2019, par LeendertI have a folder with 100 videos, I need to split all videos into 2, the split needs to happen 2 seconds before the end of every video.
I want to keep both parts of the video after the split.
So far I have the code below, this will trim 2 seconds from the end of every video that is in de same folder as the .bat file.
It will put the new videos inside of a folder called ’new files’.
The problem is that the length of the video is not trimmed. Only audio and video. So the last 2 seconds will just be the last frame and no audio.for %%a in ("*.mp4") do ffmpeg -i "%%a" -filter_complex "[0]trim=2,setpts=PTS-STARTPTS[b];[b][0]overlay=shortest=1" -shortest -c:a copy "newfiles\%%~na.mp4" pause