Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (30)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

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

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

  • avfilter/vf_scale : fix input declaration

    3 mai 2024, par Niklas Haas
    avfilter/vf_scale : fix input declaration
    

    This filter needs to be marked as having only one input by default, with
    AVFILTER_FLAG_DYNAMIC_INPUTS allowing the extra input to be added at
    init() time.

    Fixes : bb8044581366fe286e16b14515d873979133dbda

    • [DH] libavfilter/vf_scale.c
  • swscale : Consistently order input YUV pixel formats

    25 septembre 2016, par Vittorio Giovara
    swscale : Consistently order input YUV pixel formats
    

    Follow a 420, 422, 444 order instead of a random one.
    This simplifies double-checking additions of new formats.

    Signed-off-by : Diego Biurrun <diego@biurrun.de>

    • [DBH] libswscale/input.c
  • ffmpeg : How to speed up (and keep only) a specified portion of an input video

    17 avril 2020, par shrimpwidget

    In my input video is a 48 second range that I wish to speed up. I wish to save only that sped up portion to a new video.

    &#xA;&#xA;

    Solution :

    &#xA;&#xA;

    ffmpeg -y -ss 00:00:03 -t 00:00:48 -i input.mp4 -an -crf 20 -pix_fmt yuv420p -vf "scale=1080:-1, setpts=PTS/10.0" "output.mp4"&#xA;

    &#xA;