Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (112)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

Sur d’autres sites (4214)

  • Docs : Re-worded the number of ways to set copy text

    24 août 2015, par thadseaver
    Docs : Re-worded the number of ways to set copy text
    

    Closes #602.

  • Android : ExoPlayer - Get current frame number from video

    28 avril 2016, par Gil

    I’m developing an Android video app where I need to get the current frame number of the video being displayed while in pause mode.

    I need to send my Server the frame number currently paused in video and get back a list of items regarding that frame/time, right now I’m sending the current paused time in milliseconds, but it doesn’t work quite well, because the Server compare the time sent to a specific frame it calculated, based on the time, but sometimes the comparison is not exact.

    I know you can get a bitmap from that frame if you use MediaMetaDataRetriever, and I did it but it returns bitmap image and what I need is an index.
    I’m using ExoPlayer (I need that feature for MP4 and for HLS, too, if that matters).

    Is there a way to get that info from the video ?

  • How to add zoom transition effects using FFmpeg to a variable number of images ?

    13 mai 2019, par Mathematics

    How can I add add zoom transition effects using FFmpeg to a variable number of images ?

    I am able to create video from a variable number of images but I am not sure how to add zoom in and out transition effects between images :

    ffmpeg -framerate 1/5 -i img%03d.jpeg -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4

    I found this,

    https://superuser.com/questions/1189246/ffmpeg-image-slideshow-with-zoompan-and-fade-in-out/1190199

    But problem is that images are hard coded in that example and I am not sure how to make it work for a variable number of images ?