
Recherche avancée
Autres articles (75)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette 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, parLe 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, parMediaspip 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 NiedermayerMerge commit ’0670acc4f1c4ceb16968818a654e07a3f550a8c9’
* commit ’0670acc4f1c4ceb16968818a654e07a3f550a8c9’ :
dca_parser : Extend DTS core sync word and fix existing checkConflicts :
libavcodec/dca_parser.cSee : e80b2b9c81716a5d9f559c04cfe69d76b04e4cd3
Merged-by : Michael Niedermayer <michaelni@gmx.at> -
How to (visually) losslessly compress a video with GPU acceleration in ffmpeg ?
4 juin 2022, par Tizian HeckmannI 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 :


Preset 18 is called "best quality" when looking at ffmpeg -h encoder=hevc_nvenc

ffmpeg -i input.mp4 -c:v hevc_nvenc -preset 18 compressed.mp4

Also :

ffmpeg -i input.mp4 -c:v h264_nvenc -preset 18 compressed.mp4

Unfortunately, the preset lossless is deprecated. When trying

ffmpeg -i input.mp4 -c:v h264_nvenc -preset lossless compressed.mp4

the output file just grows enormous.

Any help is appreciated.

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.

-
How to bold a font in ffmpeg ?
28 février 2023, par Peter.kI 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 :


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



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 ? Whyffmpeg
doesn't make it ? Does these programs use something else than Windows show in the Font catalog ?