Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (72)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (10922)

  • How to get 4 different quality from ffmpeg ?

    27 juin 2021, par Mamazi-Avia

    I have used ffmpeg to convert mp4 videos to m3u8, now I have seen a new structure due to my new player on the website. An online converter creates 4 different folders (hd, hq, lq, mq), an enc.key (like the image below), and of course a playlist file. how can I get this exact configuration from running ffmpeg on my system ?
thank you in advance :)

    


    folders configuration

    


  • Can I know the exact timestamps of a ffmpeg trim ?

    17 juin 2021, par Vincent Garcia

    I want to trim very long video (e.g. >20h long) and I use ffmpeg this way :

    


    ffmpeg -ss 7200 -i /path/to/my/video.mp4 -t 600 -codec copy out.mp4


    


    This is supposed to provide a trim of 10 minutes starting 2 hours in the input video.
As I read online, by placing -ss before the -i option, I'll get an approximate trim.

    


    Is there a way to know precisely when the trim actually started ?

    


    Thank you.

    


  • Debayer video with ffmpeg

    26 septembre 2016, par Andrew Spence

    Looking to debayer video with ffmpeg. I can’t find a way to do it without piping raw video between two instances of ffmpeg, because I can’t change the pixel format of my input video "in place" from gray to bayer_gbrg8. So, this command works :

    ffmpeg -i fr_losslessmovie_png_codec.avi -f image2pipe -pix_fmt gray \
    -vcodec rawvideo - | ffmpeg -r 25 -f rawvideo -s 2048x700 \
    -pix_fmt bayer_gbrg8 -i pipe:0 -y -pix_fmt yuv420p -b:v 25000k \
    fr_debayer_compressed.mp4

    I would have given the source movie this pixel format, but didn’t realize ffmpeg suported bayered pixel formatting.

    Didn’t see this exact question online, and have not found a way to change the pixel format with video filters etc. without ffmpeg thinking i’m trying to convert the data. I just want to change the pixel format that the already existing gray data has been assigned.

    Thanks in advance !
    Andrew