Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (17)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (3339)

  • fate/vpx : make webm dash manifest tests depend on the WEBM_DASH_MANIFEST demuxer

    29 août 2014, par Michael Niedermayer
    fate/vpx : make webm dash manifest tests depend on the WEBM_DASH_MANIFEST demuxer
    

    Found-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] tests/fate/vpx.mak
  • avformat/dashdec.c : Download dash content with byte range info

    21 janvier 2018, par Colin NG
    avformat/dashdec.c : Download dash content with byte range info
    
    • [DH] libavformat/dashdec.c
  • Change keyframe interval losslessly to produce mpeg-dash content

    25 mars 2023, par Eeel

    I have a case where i have a mkv file encoded to a 2.5 GB file with x264/CRF settings, in this file group of pictures are not of equal duration (i.e 2,4 or 6 seconds ...).

    &#xA;

    Now i want to create a mpeg-dash version of the file by extracting the video track to mp4 and set the keyframe interval to 2sec losslessly preserving size (minus other audio and subtitle tracks)

    &#xA;

    What i already have that work :

    &#xA;

    Fix keyframe to 2s with x264 :

    &#xA;

    -codec:v libx264 -force_key_frames &#x27;expr:gte(t,n_forced*2)&#x27; -movflags faststart&#xA;

    &#xA;

    But it require also encoding settings that change the quality :

    &#xA;

    -b:v 3500k -maxrate 6000k -bufsize 3500k&#xA;

    &#xA;

    In this case i don't need to change the quality from CRF encoding, just change keyframe interval and set faststart flag.

    &#xA;

    note :&#xA;I have detailed bitrate informations about the file obtained by parsing output of ffprobe : average, min and max bitrate in kb/s.&#xA;Please avoid solution using -crf 0, mpeg-dash files are later crypted using MP4Box that crash with CRF encoded files.

    &#xA;

    How can i do this using ffmpeg ?

    &#xA;

    Edit :

    &#xA;

    Sorry my question is not clear, i'm fine with re-encode, i want to preserve quality as much as possible.

    &#xA;

    Using a little more than source mean bitrate for the -b:v parameter the resulting file size is almost same as source, metric test results are not as good i expect :

    &#xA;

    PSNR 41.03 (expected 44&#x2B;)&#xA;VMAF 76.32 (expected 92&#x2B;)&#xA;

    &#xA;

    Is my bitrate approch good ? Is there anything i can try to improve metric results ?

    &#xA;