
Recherche avancée
Autres articles (58)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (7253)
-
FFMPEG Subtitle Burning - Make Them Look Like Youtube Captions
21 septembre 2016, par SpencerI want to burn subtitles into videos and make them look as close to the YouTube captions as possible. I’ve gotten pretty close with the following :
ffmpeg -i VIDEOFILE.mkv -vf subtitles="f=SUBSFILE.vtt:force_style='FontName=Arial,FontSize=14,OutlineColour=&H55000000,BorderStyle=3,WrapStyle=2'" -y ENCODED-WITH-SUBS.mp4
1. The major thing I want to fix in the above command is that when there are multiple lines, the backgrounds overlap.
If you look at captions on YouTube there is always a nice small amount of space between the backgrounds.
2. The second thing I’d like to do is make the corners of the backgrounds rounded if possible.
I’ve looked through the documentation but I’m hoping I missed something. Thanks for any suggestions !
-
add thumbnail and metadata to mp3 file on converting using youtube-dl by python script
18 septembre 2015, par arun palI want to add metadata as well as thumbnail image to my mp3 file. How to do that , can anybody help me ?
from __future__ import unicode_literals
import youtube_dl
n="cwHzy7ftLyI"
ydl_opts = {
'format': 'bestaudio/best',
'verbose':True,
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',
'preferredquality': '192',
}],
'addmetadata':True,
'embedthumbnail':True,
'writethumbnail':True,
}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.add_default_info_extractors()
ydl.download(['http://www.youtube.com/watch?v='+n]) -
Youtube DASH stream through to iOS format
29 juillet 2014, par viperfxI have a stream link of a DASH codec format audio file using youtube-dl. It plays fine in the browser but on iOS the DASH codec is not supported. I am wondering how I can use ffmpeg to transcode the HTTPS stream live and then resend it out an AAC encoded m4a file or something that the iOS SDK supports through streaming - mp3 also works. I think using something such as nginx as the middleware inbetween would be a good idea. I can use python app to receive the request /videoID, it would grab the stream link and transcode it live feed it to nginx which would serve the correctly transcoded format back to the iOS app.
Does anyone have any suggestions/ideas on how to achieve this ? I am stuck on the details on the ffmpeg bit.