Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (57)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (7806)

  • Revision 6ea881cc12 : rtcd : handle armv7s architecture quiets build warnings about implicit (armv6) f

    16 décembre 2014, par James Zern

    Changed Paths :
     Modify /build/make/rtcd.pl



    rtcd : handle armv7s architecture

    quiets build warnings about implicit (armv6) function declarations

    Change-Id : I896a5ef3e367e5bb92777a60d34003eb3a040997

  • qsv : handle the semi-packed formats in map_fourcc as well

    14 juillet 2016, par Anton Khirnov
    qsv : handle the semi-packed formats in map_fourcc as well
    

    This will allow using this function for encoding as well, where the
    input format is already the semi-packed version.

    • [DBH] libavcodec/qsv.c
  • libav MPEGTS demuxing - handle loop/discontinuity

    28 septembre 2021, par Michal Artazov

    I'm writing a video/audio player that uses libav/ffmpeg for demuxing and decoding MPEGTS streams over UDP. One problem that I'm dealing with is that sometimes the stream is looping and when it loops, my player breaks down.

    


    The issue is that once the stream loops, the new packets have widely different dts/pts. My player is relying on pts for video - audio synchronisation so it's important that I can handle pts properly.

    


    Whenever the server loops the stream, it sends a discontinuity flag, which I can confirm is being correctly received by libav mpegts demuxer (I did some digging in the code and inspected the debug logs). However, it seems to me that the demuxer doesn't act on the discontinuity flag much. In other words, from the point of view of the user I can't tell that there's a discontinuity, apart from the dramatic jump in dts/pts.

    


    Is there a way I can reliably tell that there was a discontinuty so I can recalculate my timestamps and continue playback smoothly ?