Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (28)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (5017)

  • swresample/resample : move resample_free() higher in the file

    21 mars 2017, par James Almer
    swresample/resample : move resample_free() higher in the file
    

    Also make it more readable while at it.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libswresample/resample.c
  • ffmpeg generate higher quality images for MJPEG encoding

    17 décembre 2019, par Arun

    I have a bunch of mov / H.264 files, that I’d like to encode into mov/MJPEG. However I’m getting very low quality output. Here’s what I tried :

    ffmpeg -i a.mov -an -crf 11 -preset slower -pix_fmt yuv420p -vcodec mjpeg -f mov -y b.mov

    For H.264 encoding the -crf and -preset flags generate higher quality. But that doesn’t seem to work for MJPEG.

  • imc : reject files with unfathomable sampling rates

    21 août 2014, par Christophe Gisquet
    imc : reject files with unfathomable sampling rates
    

    With huge sampling rates, the table derivation method does not converge fast
    enough. While fixing it using e.g. Newton-Rhapson-like methods (the curve is
    nicely convex) is possible, it is much simpler to reject these cases.

    The value of 96000 was arbitrarily chosen as a realistic value, though
    1000000 would still work and converge.

    Fixes ticket #3868.

    Suggested-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/imc.c