Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (51)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately 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 2011

    MediaSPIP 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, par

    Le 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_Fast

    I 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
    fate/source-check.sh : Use "git show" instead of git —version to test for git
    

    This fixes fate with non git source trees

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tests/fate/source-check.sh
  • FFMPEG show an Image with specific duration in filter_complex chain

    26 juin 2021, par Digerkam

    I have trouble with showing images with a specific duration in filter_complex.

    &#xA;

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

    &#xA;

    So which filter do I need to use ?

    &#xA;

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

    &#xA;