
Recherche avancée
Autres articles (49)
-
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 -
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
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 (...)
Sur d’autres sites (7649)
-
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" -
avfilter/vsrc_gradients : allow zero speed
26 novembre 2023, par Paul B Mahol -
Fuse video with various audios ; adjust speed and offset [closed]
16 octobre 2023, par 李志博I have a muted video and multiple audio files that need to be merged. Each audio file represents a different time segment of the video. While merging, I need to specify the position of each audio file in the video, as well as their playback speed and corresponding time segment in the video. The final output should be a complete video with merged audio. How can I achieve this ?