Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (112)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • De près ou de loin...

    29 avril 2011, par

    Ils ne le savent pas forcément mais sont indispensables
    MediaSPIP est un logiciel open-source, il se base sur d’autres logiciels, et d’autres logiciels lui sont également nécessaires pour fonctionner ... Les personnes ici listées ne savent pas forcément qu’elles ont un rôle important dans le développement, elles ont apporté leur connaissances dans le cadre de la création d’une partie de ces éléments nécessaires ou ont écrit des articles permettant de comprendre certaines choses... il semble indispensable (...)

Sur d’autres sites (8407)

  • avutil/error : Add HTTP 429 Too Many Requests AVERROR code

    22 avril 2024, par Derek Buitenhuis
    avutil/error : Add HTTP 429 Too Many Requests AVERROR code
    

    This is a common error code from e.g. CDNs or cloud storage, and
    it is useful to be able to handle it differently to a generic
    4XX code.

    Its source is RFC6585.

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

    • [DH] libavutil/error.c
    • [DH] libavutil/error.h
    • [DH] libavutil/version.h
  • FFmpeg code not working on http url for thumbnail extraction

    1er août 2014, par user2240379

    I am trying to extract thumbnail from sharepoint 2013 video library. I found a link which can extract using ffmpeg. this is the link :
    [How can I save first frame of a video as image ?

    filename = "http://siteurl/" + items["FileRef"].ToString();

    When i replaced the input file with sharepoint site url and video name then it does not produce any thumbnail. I also gives error on

    ffmpeg.Start();
           ffmpeg.WaitForExit();
           ffmpeg.Close()

    I would like to understand how make it work for http url.
    If it is not possible to use url in ffmpeg can anyone suggest another method to achieve thumbnail.(as i want the thumbnail to be set automatically using 1st frame from of video if it not set manually)

  • Create MP4 file from HTTP packets received over network

    19 juin 2023, par Austin

    I have implemented a network recorder (proxy) specially for HTTP and Websocket. When a user access a link for an audio / video file (say mp4 format), I want to create a mp4 file since all the data passing through proxy.

    &#xA;

    Whenever I detect mp4 data is present in HTTP response body, I uncompress the body (it could be zip or brotli compressed packet) and then write it to a file. So far I have implemented and it looks fine.

    &#xA;

    Now when I try to play, it does not play which is obvious as it is not a proper mp4 format file. I want to know, how can I prepare a proper mp4 file from received HTTP response body. My first preference to use simple c/c++ code to create mp4 file. It it turns out to be lot of work I am open to use ffmpeg. Can somebody please help me what's the best approach here and any reference sample / example code ? 

    &#xA;