
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (74)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
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 (8512)
-
Combining videos with ffmpeg using crossfades and plain cuts
9 mars 2016, par ZachI am writing a script to combine/slice arbitrary video files from S3 into one output video. So far, I am doing this by first trimming the videos to their proper length using
ffmpeg -i input-X.mp4 -ss start -t duration slice-X.mp4
and recombining the resultant slices with the ffmpegconcat
filter.I want to be able to crossfade and cut between videos.
concat
does not support transitions. What is the best way to combine videos with crossfades and cuts on the Linux command line ? Is ffmpeg the best tool for the job ?My question is similar to "How do you create a crossfade transition between multiple videos in FFMPEG ?" but I do not necessarily need to use ffmpeg. Also, I want to be able to fade in between some slices and cut between others.
-
Presenting more than 2 videos using FFmpeg
15 juin 2016, par RadagskarI found this answer for combining 2 videos using Ffmpeg
ffmpeg.exe -i LeftInput.mp4 -vf "[in] scale=iw/2:ih/2, pad=2*iw:ih [left];
movie=RightInput.mp4, scale=iw/3:ih/3, fade=out:300:30:alpha=1 [right];
[left][right] overlay=main_w/2:0 [out]" -b:v 768k Output.mp4Is there a way to combine more than 2 ?
I tried adding
[bottom]
and[upper]
but I’m failing to understand how the overlay works and where do I put more videos. -
How do I batch cut videos ? [closed]
12 février 2024, par EngineerJackI've searched for a while on Google, but haven't found a good solution.


I have multiple videos that I want to cut parts from, so I would like to figure out how to batch cut them so I can figure out each video, then cut them all at once.


I assume I'll use the terminal or powershell, and use commands, write down the info for each video in a file (like a script) then call on that file so they process one after another from that script.


I know that I can do this one-by-one with the code below, but I would like to know how to use the following code for multiple videos as I described above.


ffmpeg -i "video.mp4" -ss 00:00:00 -to 00:00:00 -async 1 -strict -2 "cut.mp4"


BUT, a program (preferrably freeware) that isn't a video editor, but one that I can put the "start" and "end" times, then add multiple videos, WOULD be preferred.


Anyone who can help me with this, I'd appreciate it.


I've tried searching for ways to do this using .bat and .ps1 files on Google, but without finding a good solution.