Recherche avancée

Médias (91)

Autres articles (67)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (6046)

  • avutil : add 10-bit planar RGB with alpha

    10 juin 2016, par Paul B Mahol
    avutil : add 10-bit planar RGB with alpha
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavutil/pixdesc.c
    • [DH] libavutil/pixfmt.h
  • Adaptive video encoding with alpha channel

    14 septembre 2020, par Peter Bartha

    I've created a WebM media file with transparent background in Adobe After Effects. Due to Widevine specs, I have to encode this file to an adaptive format for playing.

    &#xA;

    With the following command I've successfully created a webm file with DASH :

    &#xA;

    ffmpeg -i example.webm -c:v libvpx-vp9 -s 200x113 -b:v 250k -keyint_min 150 -g 150 -tile-columns 4 -frame-parallel 1 -an -f webm -dash 1 adaptive.webm&#xA;

    &#xA;

    Unfortunately, the resulting video has lost the alpha channel completely.

    &#xA;

    Is it possible to encode a video to an adaptive format without losing the alpha channel ?

    &#xA;

  • Why the bitrate shown during processing differs so much from the final bitrate after processing using ffmpeg ?

    28 juillet 2016, par rpgmaker

    Using ffmpeg, why the bitrate shown during processing differs so much from the final bitrate after processing ?

    This command on a 1080p source :

    ffmpeg -i "$name" -i "$subname" -map 0 -map 1 -vf scale=-1:720 -c:v libx264 -preset veryslow -crf 21 -c:a aac -b:a 256k -c:s:0 srt -disposition:s:0 default -metadata:s:s:0 language=eng -metadata:s:v:0 title="$title" "$new"

    Shows this output :
    enter image description here

    Which essentially averages 1300-1400 kBit/s. But when I calculate the bitrate of the resulting video using mkvinfo -t the bitrate shown sits at 970-1000 kBit/s and that’s not even close to averaging the 1300 kBit/s shown throughout processing. What is causing the disparity ?