Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (102)

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (6828)

  • avcodec/dvdsubdec : fix incorrect yellow appearance of dvd subtitles

    4 janvier 2022, par softworkz
    avcodec/dvdsubdec : fix incorrect yellow appearance of dvd subtitles
    

    The guess_palette() implementation is questionable in itself
    as its results don't match those from other DVD subtitle decoders.

    This commit starts cleanup by fixing an obvious bug which has made
    certain DVD subs appear yellow instead of white or grey for more than
    10 years..

    Signed-off-by : softworkz <softworkz@hotmail.com>
    Signed-off-by : rcombs <rcombs@rcombs.me>

    • [DH] libavcodec/dvdsubdec.c
  • lavc/mpeg* : drop the XvMC hwaccel code

    1er février 2022, par Anton Khirnov
    lavc/mpeg* : drop the XvMC hwaccel code
    

    XvMC was last relevant over 10 years ago, if ever. There is no reason to
    use it today.

    • [DH] Changelog
    • [DH] MAINTAINERS
    • [DH] configure
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/avcodec.h
    • [DH] libavcodec/error_resilience.c
    • [DH] libavcodec/hwaccels.h
    • [DH] libavcodec/hwconfig.h
    • [DH] libavcodec/mpeg12dec.c
    • [DH] libavcodec/mpegvideo.c
    • [DH] libavcodec/mpegvideo.h
    • [DH] libavcodec/mpegvideo_xvmc.c
    • [DH] libavcodec/version.h
    • [DH] libavcodec/x86/blockdsp_init.c
    • [DH] libavcodec/xvmc_internal.h
  • Why doesn't FFmpeg work when using yt-dlp in python script ?

    11 mai 2022, par spelle

    I'm trying to download a video using yt-dlp in python.

    &#xA;

    ydl_opts = {&#x27;format&#x27;: &#x27;bv&#x2B;ba/b&#x27;}&#xA;with YoutubeDL(ydl_opts) as ydl:&#xA;     ydl.download(&#x27;https://www.reddit.com/r/cats/comments/re37dn/weve_been_feeding_this_stray_for_several_years/&#x27;)&#xA;

    &#xA;

    But I'm reaching an FFmpeg error in the log

    &#xA;

    [generic] 1o8t9ollwx481: Requesting header&#xA;[redirect] Following redirect to https://www.reddit.com/r/cats/comments/re37dn/weve_been_feeding_this_stray_for_several_years/&#xA;[Reddit] re37dn: Downloading JSON metadata&#xA;[Reddit] re37dn: Downloading m3u8 information&#xA;[Reddit] re37dn: Downloading MPD manifest&#xA;[info] 1o8t9ollwx481: Downloading 1 format(s): dash-video_4419291&#x2B;dash-audio_0_133951&#xA;WARNING: You have requested merging of multiple formats but ffmpeg is not installed. The formats won&#x27;t be merged.&#xA;[download] Destination: We’ve been feeding this stray for several years, but she’s lost a lot of weight and I don’t think she would last outside for another winter, so I brought her in. [1o8t9ollwx481].fdash-video_4419291.mp4&#xA;[download] 100% of 5.18MiB in 00:00               &#xA;[download] Destination: We’ve been feeding this stray for several years, but she’s lost a lot of weight and I don’t think she would last outside for another winter, so I brought her in. [1o8t9ollwx481].fdash-audio_0_133951.m4a&#xA;[download] 100% of 161.32KiB in 00:00&#xA;

    &#xA;

    FFmpeg is installed through pip and added in PATH.

    &#xA;