
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 (66)
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (5764)
-
Convert AVStream PTS value to real time in seconds
15 janvier 2015, par KamleshThe below code snippet gets the PTS value of different frames from a video file
AVStream *stream = avctx->streams[avpkt.stream_index];
if ( 0 > ( err = avcodec_decode_video2 ( stream->codec, frame, &got_frame, &avpkt ) && got_frame ) )
{
int64_t pts = av_frame_get_best_effort_timestamp ( frame );
pts = av_rescale_q ( pts, stream->time_base, AV_TIME_BASE_Q );
}The PTS value that it returns are given below.
- 66733
- 100100
- 133467
Confusion is on the time format of the above values, whether they are in milliseconds or microseconds.
Is there any other way to get a real time PTS values of the frames, as these will be required for subtitle rendering -
Revision 150fbfc7b6 : vpxenc : Warn on lagged encoding with real time. Restore warning when attempting
15 janvier 2014, par Tom FineganChanged Paths :
Modify /warnings.c
Modify /warnings.h
vpxenc : Warn on lagged encoding with real time.Restore warning when attempting to use lagged encoding with real time mode.
Change-Id : I109026db64566906f288f42d2686084ae5c13500
-
Revision 9b9136f8a2 : Fixed incorrect use of compute_qdelta() This function expects real Q values as
28 mars 2013, par Paul WilkinsChanged Paths : Modify /vp9/encoder/vp9_onyx_if.c Fixed incorrect use of compute_qdelta() This function expects real Q values as inputs not index values. The use-age her impacts the Q chosen for force key frames. Though this is a bug fix I have not yet verified whether following the bug fix the q (...)