Recherche avancée

Médias (91)

Autres articles (106)

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

Sur d’autres sites (11945)

  • Replicate audio/video from another video [closed]

    25 mars 2020, par thatPranav

    I have two videos, say, video-1 and video-2 and I wish to convert video-1 format exactly like video-2.

  • Create video trailer (mp4) with FFMPEG and PHP from long mp4 video [on hold]

    23 octobre 2015, par user1887681

    i have a video site and i want to make trailers for all videos.
    ie I have to make a 12 second video from 4 randomly increments of 3 seconds each from the full video.

    Has anyone tried it ?

  • FFMPEG Overlay one video on top of another video at specific location

    11 août 2018, par Ewan Sou

    I have two videos (in mp4 format). I would like to put one video on top of the other video

    • Both videos have the same duration
    • The bottom video is of resolution 640px by 640px
    • The top video is also of resolution 640px by 640px

    I need to scale down the top video resolution to 580px by 580px. Then I need to position it in a specific location on top of the bottom video.

    I tried the below quote

    ffmpeg -i bottom.mp4 -i top.mp4 -filter_complex "[0:0][1:0]overlay=enable='between(t\,0,50)'[out]" -shortest -map [out] -map 0:1 -pix_fmt yuv420p -c:a copy -dn -c:v libx264 -crf 18 output.mp4

    It does allow me to put the top video on top of the bottom video I think. But the top video was not scaled down in size. Also, this top video is by default on the top left corner of the bottom video.

    In additional, somehow, the very first frame will not show the top video at all. Only at around the 0.5sec will the top video appear. Is there any way to make it such that the top video is showing at the very first frame too ?

    Thank you all in advance !