
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (106)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)
Sur d’autres sites (12864)
-
ffmpeg using downloaded google font
10 juin 2021, par ekatoI am using the following code to hardsub the video and it works perfectly.


ffmpeg -i "pure.mkv" -lavfi "subtitles=pure.mkv:force_style='Alignment=10,Fontsize=18'" -c:a copy "output.mkv"



I would like to use a google font link, I am using the following code, but the subtitle font is still the original one.


ffmpeg -i "pure.mkv" -vf "subtitles=pure.mkv:force_style='Alignment=10,Fontsize=18,fontfile="c\:\\Users\\...\\Bfont.ttf"'" -c:a copy "output.mkv"



I have totally no idea what could be the problem.


-
Is FFmpeg a part of recent APIs ?
15 octobre 2015, par Léon PelletierWhen using
MediaCodec
andMediaMuxer
, I’ve noticed some mentions offfmpeg
in the logs. Does it means that a part ofFFmpeg
has been integrated intoAndroid
Framework ? Can I call it ? -
FFMPEG slow / fast motion part a video anywhere
27 juin 2017, par Muhammad UmarI am trying to cut a part of Video
Here is the code i have tried
Let’s say i have 6 seconds video and i want to slow down 2:5 seconds video that 3 second videoFirst approach after searching is, Cut the video, then apply slow filter then concat it with original video. But this is a mid part not entire video. How can i modify below code
ffmpeg -i Soon.mp4 -filter_complex
[0:v]trim=2:5,setpts=PTS-STARTPTS[v1] ;[v1]setpts=0.5PTS[v1] ;[0:a]atempo=2[a]
concat=n=1:v=1:a=1 -map "[v]" -map "[a] -preset superfast -profile:v
baseline output.mp4