
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (87)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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
Sur d’autres sites (10198)
-
FFMPEG force I-Frame for every DASH segment
5 novembre 2020, par Yury KisliakIs there a way to create with FFmpeg, DASH segments with a forced first I-frame ?
Thanks.


-
Replacing segments of MPEG DASH video
10 septembre 2018, par Mike19846546I am working with a converted DASH video with a manifest file containing a segmentList of all video segments. Is it possible to take multiple of these segments, encode an image overlay (using ffmpeg for example) and change the manifest file to correspond to the converted video segments combined with the original ones (those following the converted ones) without re-encoding the entire original video with the image overlays and then converting it to DASH ?
-
Problem to convert Mp4 to MPEG DASH with FFMPEG codec Vp9 in linux
4 mars 2020, par Sean Pribadii need to convert mp4 to mpeg Dash and stream .Mpd with dash.js. everything looks fine on windows, but there are trouble when i generate Mpd in linux.
Step by step in windows :
1. runffmpeg -y -i video.mp4 -map 0:0 -map 0:0 -map 0:1 -c:v libvpx-vp9 -b:v:0 800k -b:v:1 200k -s:v:1 320x170 -bf 1 -keyint_min 120 -g 120 -sc_threshold 0 -b_strategy 0 -use_timeline 1 -use_template 1 -adaptation_sets "id=0,streams=v id=1,streams=a" -f dash config.mpd
- stream config.mpd, init, and chunk file with dash.js player.
everything work when i run ffmpeg on windows
when i ran on linux :
1. runffmpeg -y -i video.mp4 -map 0:0 -map 0:0 -map 0:1 -c:v libvpx-vp9 -b:v:0 800k -b:v:1 200k -s:v:1 320x170 -bf 1 -keyint_min 120 -g 120 -sc_threshold 0 -b_strategy 0 -use_timeline 1 -use_template 1 -adaptation_sets "id=0,streams=v id=1,streams=a" -f dash config.mpd
no error and everything looks good. But when i stream with dash.js.
- stream with dash.js player
when i stream config.mpd with dash.js player, there are infinity request enter image description here
what i have tried :
1. change init-stream build by linux with init-stream build by windows [Work]
2. change codec to libx264 [also work in linux]the problem is just convert video to MPEG dash with webm codec (vp8/Vp9) in linux
- stream config.mpd, init, and chunk file with dash.js player.