Recherche avancée

Médias (91)

Autres articles (22)

  • 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

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (6750)

  • How to merge two videos, so that the scale of the video takes up 50% of the size of the output video

    3 avril 2023, par Gadzhimurad Radzhabov

    How to merge two videos, so that the scale of the video takes up 50% of the size of the output video.

    


    For example I need to merge two videos so that one half of the video takes up 50% of the output video size from the top and the other half takes up 50% of the output video size from the bottom.

    


    i.e. to divide both video halves in the output video !

    


    Example of such video youtube.com/shorts/InBFBwkUsgI

    


    I tried to ask questions GPT but did not get a normal answer, that is, I do not know how to implement it in general heard that you can implement through vstack

    


  • fate : use correct uint32 layer

    12 septembre 2020, par Mark Reid
    fate : use correct uint32 layer
    
    • [DH] tests/fate/image.mak
    • [DH] tests/ref/fate/exr-rgb-scanline-pxr24-half-uint32-13x9
  • ffmpeg - extract thumbnail from middle of clip duration

    13 février 2013, par codelove

    Hi I am using the following ffmpeg command to extract a thumbnail from the beginning of a clip with ffmpeg :

    /usr/local/bin/ffmpeg -ss 00:00:1 -i $fileName.flv -s 150x100 -vframes 1 $fileName.jpg

    Is it posible to extract a thumbnail from the middle of the clips duration with ffmpeg alone ?

    Each clip is of a different length.

    If ffmpeg does not supply this option, I know it is possible to get the clips duration into this type of format 00:00:01.26 and then I suppose I can divide it in half, but I am not sure if this is the best approach, and I am also (embarrassed to say) not entirely sure how to divide that format in half with PHP.

    Example code would be appreciated.

    Thank you.