
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (43)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (5581)
-
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.
-
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]) -
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 !