
Recherche avancée
Médias (1)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
Autres articles (31)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (8051)
-
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 ?