Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (77)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • 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

Sur d’autres sites (12423)

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

    


    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


    


  • Merge videos with different start times and show them on a grid

    1er août 2017, par shamaleyte

    I have multiple video files of a conference call. However, each participant joined the call at a different time, which resulted in the fact that each video file has a different start time offset values.

    Video   Start Time
    ------------------
    Video1  00:00
    Video2  00:10
    Video3  01:40

    My purpose is to play back this conference. However, I did not record the conference as 1 video, it is recorded with multiple video files, instead.
    How do I stitch these videos ?

    There is also a paid solution to merge video fragments to a single clip – this will make the client-side much simpler. But can I do it for free ?

    The expected outcome is to have one video showing three videos on a grid.
    When ffmpeg stitches the videos, it should consider their start time values properly so that the videos are played accordingly.