Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (16)

  • 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

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (4854)

  • How get video output on hardware acceleration with VAAPI on FFMPEG ?

    14 mai 2019, par HellBlood

    For my project I have to use hardware acceleration with VAAPI using FFMPEG, the problem is that with VAAPI we have to use the "vaapi_retrieve_data" function to download the GPU data. This is time consuming and I would like to be able to directly view the video via the GPU. The program is in C language and aims to decode videos. Do you have a solution to recover the output data without going through the function ?
    Thank you in advance :)
    Have a good day

  • How to decode a H.264 frame on iOS by hardware decoding ?

    23 septembre 2015, par ChihHao

    I have been used ffmpeg to decode every single frame that I received from my ip cam. The brief code looks like this :

    -(void) decodeFrame:(unsigned char *)frameData frameSize:(int)frameSize{
      AVFrame frame;
      AVPicture picture;
      AVPacket pkt;
      AVCodecContext *context;
      pkt.data = frameData;
      pat.size = frameSize;
      avcodec_get_frame_defaults(&frame);
      avpicture_alloc(&picture, PIX_FMT_RGB24, targetWidth, targetHeight);
      avcodec_decode_video2(&context, &frame, &got_picture, &pkt);
    }

    The code woks fine, but it’s software decoding. I want to enhance the decoding performance by hardware decoding. After lots of research, I know it may be achieved by AVFoundation framework.
    The AVAssetReader class may help, but I can’t figure out what’s the next.Could anyone points out the following steps for me ? Any help would be appreciated.

  • avfilter/vf_tpad : accept hardware frames in clone-only mode

    22 mai 2023, par Marvin Scholz
    avfilter/vf_tpad : accept hardware frames in clone-only mode
    

    When no drawing is to be performed, tpad can work fine with
    hardware frames, so advertise this in the query_formats
    callback and ensure the drawing context is never initialised
    when just cloning frames.

    Reviewed-by : Thilo Borgmann <thilo.borgmann@mail.de>
    Reviewed-by : Niklas Haas <git@haasn.dev>

    • [DH] libavfilter/vf_tpad.c