Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (39)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

Sur d’autres sites (8484)

  • avformat/movenc : Check that frame_types other than EAC3_FRAME_TYPE_INDEPENDENT have...

    27 juin 2018, par Michael Niedermayer
    avformat/movenc : Check that frame_types other than EAC3_FRAME_TYPE_INDEPENDENT have a supported substream id
    

    Fixes : out of array access
    Fixes : ffmpeg_bof_1.avi

    Found-by : Thuan Pham, Marcel Böhme, Andrew Santosa and Alexandru Razvan Caciulescu with AFLSmart
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/movenc.c
  • avcodec/ac3_parser : Check init_get_bits8() for failure

    27 juin 2018, par Michael Niedermayer
    avcodec/ac3_parser : Check init_get_bits8() for failure
    

    Fixes : null pointer dereference
    Fixes : ffmpeg_crash_6.avi

    Found-by : Thuan Pham, Marcel Böhme, Andrew Santosa and Alexandru Razvan Caciulescu with AFLSmart
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ac3_parser.c
  • Cannot play amr rtp stream using ffmpeg

    1er juin 2020, par Vikram Dattu

    I want to receive and play amr packets streamed using RTP.

    &#xA;&#xA;

    Packets are sent to my macbook on port 9999

    &#xA;&#xA;

    I can receive packets using simple C program for UDP receiver.&#xA;I use bind to 9999 port and use recvfrom to receive packets.

    &#xA;&#xA;

    However when I use ffmpeg command to do the same, it is not able to receive single packet.

    &#xA;&#xA;

    Command used is : ffplay -protocol_whitelist file,udp,rtp -i test.sdp

    &#xA;&#xA;

    Contents of test.sdp :

    &#xA;&#xA;

    v=0&#xA;o=Andrew 2890844526 2890844526 IN IP4 192.168.1.106&#xA;s= SDP Blog&#xA;c=IN IP4 192.168.1.106&#xA;t=0 0&#xA;m=audio 9999 RTP/AVP 100&#xA;a=rtpmap:100 AMR/8000/1&#xA;a=fmtp:100 octet-align=1&#xA;

    &#xA;&#xA;

    192.168.1.106 is sender's address.

    &#xA;&#xA;

    I have tried changing this address to 127.0.0.1. Doesn't help.

    &#xA;&#xA;

    I am stuck at the point and not cannot find anything helpful.

    &#xA;&#xA;

    By the way,&#xA;sample sine wav generator example to stream on same device (loopback on 127.0.0.1) works.

    &#xA;