Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (71)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (11027)

  • How to have ffmpeg calculate the width after modifying by set height ratio ?

    29 mai 2021, par Nova

    After finding the resolution was the source of all my webm to MP4 codec conversion errors on my Android. I came across another problem. To break down my question :

    



    What all MP4 resolutions are supported on most devices ? I know they go by p from certain height value for them to work. 720p / ?X720 for example.

    



    Is there an easier way to calculate the width based from the height change while keeping the ratio ?

    



    ffmpeg -i old.webm -t 00:00:03 -s 320x240 new.mp4


    



    I currently use the -s setting perimeter from my testing example.

    


  • x86 : Don't hardcode the height to 8 in sad8_xy2_mmx

    13 juillet 2022, par Martin Storsjö
    x86 : Don't hardcode the height to 8 in sad8_xy2_mmx
    

    The height is hardcoded in some of the me_cmp functions, but not
    in all of them. But in the case of all other functions, it's hardcoded
    in the same place in SIMD functions as in the C reference functions,
    while this one function differs from the behaviour of the C code.

    (Before 542765ce3eccbca587d54262a512cbdb1407230d, there were a
    couple other sad8_*_mmx functions with similar hardcoded height.)

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavcodec/x86/me_cmp_init.c
  • ffprobe : Initialize coded_width/height

    19 janvier 2018, par Zhong Li
    ffprobe : Initialize coded_width/height
    

    coded_width/height are unnitialized and will be overwritten by
    dec_ctx->width/height in avcodec_open2()

    This fixes tiket #6958.

    Signed-off-by : Zhong Li <zhong.li@intel.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] fftools/ffprobe.c