
Recherche avancée
Autres articles (30)
-
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. -
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 (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (6892)
-
Looking for examples of ffmpeg and concat with list.txt and fade in-out
30 octobre 2020, par Plazar99I've been researching how to do an ffmpeg-concat with play list and fade in/out. I haven't seen an example of this combination. my current command is as follows : I'd like to fade in and out of each video clip, and there are 35-60 video clips in the .txt list. ffmpeg build is from 2016, so it doesn't have gltransition.


ffcommand = {"-f", "concat", "-safe", "0", "-i", renderDirPath + "concatscript.txt", "-i", musicDirPath, "-map", "0:v", "-map", "1:a", "-vf", "scale=640x480", renderDirPath + "finalrender.mp4"}



-
FFmpeg concat filter
7 avril 2020, par Narek AydinyanI have 2 same videos. One of the videos doesn't have audio and I want to
concat
them.


video1 = 1 video stream + 1 audio stream.
video2 = 1 video stream.
the result should be 1(concatenated) video stream, 1 audio stream




I have tried



ffmpeg -i videoonly.mov -i video+audio.mov -filter_complex "[0:v][0:a] [1:v] [1:a] concat=n=2:v=1:a=1 [v] [a]" -map "[v]" -map "[a]" out.mov




but it doesn't work and prints the error message



Stream specifier ':a' in filtergraph description [0:v][0:a] [1:v] [1:a] concat=n=2:v=1:a=1 [v] [a] matches no streams.




I except this kind of error message because the second video doesn't have the audio and I sepcifyed the audio but the question is how to make it work or is it possible ?



Thanks in advance.


-
Concat videos without shifting audio
8 novembre 2016, par VixinGI have a few videos I’m concating with
ffmpeg -f concat -i myfiles.txt -c copy
, and two of the videos in the middle have no audio track. After concat the audio shifts. It moves the audio from later videos on top of the muted ones.How can I concat without shifting the audio, so the muted parts are still muted ?
audiovideo + audiovideo + audiovideo + video + video + audiovideo + audiovideo