Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (21)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (3154)

  • Update UploadHandler.php

    22 juillet 2017, par jbostoen
    Update UploadHandler.php
    

    imagick_create_scaled_image :
    - jpeg_quality was ignored if it was the only parameter set (similar to previous patch for ’strip’ exif information)
    - instead of a negative condition, turned it around : if dimensions are within limits and no changes required (strip exif, jpeg quality, orientation), then return original image
    - added comment warning about the implications of setting options on the ’original’ image ( version ’’ ). All other versions inherit those settings.

  • FFmpeg : how to make video out slides and audio

    7 juillet 2014, par Muhammad Umer

    So i have several images some png and some jpgs. And i have mp3 audio. I want to make a video file don’t care what format.

    So i want either :

    A video made up of xyz size meaning images are centered and cropped if they go beyond dimensions coupled with audio in mp3 format..

    I have tried copying and pasting things and even modifying them after reading documents but in the end i got a blank video with audio and huge file that took forever to complete.

    I have windows 7.

  • libavcodec/vp8dec : fix the multi-thread HWAccel decode error

    11 juin 2019, par Shaofei Wang
    libavcodec/vp8dec : fix the multi-thread HWAccel decode error
    

    Fix the issue : https://github.com/intel/media-driver/issues/317

    the root cause is update_dimensions will be called multple times
    when decoder thread number is not only 1, but update_dimensions
    call get_pixel_format in each decode thread will trigger the
    hwaccel_uninit/hwaccel_init more than once. But only one hwaccel
    should be shared with all decode threads.
    in current context,
    there are 3 situations in the update_dimensions() :
    1. First time calling. No matter single thread or multithread,
    get_pixel_format() should be called after dimensions were
    set ;
    2. Dimention changed at the runtime. Dimention need to be
    updated when macroblocks_base is already allocated,
    get_pixel_format() should be called to recreate new frames
    according to updated dimension ;
    3. Multithread first time calling. After decoder init, the
    other threads will call update_dimensions() at first time
    to allocate macroblocks_base and set dimensions.
    But get_pixel_format() is shouldn't be called due to low
    level frames and context are already created.

    In this fix, we only call update_dimensions as need.

    Signed-off-by : Wang, Shaofei <shaofei.wang@intel.com>
    Reviewed-by : Jun, Zhao <jun.zhao@intel.com>
    Reviewed-by : Haihao Xiang <haihao.xiang@intel.com>
    Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>

    • [DH] libavcodec/vp8.c