Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (71)

  • 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

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (11715)

  • Revision 4274 : On affiche le nombre ici

    28 octobre 2010, par kent1 — Log

    On affiche le nombre ici

  • Revision 4274 : On affiche le nombre ici

    28 octobre 2010, par kent1 — Log

    On affiche le nombre ici

  • ffmpeg choose exact frame from long film strip

    28 novembre 2018, par Tech Aimley

    I’m working with ffmpeg to choose the better thumbnail for my video. and the selection would be based on the slider.
    as per the requirement multiple thumbnails not needed just a single long film image and with the help of slider select the thumbnail and save it.

    i used below command to get the long strip thumbnail.

    ffmpeg -loglevel panic -y -i "video.mp4" -frames 1 -q:v 1 -vf "select=not(mod(n\,40)),scale=-1:120,tile=100x1" video_preview.jpg

    I followed the instructions from this tutorial

    I’m able to get the long film image :
    http://i.imgur.com/BX0pV4J.jpg

    This is working fine, they moving the image in slider which is fine.

    My question is how can I select a particular frame from that slider / film strip. How can I calculate the exact time duration from the slider and then execute a command to extract that frame ?