Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (53)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP 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" (...)

Sur d’autres sites (4082)

  • 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 : Position images in video when creating slide show

    29 décembre 2015, par Jimmy

    I’m using FFMPEG shell utility in an Android app to convert users pictures to video, here’s an example command :

    cat *.jpg | ffmpeg -f image2pipe -r 10  -vcodec mjpeg -i - -vcodec libx264 -s 1280x720 -preset ultrafast slideshow.mp4

    I used to crop images when the user import it in the app but now I would like to allow the user to reposition the image later, here’s an example :

    enter image description here

    So the user could drag or zoom the image to position it in the clear area (video ratio).

    So using the ffmpeg shell command can I specify the image coordinate for each image and position the image in the video.

  • 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;