Recherche avancée

Médias (91)

Autres articles (104)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk 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, par

    Cette 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 firoozg

    I 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 firoozg

    I 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 user1914692

    I 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.