Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (56)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (8122)

  • Why video size is increasing after adding watermark to video using FFMPEG ?

    18 novembre 2019, par Milan Tejani

    I am adding watermark to video using FFMPEG where i use -preset ultrafast in FFMPEG command.which add watermark to video very fast but due to this my output video size increased.

    ffmpeg -i input.mp4 -i mt.png -filter_complex "overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2" -codec:a copy -preset ultrafast output.mp4

    Without Using -preset ultrafast

    input video size 5MB and output video size 5MB

    Using -preset ultrafast

    input video size 5MB and output video size 11MB

  • How to display annotation data on video and render that video in nodejs ?

    8 juillet 2019, par Rahul Dubey

    I’m having a JSON data of annotation’s coordinates which I wanted to display on the video for a particular time and render the video with the annotation.

    I saw ffmpeg module. But it doesn’t have this feature

  • How to use to ffmpeg create video collage from a video captured by an app ? [closed]

    18 février 2021, par Bharat singh

    I am working on a android app, which is based on video collage, in which I have to create collage from selected or captured video. There are different types of collage I have to implement. I have implemented most of them.

    


    But I am stuck when I try to create a specific type of collage.

    


    I have to create a collage in which all video should play one be one.

    


    I have to combine 16 videos all together in a frame, and play them one by one.

    


    It should be look like this :

    


    enter image description here

    


    For now all video are playing together. What should I do so that all videos play one by one ?