
Recherche avancée
Autres articles (51)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (8002)
-
How to correctly enquote string for substitution in command ?
13 janvier 2016, par Cobra_FastI am trying to pass a generated filter chain to ffmpeg with bash like so :
FILTER="-filter_complex \"...\""
ffmpeg -i ... $FILTER ...However, ffmpeg does not like this, telling me
No such filter : ’"’
So, how do I correctly set up the variable for proper substitution ?
-
fate/source-check.sh : Use "git show" instead of git —version to test for git
15 février 2016, par Michael Niedermayer -
FFMPEG show an Image with specific duration in filter_complex chain
26 juin 2021, par DigerkamI have trouble with showing images with a specific duration in filter_complex.


I have to use filter_complex, and getting error : "No such filter : 'duration'"


So which filter do I need to use ?


ffmpeg \
 -i "music.mp3" \
 -i "01.mp4" \
 -i "02.jpg" \
 -i "03.mp4" \
 -i "04.jpg" \
 -i "05.mp4" \
 -filter_complex " \
 [1:v]scale=300:400,trim=0:2,setpts=PTS-STARTPTS[v1]; \
 // Correct filter needed here: \
 [2:v]scale=300:400,duration=2,setpts=PTS-STARTPTS[v2]; \
 [3:v]scale=300:400,trim=4:6,setpts=PTS-STARTPTS[v3]; \
 // And here:
 [4:v]scale=300:400,duration=2,setpts=PTS-STARTPTS[v4]; \
 [5:v]scale=300:400,trim=8:10,setpts=PTS-STARTPTS[v5]; \
 [v1][v2][v3][v4][v5]concat=n=5:v=1:a=0[out] \
 " \
 -map "[out]" -map "0:a" -t "12" -c:v "libx264" -pix_fmt "yuv420p" -s "300x400" output.mp4