Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (37)

  • 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

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

Sur d’autres sites (5989)

  • Show progress of a video conversion with c# (see details please)

    25 février 2015, par ChrisCreateBoss

    I’m using WinForms. I want to show the progress of a video conversion, I’m currently using the NReco.VideoConverter, I’ve tried FFLib.Encoder too, it has an EventHandler named Progress, but I can’t make it work with the progressBar.

    I’ve tried progressBar1.Value += converter.Progress;, also tried using a "percentHandler", and it failed.

    Hope someone can help me. Also, if someone knows about a better video conversion library, please let me know.

    Thnaks in advance

  • lavu/hwcontext_d3d : Cast src pointers calling av_image_copy*().

    18 avril 2019, par Carl Eugen Hoyos
    lavu/hwcontext_d3d : Cast src pointers calling av_image_copy*().
    

    Silences several warnings :
    libavutil/hwcontext_d3d11va.c:413:49 : warning : passing argument 3 of ‘av_image_copy’ from incompatible pointer type
    libavutil/hwcontext_d3d11va.c:425:47 : warning : passing argument 3 of ‘av_image_copy’ from incompatible pointer type
    libavutil/hwcontext_dxva2.c:351:45 : warning : passing argument 3 of ‘av_image_copy’ from incompatible pointer type
    libavutil/hwcontext_dxva2.c:382:52 : warning : passing argument 3 of ‘av_image_copy_uc_from’ from incompatible pointer type

    • [DH] libavutil/hwcontext_d3d11va.c
    • [DH] libavutil/hwcontext_dxva2.c
  • avfilter/vf_signature : Avoid cast from function pointer to void*

    25 août 2020, par Andreas Rheinhardt
    avfilter/vf_signature : Avoid cast from function pointer to void*
    

    The signature filter uses qsort, but its compare function doesn't have
    the signature required of such a function ; therefore it casts the
    function pointer to void. Yet this is wrong :
    C90 only guarantees that one can convert a pointer to any incomplete
    type or object type to void* and back with the result comparing equal
    to the original which makes pointers to void generic pointers to
    incomplete or object type. Yet C90 lacks a generic function pointer
    type.
    C99 additionally guarantees that a pointer to a function of one type may
    be converted to a pointer to a function of another type with the result
    and the original comparing equal when converting back.
    This makes any function pointer type a generic function pointer type.
    Yet even this does not make pointers to void generic function pointers.

    Both GCC and Clang emit warnings for this when in pedantic mode.

    This commit fixes this by modifying the compare function to comply with
    the expected signature.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/vf_signature.c