
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (23)
-
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 (4435)
-
lavc/hevc_refs : exclude current frame from long term refs
15 juillet 2022, par Xu Guangxinlavc/hevc_refs : exclude current frame from long term refs
suppose
a. You have 3 frames, 0, 1, 4096.
b. The ltMask is 0xfff and use_msb is 0.
c. The 0, 1 are lt refs for 4096.
d. you are decoding frame 4096, and get the 0 frame.
Since 4096 & ltMask is 0 too, even you want get 0, find_ref_idx may give you 4096.
add_candidate_ref will report an error for thisTested-by : Fei Wang <fei.w.wang@intel.com>
Signed-off-by : Xu Guangxin <guangxin.xu@intel.com> -
MPEG DASH : frame seeking
13 août 2014, par bisc8TL ;DR : Is it possible to achieve frame seeking using DASH ? How ?
I’m using ffmpeg to create non-multiplexed content :
ffmpeg -y -an -codec:v libx264 -profile:v baseline output_video.mp4 -i video.mp4
ffmpeg -y -vn -codec:a libvo_aacenc -ac 1 -ar 44100 output_audio.mp4 -i video.mp4Then I’m using mp4box to create DASH content :
mp4box -dash 10000 -frag 1000 -rap -dash-profile live -segment-name mp4-live-$RepresentationID$-$Number$ -out manifest.mpd output_video.mp4 output_audio.mp4
Finally I open the generated content with Chrome, using dash.js. Everything works fine except that I can’t do frame seek. I keep on adding (1/frame_rate) seconds to the current time but nothing happens, the frame only changes after 10 seconds.
I suppose this has to do with the video’s key interval. However, I am able to do frame seek after the ffmpeg part, so I guess I’m missing something in the mp4box command.
Is it possible to achieve frame seeking using DASH or am I missing something ?
Thanks in advance.
-
ffmpeg/qsv : fix QSV-accelerated transcode performance drop issue.
11 août 2016, par Jun Zhaoffmpeg/qsv : fix QSV-accelerated transcode performance drop issue.
the merge commit 1b04ea1 "avconv : create simple filtergraphs earlier"
will init the filtergraphs earlier, then init the QSV transcode can’t
suppose the nb_filters’s value, else lead to the QSV transcode performance
drop.Signed-off-by : Jun Zhao <mypopydev@gmail.com>
Reviewed-by : Ivan Uskov <ivan.uskov@nablet.com
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>