Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (97)

  • 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

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6603)

  • when I use av_interleaved_write_frame, the call error:CENC-AVC : nal size 808464433 remaining 39413

    3 janvier 2020, par Lupin_zhang

    I use the ffmpeg example remuxing.c, I change the avpakect data of key frame video, when I use av_interleaved_write_frame, the call error:CENC-AVC : nal size 808464433 remaining 39413,and I find the pkt.size not equal the pkt.data[0 3] ;if change the pkt.data[0 3] enqual pkt.size, the output video can not play properly.

       //....
    //video_index is the stream index of video
    if (pkt.stream_index == video_index)
    {
       for (int i = 0; i < 4; i++)
       {
           printf("%x-", pkt.data[i]);
       }
       printf("\n");
       int size = pkt.size;
       //the size not equal the pkt.data[0~3]
    }
    //....
  • idct : remove call to ff_idctdsp_init from ff_MPV_common_init

    8 août 2014, par John Stebbins
    idct : remove call to ff_idctdsp_init from ff_MPV_common_init
    

    One step in untangling the mpegvideo code and fixing some problems in
    the order that initialization is being done in h263dec and h261dec.

    • [DBH] libavcodec/dnxhdenc.c
    • [DBH] libavcodec/h261dec.c
    • [DBH] libavcodec/h263dec.c
    • [DBH] libavcodec/mpeg12dec.c
    • [DBH] libavcodec/mpegvideo.c
    • [DBH] libavcodec/mpegvideo.h
    • [DBH] libavcodec/mpegvideo_enc.c
    • [DBH] libavcodec/rv10.c
    • [DBH] libavcodec/rv34.c
  • avformat/mux : Call check_packet() more directly

    16 mai 2020, par Andreas Rheinhardt
    avformat/mux : Call check_packet() more directly
    

    Call it directly from write_packets_common() instead of indirectly
    through prepare_input_packet().

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

    • [DH] libavformat/mux.c