Recherche avancée

Médias (91)

Autres articles (75)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (7815)

  • Merge commit ’0670acc4f1c4ceb16968818a654e07a3f550a8c9’

    12 mai 2015, par Michael Niedermayer
    Merge commit ’0670acc4f1c4ceb16968818a654e07a3f550a8c9’
    

    * commit ’0670acc4f1c4ceb16968818a654e07a3f550a8c9’ :
    dca_parser : Extend DTS core sync word and fix existing check

    Conflicts :
    libavcodec/dca_parser.c

    See : e80b2b9c81716a5d9f559c04cfe69d76b04e4cd3
    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/dca_parser.c
  • How to (visually) losslessly compress a video with GPU acceleration in ffmpeg ?

    4 juin 2022, par Tizian Heckmann

    I am trying to compress a video in ffmpeg with GPU acceleration, but the result always looks bad. This is what I have tried and none of this has worked for me :

    &#xA;

    Preset 18 is called "best quality" when looking at ffmpeg -h encoder=hevc_nvenc
    &#xA;ffmpeg -i input.mp4 -c:v hevc_nvenc -preset 18 compressed.mp4

    &#xA;

    Also :
    &#xA;ffmpeg -i input.mp4 -c:v h264_nvenc -preset 18 compressed.mp4

    &#xA;

    Unfortunately, the preset lossless is deprecated. When trying
    &#xA;ffmpeg -i input.mp4 -c:v h264_nvenc -preset lossless compressed.mp4
    &#xA;the output file just grows enormous.

    &#xA;

    Any help is appreciated.
    &#xA;Edit : Since my question is being received as inappropriate by the community, I would like to know why. This was my first question, any advice on how to word it better or tell me why it just does not fit here would be appreciated. Thank you.

    &#xA;

  • How to bold a font in ffmpeg ?

    28 février 2023, par Peter.k

    I have an issue which I don't fully understand. I use font to merge subtitles in video which is installed in my laptop and everything works fine with this code :

    &#xA;

    -vf "subtitles=tt101.srt:force_style=&#x27;FontName=Lucida Console,Style=Bold,FontSize=15,PrimaryColour=&amp;H00111188,OutlineColour=&amp;HFFFFFFFF,BorderStyle=4,BackColour=&amp;H44FFFFFF,Outline=5,Shadow=0,MarginV=10&#x27;"&#xA;

    &#xA;

    But later I found this font isn't really bold but regular. I checked in my system and indeed, there's no bold version installed, so this Style=Bold fragment is ignored (as I think it is). But how the hell, while using this very font in some other programs like Word, Excel, Photoshop, PotPlayer, etc, I am able to bold this font anyway ? Why ffmpeg doesn't make it ? Does these programs use something else than Windows show in the Font catalog ?

    &#xA;