Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (78)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • 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

Sur d’autres sites (8418)

  • Merge remote-tracking branch ’rbultje/vp9-32bit-lpf’

    27 décembre 2014, par Michael Niedermayer
    Merge remote-tracking branch ’rbultje/vp9-32bit-lpf’
    

    * rbultje/vp9-32bit-lpf :
    vp9/x86 : add myself to copyright holders for loopfilter assembly.
    vp9/x86 : make filter_16_h work on 32-bit.
    vp9/x86 : make filter_48/84/88_h work on 32-bit.
    vp9/x86 : make filter_44_h work on 32-bit.
    vp9/x86 : make filter_16_v work on 32-bit.
    vp9/x86 : make filter_48/84_v work on 32-bit.
    vp9/x86 : make filter_88_v work on 32-bit.
    vp9/x86 : make filter_44_v work on 32-bit.
    vp8/x86 : save one register in SIGN_ADD/SUB.
    vp9/x86 : store unpacked intermediates for filter6/14 on stack.
    vp8/x86 : move variable assigned inside macro branch.
    vp9/x86 : simplify ABSSUM_CMP by inverting the comparison meaning.
    vp8/x86 : remove unused register from ABSSUB_CMP macro.
    vp9/x86 : slightly simplify 44/48/84/88 h stores.
    vp9/x86 : make cglobal statement more conservative in register allocation.
    vp9/x86 : save one register in loopfilter surface coverage.

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

    • [DH] libavcodec/x86/vp9dsp_init.c
    • [DH] libavcodec/x86/vp9lpf.asm
  • hevc : deobfuscate slice/tile boundary handling for DBF

    27 juillet 2014, par Anton Khirnov
    hevc : deobfuscate slice/tile boundary handling for DBF
    

    Use named constants instead of magic numbers, avoid using variables with
    inverse meaning from what their name implies.

    • [DBH] libavcodec/hevc.c
    • [DBH] libavcodec/hevc.h
    • [DBH] libavcodec/hevc_filter.c
  • FFMPEG error code description

    16 juillet 2014, par Ram Krishna

    We are using FFmpeg libraries git-ee94362 libavformat v55.2.100. Our
    purpose is to mux two streams (video and audio) into M3U8 playlist using
    HLS.
    We are using AV_CODEC_ID_H264 output encoder, AV_PIX_FMT_YUV420P output
    video pixel format and CODEC_FLAG_GLOBAL_HEADER flag for the encoder.
    The last causes us to use "h264_mp4toannexb" bit stream filter.
    So, here is the code snippet :

    AVPacket outpkt = {0};
    int isGotVideoPacket = 0;

    av_init_packet(&amp;outpkt);

    // convert time in stream time base units, so that the encoder will fill
    the packet appropriately
    out_video_frame->pts = (int64_t) (video_frame_count *
    in_video_frame_duration / av_q2d(out_video_stream->time_base));

    int ret = avcodec_encode_video2(enc_out_video_ctx, &amp;outpkt,
    out_video_frame[i], &amp;isGotVideoPacket);

    assert(0 &lt;= ret);

    // if size is zero, it means the image was buffered
    if ((1 == isGotVideoPacket) &amp;&amp; (0 &lt; outpkt.size)) {

    AVPacket new_outpkt = outpkt;

    if ((AVBitStreamFilterContext*) 0 != vbsf_ctx) {
     AVPacket new_outpkt = outpkt;

     ret = av_bitstream_filter_filter(vbsf_ctx, enc_out_video_ctx, (const
    char*)0,
      &amp;new_outpkt.data, &amp;new_outpkt.size, outpkt.data, outpkt.size,
      outpkt.flags &amp; AV_PKT_FLAG_KEY);

     if (ret > 0)
     {
      outpkt = new_outpkt;
     }
     else
     {
      // We get ret = -22
      char errbuf[128] = "";

                           // Both the functions get "Error number -22
    occurred" that don't explain anything
       av_strerror (ret, errbuf, 128);
      av_make_error_string (errbuf, 128, ret);

     }

     assert(0 &lt;= ret);

    }

    outpkt->stream_index = output_video_stream->index;

    // If to comment av_bitstream_filter_filter() and "if-else", then
    // At frame #37 we get the following error from
    av_interleaved_write_frame():
    // [mpegts @ 09628140] H.264 bitstream malformed, no startcode found, use
    the h264_mp4toannexb bitstream filter (-bsf h264_mp4toannexb).
    ret = av_interleaved_write_frame(ofmt_ctx, &amp;outpkt);

    assert(0 &lt;= ret);
    }

    Our questions :
    1. What is the meaning of the "-22" error from av_bitstream_filter_filter() ?

    1. Where can we get full FFMPEG error code description list ?