Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (37)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (8970)

  • How to employ DXVA2 with ffmpeg to decode and get frame

    23 juin 2016, par bellekci

    I have searched for a simple example about how to decode H264 stream with hardware acceleration using ffmpeg in Windows but I could not find any.
    I know that I should employ dxva2 with ffmpeg to have hardware acceleration.

    I can decode H264 with ffmpeg on CPU, then convert NV12 format to RGBA and save frames as bmp files, thanks to example project provided in post.

    I have followed what is provided in the following post to get help about dxva2 : post

    I believe I can successfully decode with dxva2 ; however, when I want to get the decoded frame and convert it to RGBA format and save it as bmp file, I get an error about source pointers.

    I decode and retrieve frame as following :

    int videoFrameBytes = avcodec_decode_video2(pCodecCtx_hwaccel, pFrameYuv, &got_picture_ptr, avpkt);

    if (got_picture_ptr==1)
    {
       if(dxva2_retrieve_data_call(pCodecCtx_hwaccel, pFrameYuv) == 0)
       {
           fprintf(stderr, "Got frame successfully\n");
           result = true;
       }
    }

    and feed the output frame to :

    sws_scale(pImgConvertCtx, pFrameYuv->data, pFrameYuv->linesize, 0, height, frame->data, frame->linesize);  

    I get this error :

    [swscaler @ 030c5c20] bad src image pointers

    Obviously something is wrong with the pFrameYuv->data but I do not know what.

    How can we convert NV12 frame decoded with DXVA2 to RGBA with sws_scale ?

  • HEIC/HEIF to PNG using NVIDIA hevc_cuvid [closed]

    26 septembre 2024, par Holy_diver

    OS : Ubuntu

    


    I want to convert heic/heif to png using GPU(not software decoding), mostly to avoid patent issues.
While hevc_cuvid + ffmpeg works for h265 video. Since heic/heif are on the same platform hevc, How to convert them to png using "hardware decoding"

    


  • What would be the best strategy to take a RTP stream and send it to an RTMP server ?

    27 novembre 2014, par matiasinsaurralde

    I’m receiving a RTP/UDP from a hardware encoder, I have tried ffmpeg, so it takes this input and outputs the stream as FLV (it’s being sent to NGINX, nginx-rtmp-module). However I’m not able to play the stream smoothly once it’s received by nginx, some frames are broken or lost, etc.

    I think that my CPU is too slow for this format change (FLV) and/or ffmpeg is missing a lot of RTP packets. Any ideas ?