Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (98)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (10097)

  • Winamp Media Player Released with WebM Support

    21 juillet 2010, par noreply@blogger.com (John Luther)

    Winamp Media Player now supports native WebM playback. Read all about it on their blog.

  • mov : Properly abide by the track's media duration

    23 avril 2018, par Derek Buitenhuis
    mov : Properly abide by the track's media duration
    

    The track's media duration from the mdhd atom takes precedence
    over both the stts and elst atom for calculating and setting
    the track's total duraion.

    Technically, we shouldn't be using the stts atom at all for
    calculating stream durations.

    This fixes incorrect stream and final packet durations on files
    with edit lists that are longer than the media duration.

    The FATE changes are expected, and output is more correct (the
    AAC frame is not 1028 samples).

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavformat/mov.c
    • [DH] tests/ref/fate/adtstoasc_ticket3715
  • Node Media Server not streaming when I change ffmpeg argv

    30 mai 2020, par joao.jlf4

    I'm trying to change the ffmpeg spawn argv on Node Relay Session but it does'nt work beacuse node media server finishes the stream, my argv array :

    &#xA;&#xA;

    let argv = [&#xA;      &#x27;-fflags&#x27;, &#xA;      &#x27;nobuffer&#x27;, &#xA;      &#x27;-i&#x27;, &#xA;      this.conf.inPath, &#xA;      &#x27;-b:v&#x27;,&#xA;      &#x27;2000k&#x27;,&#xA;      &#x27;-b:a&#x27;,&#xA;      &#x27;128k&#x27;,&#xA;      &#x27;-c:v&#x27;,&#xA;      &#x27;libx264&#x27;,&#xA;      &#x27;-preset veryfast&#x27;,&#xA;      // &#x27;-c&#x27;, &#xA;      // &#x27;copy&#x27;, &#xA;      &#x27;-f&#x27;, &#xA;      format, &#xA;      this.conf.ouPath];&#xA;

    &#xA;