Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (104)

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (7423)

  • movenc : Write a 0 duration in mdhd and tkhd for an empty initial moov

    29 octobre 2014, par Martin Storsjö
    movenc : Write a 0 duration in mdhd and tkhd for an empty initial moov
    

    ISO/IEC 14496-12:2012/Cor 1:2013 is explicit about how this should be
    handled. All zeros doesn’t mean that the full file has got a zero
    duration, only that the track samples described within the initial moov
    have got zero duration. An all ones duration means an indeterminate
    duration.

    Keep writing a duration consisting of all ones for the ISM mode -
    older windows media player versions won’t play a file if this is
    zero. (Newer windows media player versions play either version fine.)

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/movenc.c
  • movenc : Add a flag for using default-base-is-moof in tfhd atoms

    29 octobre 2014, par Martin Storsjö
    movenc : Add a flag for using default-base-is-moof in tfhd atoms
    

    Similarly to the omit_tfhd_offset flag added in e7bf085b, this
    avoids writing absolute byte positions to the file, making them
    more easily streamable.

    This is a new feature from 14496-12:2012, so application support
    isn’t necessarily too widespread yet (support for it in libav was
    added in 20f95f21f in July 2014).

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] doc/muxers.texi
    • [DBH] libavformat/movenc.c
    • [DBH] libavformat/movenc.h
    • [DBH] libavformat/version.h
  • Create webm from consecutive snapshots

    22 octobre 2014, par camb8

    How can I create a webm stream (to use with a video tag in a web application) from consecutive snapshots ? (on linux)

    I understand that I can do this be creating a streaming server using ffserver and providing a intup stream to the server (tutorial here) using ffmpeg.

    The snapshots can be obtained from a ip camera using it’s snapshot cgi (’http://ipaddress/snapshot.cgi’)

    I found this and this but both of them use files and not a url to provide input images.