
Recherche avancée
Médias (3)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (15)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (2137)
-
Revision 4cc7c5a17f : Totally remove prev_mi in VP9 decoder. This will save the memory and improve th
3 novembre 2014, par hkuangChanged Paths :
Modify /vp9/common/vp9_alloccommon.c
Modify /vp9/common/vp9_alloccommon.h
Modify /vp9/common/vp9_entropymode.c
Modify /vp9/common/vp9_onyxc_int.h
Modify /vp9/decoder/vp9_decoder.c
Modify /vp9/encoder/vp9_encoder.c
Totally remove prev_mi in VP9 decoder.This will save the memory and improve the decode speed due to
removing unnecessary memset of big prev_mi array for
all the key frames.Decoding a all key frames 1080p video shows speed improve around 2%.
Change-Id : I6284a445c1291056e3c15135c3c20d502f791c10
-
Revision c30d5703e5 : Run sub-pixel motion search for NEWMV mode test As Yunqing suggested, this comm
26 février 2014, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_pickmode.c
Run sub-pixel motion search for NEWMV mode testAs Yunqing suggested, this commit makes non-RD mode decision always run
sub-pixel motion search in NEWMV mode. The compression performance
gains becomes fairly significant after we enabled sub-pixel accuracy
motion compensated prediction to calculate SAD cost.For test sequences pedestrian_area at 1080p and vidyo1 at 720p, the
runtime goes slower by 5%. For rtc test set, the compression performance
is improved by 21.20%.Change-Id : I38cbfdd5c53d79423e1fafb3154f8ddeed63bbf0
-
Extract keyframe info and byte offset from video ffmpeg/ffprobe
4 juin 2020, par Ali HasanHow can I retrieve each keyframe information from the video using ffmpeg/ffprobe.



I have read a lot stackoverflow questions and answers regarding this but the command only returns the keyframe duration.



I have used this command to extract the keyframe duration



ffprobe -loglevel error -skip_frame nokey -select_streams v:0 -show_entries frame=pkt_pts_time -of csv "/var/www/html/YoutubeTesting/1080p.mp4"




But the info which I need from each keyframe are



1- Byte offset from video byte size



2- Duration of keyframe



Thanks !