Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (64)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

Sur d’autres sites (6629)

  • h264_metadata : Always add the SEI user data to the first access unit

    11 février 2018, par Mark Thompson
    h264_metadata : Always add the SEI user data to the first access unit
    

    This should be added even if the first access unit does not contain
    parameter sets.

    • [DBH] libavcodec/h264_metadata_bsf.c
  • Why FFMpeg av_probe_input_format function is doing an access violation ?

    12 mai 2021, par Fabrice

    I'm trying to probe a buffer of DHAV containing an H264 video stream.
I use the code below to do that :

    


    AVProbeData probeData;
probeData.buf_size = len < 4096 ? len : 4096;
probeData.filename = "stream";
probeData.buf = (unsigned char*)malloc(probeData.buf_size);
memcpy(probeData.buf, lpData, probeData.buf_size);

AVInputFormat* pAVInputFormat = av_probe_input_format(&probeData, 1);


    


    My problem is that I have an Access violation exception during the call to av_probe_input_format.
If I change the second argument to 0, I have no error, but the Format is not found. Any idea ?
I use an FFMpeg version compiled through vcpkg.

    


  • avcodec/on2avc : Fix out of array access

    2 juillet 2014, par Michael Niedermayer
    avcodec/on2avc : Fix out of array access
    

    Fixes CID1206648

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/on2avc.c