Recherche avancée

Médias (91)

Autres articles (66)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (12604)

  • FFMpeg SDR and HDR side-by-side video encoding

    21 septembre 2023, par Famro Fexl

    I am attempting to create a side-by-side video with FFMpeg using the hstack filter.

    


    The SDR video is formatted as "AVC 8-bit YUV420p BT709 Gamma 2.4" and the HDR video is formatted as "HEVC 10-bit YUV420p10le BT2020 SMPTE2084 (with HDR10 metadata)".

    


    In order for the gamma and color space to match, I tried to convert the SDR video to an HDR format using filtering.

    


    Basically, I attempted to process the Rec.709 gamma 2.4 SDR content to Rec.2020 SMPTE2084 content so it could be combined and displayed in the same video. I'm not sure if the input pixel format mattered, at it appeared to be automatically transformed into the output pixel format. From everything I know, this should be theoretically possible.

    


    Here is my FFMpeg command for converting the SDR video into HDR :
ffmpeg -i input.mkv -filter_complex "colormatrix=bt709:bt2020" -color_primaries bt2020 -color_trc smpte2084 -c:v libx265 out.mkv

    


    The colorspace filter always returned the error [Parsed Colorspace_0 @ addr] Unsupported input primaries 2 (unknown), when using the filter_complex `colorspace=all=bt2020", so I was never able to use it.

    


    The HDR result had over-saturated reds in the color space and it was too dim in the gamma. I tried every gamma option available, but none of them matched the original SDR content.`

    


  • avcodec/lpc : Avoid floating point division by 0

    28 mai 2021, par Michael Niedermayer
    avcodec/lpc : Avoid floating point division by 0
    

    Fixes : Ticket7996
    Fixes : CVE-2020-20445

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/lpc.c
    • [DH] libavcodec/lpc.h
  • Pydub The system can not find the file specified

    11 janvier 2021, par Madar

    So here is my code :

    &#xA;

    from pydub import AudioSegment&#xA;sound1 = AudioSegment.from_mp3("sound_0.mp3")&#xA;sound2 = AudioSegment.from_mp3("sound_1.mp3")&#xA;&#xA;sound = sound1 &#x2B; sound2&#xA;sound.export("test.mp3",format="mp3")&#xA;

    &#xA;

    Problem :&#xA;I got the error message : WindowsError : [Error 2] The system can not find the file specified

    &#xA;

    System configuration&#xA;Python version : 3.8&#xA;Pydub version : I just installed it&#xA;ffmpeg or avlib ? : ffmpeg&#xA;ffmpeg/avlib version : 2020-12-15-git-32586a42da-full_build-www.gyan.dev

    &#xA;

    What did I try ?&#xA;So, I found some things to do on a Stackoverflow subject,&#xA;I tried to add this

    &#xA;

    pydub.AudioSegment.ffmpeg = "way//to//ffmpeg.exe"&#xA;

    &#xA;

    But it doesn't worked, then this

    &#xA;

    AudioSegment.converter = "way//to//ffmpeg.exe"&#xA;

    &#xA;

    Still doesn't work, so, because I'm on spyder with anaconda, I tried this on the anaconda prompt

    &#xA;

    conda install -c conda-forge ffmpeg&#xA;

    &#xA;

    I even tried to put ffmpeg.exe,ffplay.exe in the current working directory but still doesn't worked..

    &#xA;

    So I'm desperately here for some help, thanks in advance

    &#xA;