
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (27)
-
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 -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (7282)
-
Why Matomo is a serious alternative to Google Analytics 360
12 décembre 2018, par Jake Thornton — Marketing -
avfilter/vsrc_gradients : make rotation always continuous if speed changes
3 décembre 2023, par Paul B Mahol -
How to Speed Up Two-Pass Encoding ?
27 juillet 2017, par Matt McManisI have a
Video
file withAudio
,Subtitles
,Chapters
, andMetadata
.I removed
Audio
andSubtitles
with-an -sn
from-pass 1
and then inlclude them in-pass 2
.What about for
Chapters
andMetadata
? And how do you applyTurbo
to-pass 1
?Is there anything more that can be done ?
I have a script that will convert
mpg
tomp4
. I’ve sorted it with linebreaks so it’s easier to read.Pass 1
"C:\Videos\example.mpg"
-vcodec libx264
-preset medium -b:v 2500K -pix_fmt yuv420p -qcomp 0.8
-vf scale="trunc(iw/2)*2:trunc(ih/2)*2"
-pass 1
-map 0:v:0? -an -sn
-threads 8
"C:\Videos\example.mp4"Pass 2
ffmpeg -y -i
"C:\Videos\example.mpg"
-vcodec libx264
-preset medium -b:v 2500K -pix_fmt yuv420p -qcomp 0.8
-vf scale="trunc(iw/2)*2:trunc(ih/2)*2"
-pass 2
-acodec aac
-b:a 320k
-af volume=1.2
-map 0:v:0? -map 0:a:0? -map 0:s? -c:s copy -map_metadata 0
-threads 8
"C:\Videos\example.mp4"