Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (26)

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

  • 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

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

  • lavu : define FF_MEMORY_POISON and use it

    12 mai 2013, par Stefano Sabatini
    lavu : define FF_MEMORY_POISON and use it
    

    Allow single-place definition of constant used to fill poisoned memory.

    • [DH] libavutil/buffer.c
    • [DH] libavutil/internal.h
    • [DH] libavutil/mem.c
  • cuvid : Add MIT licenced nvcuid headers from Video SDK 7.0

    21 septembre 2016, par Philip Langdale
    cuvid : Add MIT licenced nvcuid headers from Video SDK 7.0
    

    For unknown reasons, the only accurately descriptive version of
    cuviddec.h is in the Video SDK - the one in CUDA 7.5 lacks vp8
    PICPARAMS and the vp9 struct definition is inaccurate. The CUDA 8 RC
    includes an ancient version of this file from many many years go.

    However, the one in the Video SDK is modified to work through a
    dynamic link mechanism which we don’t really want to use, so the
    next change will modify the files to just declare functions in
    the normal way.

    I’ve split the changes so it’s clear to see what changed between
    the original files and ones that work for us.

    • [DH] compat/cuda/cuviddec.h
    • [DH] compat/cuda/nvcuvid.h
  • How to detetc hardware acceleration in ffmpeg

    19 décembre 2020, par Ali Razmkhah

    I am writing c++ program to screen record by ffmpeg 4.3 ! I need to detect hardware acceleration support such as h264_qsv or h264_nvenc without running ffmpeg.exe !

    


    I explored ffmpeg.exe source code and found no results ! some solutions are deprecated or dose not work on 4.3 !
As instance,

    


    avcodec_find_encoder_by_name("h264_qsv")


    


    returns null even it is exist and works properly !