Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (65)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (13756)

  • v4l2 : don’t leak video standard string on error.

    27 mai 2011, par Anton Khirnov

    v4l2 : don’t leak video standard string on error.

  • bktr : get default framerate from video standard.

    3 juin 2011, par Anton Khirnov

    bktr : get default framerate from video standard.

  • how to extract images from a video file using ffmpeg

    26 août 2014, par Rahul

    I need to get one image out of an video to use as a thumbnail
    So I am trying this :

    ffmpeg -ss 00:05:34.05 -i input.avi -vframes 1 -sameq output.jpg  

    This works just fine however every once in a while I come across a file where this fails with the following error message

    av_interleaved_write_frame(): I/O error occurred  

    Usually that means that input file is truncated and/or corrupted.

    What are my options if any ?
    Thanks