Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (54)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (7894)

  • avdevice/timefilter : 2nd try at avoiding rounding issues

    3 août 2013, par Michael Niedermayer
    avdevice/timefilter : 2nd try at avoiding rounding issues
    

    This hopefully fixes fate-timefilter

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavdevice/timefilter.c
    • [DH] tests/ref/fate/timefilter
  • Anomalie #3811 (Fermé) : Sur le Wiki de Contrib = versionning apparent incorrect !

    4 mai 2017, par cedric -
  • Calling ffmpeg from Java calling command line/ shell script throws "Trailing garbage after a filter" Error

    28 juin 2023, par coenni

    Calling ffmpeg from Java throws "Trailing garbage after a filter" Error

    &#xA;

    I tried to call from Java application command string over dockerized ffmpeg, same result.

    &#xA;

    docker run --rm  -v sample-test:/config linuxserver/ffmpeg  -loop 1 -t 5 -i  config/1.jpeg  -loop 1 -t 5 -i  config/3.jpeg  -y -filter_complex "[0:v]fade=t=out:st=4:d=1[v0];  [1:v]fade=t=in:st=0:d=1,fade=t=out:st=4:d=1[v1];  [v0][v1]concat=n=2:v=1:a=0,format=yuv420p[v];" -map "[v]"  config/output/video_java.mp4&#xA;

    &#xA;

    My goal is to run such a query from Java application

    &#xA;

    ffmpeg \&#xA;-loop 1 -t 5 -i input0.png \&#xA;-loop 1 -t 5 -i input1.png \&#xA;-loop 1 -t 5 -i input2.png \&#xA;-loop 1 -t 5 -i input3.png \&#xA;-loop 1 -t 5 -i input4.png \&#xA;-filter_complex \&#xA;"[0:v]scale=1280:720:force_original_aspect_ratio=decrease,pad=1280:720:(ow-iw)/2:(oh-ih)/2,setsar=1,fade=t=out:st=4:d=1[v0]; \&#xA; [1:v]scale=1280:720:force_original_aspect_ratio=decrease,pad=1280:720:(ow-iw)/2:(oh-ih)/2,setsar=1,fade=t=in:st=0:d=1,fade=t=out:st=4:d=1[v1]; \&#xA; [2:v]scale=1280:720:force_original_aspect_ratio=decrease,pad=1280:720:(ow-iw)/2:(oh-ih)/2,setsar=1,fade=t=in:st=0:d=1,fade=t=out:st=4:d=1[v2]; \&#xA; [3:v]scale=1280:720:force_original_aspect_ratio=decrease,pad=1280:720:(ow-iw)/2:(oh-ih)/2,setsar=1,fade=t=in:st=0:d=1,fade=t=out:st=4:d=1[v3]; \&#xA; [4:v]scale=1280:720:force_original_aspect_ratio=decrease,pad=1280:720:(ow-iw)/2:(oh-ih)/2,setsar=1,fade=t=in:st=0:d=1,fade=t=out:st=4:d=1[v4]; \&#xA; [v0][v1][v2][v3][v4]concat=n=5:v=1:a=0,format=yuv420p[v]" -map "[v]" out.mp4&#xA;&#xA;&#xA;Runtime.getRuntime().exec(String.format("/bin/sh -c " &#x2B; ffmpegCommand));&#xA;

    &#xA;

    Why it happens and how to solve ? Appreciating

    &#xA;