Recherche avancée

Médias (91)

Autres articles (29)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • ANNEXE : Les extensions, plugins SPIP des canaux

    11 février 2010, par

    Un plugin est un ajout fonctionnel au noyau principal de SPIP. MediaSPIP consiste en un choix délibéré de plugins existant ou pas auparavant dans la communauté SPIP, qui ont pour certains nécessité soit leur création de A à Z, soit des ajouts de fonctionnalités.
    Les extensions que MediaSPIP nécessite pour fonctionner
    Depuis la version 2.1.0, SPIP permet d’ajouter des plugins dans le répertoire extensions/.
    Les "extensions" ne sont ni plus ni moins que des plugins dont la particularité est qu’ils se (...)

Sur d’autres sites (3284)

  • Revision d35df2d8ea : High-level hooks for Profile 2 (10/12 bit) Adds some high-level hooks for profi

    5 avril 2014, par Deb Mukherjee

    Changed Paths :
     Modify /vp9/common/vp9_enums.h


     Modify /vp9/common/vp9_onyxc_int.h


     Modify /vp9/decoder/vp9_decodeframe.c


     Modify /vp9/encoder/vp9_bitstream.c


     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_onyx_int.h


     Modify /vp9/vp9_cx_iface.c



    High-level hooks for Profile 2 (10/12 bit)

    Adds some high-level hooks for profile 2 before further
    progress on the implementation.

    According to the definitiion in this patch :
    1. Profile 2 only supports 10 or 12 bit color but not 8
    2. Profile 2 supports all color sampling modes : 444, 422 and 420,
    and alpha plane.
    3. Profile 3 is currently undefined.

    Please consider the definition carefully and suggest modifications
    to the definition as needed.

    Change-Id : I5b284fc679e54ac5aee171af72fa7994cfd28995

  • Experiences on building a video recorder for RTSP/RTP streams ?

    3 août 2016, par molokoV

    I have to store continuous video streams from many ip cameras,
    The video is encoded in H.264 and the audio is in AAC or MP3.
    The recorded videos will be played mostly on mobile devices but also on browsers.

    • What would be the best strategy to build a scalable recorder service ?

    • What is the best storage format ? mp4 ?

    • Should i convert the video directly to MP4 ? or is better to store RAW RTP ?

    • Whats the best way to ensure best reliability and less frame loses and avoid lost of sync between audio and video ?

    • I also want to hear similar experiences

    Thanks !

  • what's the theory of mix audio in the ffmpeg

    6 juin 2017, par from_mars

    when I wanted to mix two file into one, I found the toolkit.when I did
    this after following the command, everything was fine,just like :

    ffmpeg -i 1.wav -i 2.wav -filter_complex amix=inputs=2:duration=longest:dropout_transition=2 out.wav

    but there is something I want to know.

    1. what’s the theory of mix audio in the ffmpeg.

      Do you just calculate the average of the input file ?

    2. what’s the dropout_transiton.

      and I found the reference in the website : dropout_transition
      The transition time, in seconds, for volume renormalization when an input stream ends. The default value is 2 seconds.
      .
      but I don’t know what’s the mean.

      if dropout_transiton=0, what would happened ?

    Thanks !(sorry for my poor english)