Recherche avancée

Médias (91)

Autres articles (62)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (6734)

  • cuda invalid resource handle when using h264_cuvid decoder in my C program [closed]

    29 juillet 2021, par ChrisFisher

    I try to use GPU acceleration in my ffmpeg decode program, and I check the codecs of ffmpeg by command :ffmpeg -codecs | grep nv, and it shows that I can use h264_cuvid decoder(In fact, I have already used ffmpeg command line to encode and decode a test video with hardware acceleration and it turned out everything was all fine), but when I use the decoder in my program

    &#xA;

    AVCodec *pCodec = avcodec_find_decoder_by_name("h264_cuvid");

    &#xA;

    here is part of my program

    &#xA;

    void FFMPEGCodec::initDecoder()&#xA;{&#xA;    AVCodec *pCodec = avcodec_find_decoder(AV_CODEC_ID_H264);&#xA;    if (!pCodec) {&#xA;        LOG("Codec decoder not found\n");&#xA;        exit(1);&#xA;    }&#xA;&#xA;    pCodecCtx = avcodec_alloc_context3(pCodec);&#xA;    if (!pCodecCtx) {&#xA;        LOG("Could not allocate video codec context\n");&#xA;        exit(1);&#xA;    }&#xA;&#xA;    pCodecCtx->width = gConfig->totalWidth;&#xA;    pCodecCtx->height = gConfig->totalHeight;&#xA;    pCodecCtx->has_b_frames = 0;&#xA;&#xA;    if (avcodec_open2(pCodecCtx, pCodec, NULL) &lt; 0) {&#xA;        LOG("Could not open codec\n");&#xA;        exit(1);&#xA;    }&#xA;&#xA;    if(_x264rgb){&#xA;        //used to convert GBRP frame to RGB image.&#xA;        convertCtx = sws_getContext(gConfig->totalWidth, gConfig->totalHeight, AV_PIX_FMT_GBRP, &#xA;        gConfig->totalWidth, gConfig->totalHeight, AV_PIX_FMT_RGB24, SWS_FAST_BILINEAR, NULL, NULL, NULL); &#xA;    } else {&#xA;        //used to convert YUV frame to RGB image.&#xA;        convertCtx = sws_getContext(gConfig->totalWidth, gConfig->totalHeight, AV_PIX_FMT_YUV420P, &#xA;        gConfig->totalWidth, gConfig->totalHeight, AV_PIX_FMT_RGB24, SWS_FAST_BILINEAR, NULL, NULL, NULL); &#xA;    }&#xA;&#xA;    if(convertCtx == NULL){&#xA;        LOG("Failed to get SwsContext\n");&#xA;        exit(1);&#xA;    }&#xA;&#xA;    //when using x264rgb, it&#x27;s actually GBRP frame, &#xA;    //just don&#x27;t want to define another variable&#xA;    yuvFrame = av_frame_alloc();&#xA;    if (!yuvFrame) {&#xA;        LOG("Failed to allocate yuv frame\n");&#xA;        exit(1);&#xA;    }&#xA;&#xA;    rgbFrame = av_frame_alloc();&#xA;    if (!rgbFrame) {&#xA;        LOG("Failed to allocate rgb frame\n");&#xA;        exit(1);&#xA;    }&#xA;&#xA;    rgbFrame->format = AV_PIX_FMT_RGB24;&#xA;    rgbFrame->width  = pCodecCtx->width;&#xA;    rgbFrame->height = pCodecCtx->height;&#xA; &#xA;    int ret = av_image_alloc(rgbFrame->data, rgbFrame->linesize, rgbFrame->width, rgbFrame->height,&#xA;                         AV_PIX_FMT_RGB24, 32);&#xA;    if (ret &lt; 0) {&#xA;        LOG("Failed to allocate raw picture buffer\n");&#xA;        exit(1);&#xA;    }&#xA;}   &#xA;

    &#xA;

    and

    &#xA;

    int FFMPEGCodec::decode(byte* pktData, int pktSize, byte* imgData)&#xA;{&#xA;    int ret = 0, got_packet = 0;&#xA;    AVPacket pkt;&#xA;    av_init_packet(&amp;pkt);&#xA;    pkt.data = pktData;&#xA;    pkt.size = pktSize;&#xA;&#xA;    // decode video frame&#xA;    ret = avcodec_decode_video2(pCodecCtx, yuvFrame, &amp;got_packet, &amp;pkt);&#xA;    if (ret &lt; 0) {&#xA;        LOG("Error decoding frame\n");&#xA;        return -1;&#xA;    }&#xA;&#xA;    sws_scale(convertCtx, yuvFrame->data, yuvFrame->linesize, 0, pCodecCtx->height, rgbFrame->data, rgbFrame->linesize);&#xA;    &#xA;    if (got_packet) {&#xA;        int width = pCodecCtx->width, height = pCodecCtx->height;&#xA;        int fsize = rgbFrame->linesize[0] * rgbFrame->height;&#xA;        int size = 54 &#x2B; fsize;&#xA;&#xA;        byte bmp_file_header[14] = { &#x27;B&#x27;, &#x27;M&#x27;, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, };&#xA;        byte bmp_info_header[40] = { 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 24, 0, };&#xA;        byte bmp_pad[3] = { 0, 0, 0 };&#xA;&#xA;        bmp_file_header[2] = (unsigned char)size;&#xA;        bmp_file_header[3] = (unsigned char)(size >> 8);&#xA;        bmp_file_header[4] = (unsigned char)(size >> 16);&#xA;        bmp_file_header[5] = (unsigned char)(size >> 24);&#xA;&#xA;        bmp_info_header[4] = (unsigned char)(width);&#xA;        bmp_info_header[5] = (unsigned char)(width >> 8);&#xA;        bmp_info_header[6] = (unsigned char)(width >> 16);&#xA;        bmp_info_header[7] = (unsigned char)(width >> 24);&#xA;        bmp_info_header[8] = (unsigned char)(height);&#xA;        bmp_info_header[9] = (unsigned char)(height >> 8);&#xA;        bmp_info_header[10] = (unsigned char)(height >> 16);&#xA;        bmp_info_header[11] = (unsigned char)(height >> 24);&#xA;&#xA;        memcpy(imgData, bmp_file_header, 14);&#xA;        memcpy(imgData &#x2B; 14, bmp_info_header, 40);&#xA;        memcpy(imgData &#x2B; 54, rgbFrame->data[0], fsize);&#xA;        ret = size;&#xA;    }&#xA;    av_free_packet(&amp;pkt);&#xA;&#xA;    return ret;&#xA;}&#xA;&#xA;

    &#xA;

    after compiling, I ran the program, and the decoder throw me a error :

    &#xA;

    ctx->cvdl->cuvidDecodePicture(ctx->cudecoder, picparams) failed -> CUDA_ERROR_INVALID_HANDLE: invalid resource handle&#xA;when calling the function avcodec_decode_video2

    &#xA;

    I don't know why this error occurred, by the way, I use a GTX1060 6G(Sorry I'm not a native English speaker)

    &#xA;

  • doc : improve IMF demuxer documentation

    5 janvier 2023, par Pierre-Anthony Lemieux
    doc : improve IMF demuxer documentation
    

    Signed-off-by : Pierre-Anthony Lemieux <pal@palemieux.com>

    • [DH] doc/demuxers.texi
  • avcodec/bsf : improve the doxy for av_bsf_flush()

    10 août 2020, par James Almer
    avcodec/bsf : improve the doxy for av_bsf_flush()
    

    Mention an example scenario where the function should be used.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/bsf.h