Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (61)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

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

Sur d’autres sites (6374)

  • FLutter : Read frames fom video, process it, put it to output video

    26 juin 2023, par RAITON

    I have video record and I need to process frames of this video, and for each frame/image write random integer on top left or right of image ( the random integer is only example I will replace this random int by my logic )

    


    something like :

    


    // 1. extract list of frames from video
// 2. process images/frames and add random integer in top left or right of image
// 3. Write output Video with new Frames contain the random integer 


    


    can someone help to have code example to resolve this by using ffmpeg package or any other package ?

    


    Thanks

    


  • How can I use ffmpeg to crop a part of a video by frames numbers including video and audio ?

    28 mars 2019, par Dubi Duboni

    I have a simple list :

    LReg.start = rise[i];
    LReg.end = fall[i];
    LR.Add(LReg);

    start and end are int’s in the end I have a List of the frames I want to extract from a video file. For example in index 0 of LR I have start 48 end 51
    In index 1 start 110 end 124

    So I want to loop over the List an save as a video file the part of a video file using ffmpeg according to the frame number start and end by jumping to this frames.
    Jump to frame 48 and create a video file out from frame 48 to 51 including 48 and 51. Then jump forward to the next group of frames 110 and 124 and so on.

    The problem is how to use ffmpeg to extract and save video files ?

  • Combine three ffmpeg commands to encode,, text, image and video on a main video in Android

    27 mai 2020, par Mit Shah

    My question is, I have successfully coded the FFMPEG commands for a text, an image and and a video in android. Now as there can only be one single string command to execute I need to combine those three in single one. How am I able to achieve this ? I have wasted lots of time but couldn't get anything.

    



    For example : There is a main video in background and I have three different view on top of it and I need to make execution.

    



    Thanks.