Recherche avancée

Médias (6)

Mot : - Tags -/opensource

Autres articles (16)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (2156)

  • AAC encoder : fix OOB access in search_for_pns

    26 septembre 2015, par Claudio Freire
    AAC encoder : fix OOB access in search_for_pns
    

    Fix out of bounds access caused by wrongful usage
    of swb_offset constants when computing scalefactor
    positions.

    • [DH] libavcodec/aaccoder.c
  • c++ ffmpeg access violation

    29 mars 2012, par user1288043

    What's wrong in this code ? It is breaking (access violation) at av_find_stream_info. While debugging, ctx->filename is "3" instead of "1.MP3" : first 4 chars are omitted, checked for other files too, same result.

    av_register_all();
    AVFormatContext *ctx=0;
    ctx=avformat_alloc_context();
    avformat_open_input(&ctx,"1.MP3",0,0);
    av_find_stream_info(ctx);
    int istream;
    for(int i=0;inb_streams;i++){
    if(ctx->streams[i]->codec->codec_type==AVMEDIA_TYPE_AUDIO){
           istream=i;
           break;
    }
  • Access Haivision SRT statistics from ffmpeg command

    7 avril 2022, par martyn Gilbert

    I have been successfully using ffmpeg to stream using the Haivision SRT protocol enabled, I need to access the SRT statistics as described here https://github.com/Haivision/srt/blob/master/docs/API/statistics.md

    


    Can anyone help me to understand how to access these statistics from an ffmpeg commadline streaming SRT.