
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (104)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (7424)
-
Is there any good documentation of **x264** internals ?
18 octobre 2015, par firoozgI want a to study about x264 internals ?
Is there any good resource about the algorithms and code structure ?
Or at least a resource to study about the intra prediction algorithms
used in x264. -
Is there any good documentation of **x264** internals ?
18 octobre 2015, par firoozgI want a to study about x264 internals ?
Is there any good resource about the algorithms and code structure ?
Or at least a resource to study about the intra prediction algorithms
used in x264. -
what is a good way to calculate frame rate using of a video ffmpeg ?
20 septembre 2013, par user1914692I find three possible ways :
(Option 1)
inVStruct.inVideoStream->r_frame_rate[comment :] correct for some videos. Not always correct.
it is libavformats guess, not exact. (see http://ffmpeg.org/pipermail/ffmpeg-devel/2005-May/003079.html )(Option 2)
(double) inVStruct.inVideoStream->r_frame_rate.num / (double) inVStruct.inVideoStream->r_frame_rate.den[comment :] correct for some videos. Not always correct.
(Option 3)
(double) inVStruct.inCodecContext->time_base.den / (double) inVStruct.inCodecContext->time_base.num / inVStruct.inCodecContext->ticks_per_frame) ;[comment :] correct for some videos. Not always correct.
Please recommend one for all video files.