Recherche avancée

Médias (91)

Autres articles (107)

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

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (38192)

  • avformat/matroskaenc : Refactor writing EBML lengths

    15 avril 2020, par Andreas Rheinhardt
    avformat/matroskaenc : Refactor writing EBML lengths
    

    This commit factors the ability to write ordinary EBML numbers out of
    the functions for writing EBML lengths. This is in preparation for
    future commits.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskaenc.c
  • Need help getting started building http video stream from different ffmpeg output with Spring Boot ?

    26 octobre 2019, par ank

    Not sure if my question is correct/clear but basically I’m trying to build an NVR application. I plan to use ffmpeg to read ip camera streams (over LAN), produce an output and allow users to view these streams (live) through the web application (possible over the internet) or through http built using Spring Boot. I would also want to give users the ability to add more ip camera streams (within the web application) and have the application automatically run ffmpeg to read and write the output then make the live stream available for viewing within the application or through http.

    For the ffmpeg commands, I plan to use the ffmpeg-cli-wrapper library. For the live streaming from the application itself or through http, are there any libraries that I can use for this ?

  • Get different frames from one file ( H264 codec)

    4 décembre 2020, par Алекс Аникей

    I try to transmit video to another client(video call), using library ffmpeg and encoder - libx264, decoder - h264. For this i have one "core" library, which used in two clients.

    &#xA;

    On sender :

    &#xA;

      &#xA;
    • &#xA;
        &#xA;
      1. encode AVFrame and get AVPacket ;
      2. &#xA;

      &#xA;

    • &#xA;

    • &#xA;
        &#xA;
      1. transform AVPacket.data to byte array and length for&#xA;transmiting (for debugging i save this byte array to file).
      2. &#xA;

      &#xA;

    • &#xA;

    &#xA;

    On reciver :

    &#xA;

      &#xA;
    • &#xA;
        &#xA;
      1. save recived byte array to file ;
      2. &#xA;

      &#xA;

    • &#xA;

    • &#xA;
        &#xA;
      1. get AVPacket from this byte array ;
      2. &#xA;

      &#xA;

    • &#xA;

    • &#xA;
        &#xA;
      1. decode AVPacket to AVFrame.
      2. &#xA;

      &#xA;

    • &#xA;

    &#xA;

    Result of this :&#xA;array files(saved byte_array), which equals on sender and reciver but some frames are different (some part of frame on reciver is corrupted).&#xA;Like this :Corrupted frame

    &#xA;

    What possible reason of this ?

    &#xA;