
Recherche avancée
Autres articles (55)
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...)
Sur d’autres sites (5924)
-
How to split video by duration like 10sec in FFmpeg ? [duplicate]
5 janvier 2019, par JabsThis question already has an answer here :
-
How to split a video using FFMPEG so that each chunk starts with a key frame ?
6 answers
-
record desktop save every 30 minutes
2 answers
-
Export each minute of MP3 into separate WAV
1 answer
-
How to get equally spaced audio chunks from .wav file using ffmpeg ?
1 answer
-
How to segment a video and then concatenate back into original one with ffmpeg
1 answer
I am new in ffmpeg ! i want to split videos which duration like 3 mins. or more into 10 sec.using ffmpeg ?
please help me how to resolve it. -
How to split a video using FFMPEG so that each chunk starts with a key frame ?
-
cbs_apv : Always restore tracing state on split fragment error
3 mai, par Mark Thompson -
Shortest not working with concat from split video and extra audio track
27 septembre 2022, par cakedevI'm trying to create a video with some speed variations from the source and concat them together at the end while also including an audio track to the result but, I want the audio file to match the length of the concat video, and the result I'm getting is the audio trims at the length of the source video duration, which is the shortest one.
Is there a way to use
-shortest
so it will only consider the mapped values at the end (concat video and external audio) ?

This is the command I have right now :


ffmpeg.exe -i source.mp4 -i sample.aac -y -filter_complex "[0]split=3[a][b][c];[b]setpts=2.0*PTS,reverse[r];[c]setpts=0.5*PTS[f];[a][r][f]concat=n=3[s]" -shortest -map '[s]' -map 1:a:0 out.mp4



Any help would be really appreciated.


Thanks !