Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (110)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

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

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

  • FFMPEG Incorrect File Output Path

    3 avril 2016, par Benny Chen

    I’am working in windows 7 32bit and trying to stream file with ffmpeg, but the output file keep going on wrong location.

    If I use this code :

    ffmpeg -i input -c:v copy -c:a copy output.mp4

    The output file will be saved in /Users/username

    If I use absolute path :

    ffmpeg -i input -c:v copy -c:a copy c:/output.mp4

    or

    ffmpeg -i input -c:v copy -c:a copy "c:/output.mp4"

    It put the file in /Users/username/AppData/Local/VirtualStore

    So..it is weird and what the heck is the "VirtualStore" folder still a mystery....

    My question is simple, how to put output file in desired path location. Thanks.

  • avcodec/libjxlenc : support negative linesizes

    30 janvier 2024, par Leo Izen
    avcodec/libjxlenc : support negative linesizes
    

    libjxl doesn't support negative strides, but JPEG XL has an orientation
    flag inside the codestream. We can use this to work around the library
    limitation, by taking the absolute value of the negative row stride,
    sending the image up-side-down, and telling the library that the image
    has a vertical-flip orientation.

    Signed-off-by : Leo Izen <leo.izen@gmail.com>

    • [DH] libavcodec/libjxlenc.c
  • avcodec/h263 : Fix global-buffer-overflow with noout flag2 set

    21 novembre 2021, par Andreas Rheinhardt
    avcodec/h263 : Fix global-buffer-overflow with noout flag2 set
    

    h263_get_motion_length() forgot to take an absolute value ;
    as a consequence, a negative index was used to access an array.
    This leads to potential crashes, but mostly it just accesses what
    is to the left of ff_mvtab (unless one uses ASAN), thereby defeating
    the purpose of the AV_CODEC_FLAG2_NO_OUTPUT because the sizes of
    the returned packets differ from the sizes the encoder would actually
    have produced.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/h263.h