Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (68)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (10163)

  • checkasm/vf_blend : use the correct depth parameters to initialize the blend modes

    12 juillet 2020, par James Almer
    checkasm/vf_blend : use the correct depth parameters to initialize the blend modes
    

    This effectively enables the tests that until now were just running
    the C version alone.

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

    • [DH] tests/checkasm/vf_blend.c
  • FFMPEG What are the differences of calculating th PSNR metric of the following 3 modes ? And how can I obtain the VMAF score metric using the 1. mode ?

    9 juin 2020, par peter12

    The original video is in 1920x1080 and the coded one in 1080x720 (using a bitrate of 500k). Which are the differences between these 3 modes.

    &#xA;&#xA;

    In addition would it be possible to obtain the VMAF value using the 1 mode.

    &#xA;&#xA;

      &#xA;
    1. Mode
    2. &#xA;

    &#xA;&#xA;

    ffmpeg -i input.mp4 -vf scale=1080:720 -codec:v libx264 -psnr -f mp4 -b:v 500k -pass 1 output.mp4

    &#xA;&#xA;

      &#xA;
    1. Mode
    2. &#xA;

    &#xA;&#xA;

    ffmpeg -i input.mp4 -c:v libx264 -filter:v scale=1080:720 -b:v 500k -pass 1 output.mp4

    &#xA;&#xA;

    ffmpeg -hide_banner -i output.mp4 -y -pix_fmt yuv420p -vsync 0 -s 1920x1080 -sws_flags lanczos output.y4m

    &#xA;&#xA;

    ffmpeg -hide_banner -i output.y4m -i input.mp4 -lavfi libvmaf="psnr=1:ssim=1:log_fmt=json" -f null -

    &#xA;&#xA;

      &#xA;
    1. Mode
    2. &#xA;

    &#xA;&#xA;

    ffmpeg -i input.mp4 -y -vcodec libx264 -filter:v scale=1080:720 -b:v 500k -pass 1 output.mp4

    &#xA;&#xA;

    ffmpeg -i output.mp4 -y -pix_fmt yuv420p -vsync 0 -s 1920x1080 -sws_flags lanczos output.y4m

    &#xA;&#xA;

    ffmpeg -i output.y4m -i input.mp4 -y -filter_complex psnr -f null –

    &#xA;

  • avformat/dashenc : include an availabilityTimeComplete element in all streaming modes

    19 janvier 2020, par James Almer
    avformat/dashenc : include an availabilityTimeComplete element in all streaming modes
    

    It's not exclusive for Low Latency streaming. The muxer will serve partial
    segments regardless of streaming mode.

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

    • [DH] libavformat/dashenc.c