Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (82)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP 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" (...)

  • 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 (...)

Sur d’autres sites (10759)

  • Revision 57b97b56f6 : Code cleanup Minor code cleanup. Change-Id : I47c1f794842d4570bb39cfd23b80f54f5

    11 octobre 2013, par Yunqing Wang

    Changed Paths :
     Modify /vp9/common/x86/vp9_intrapred_ssse3.asm



    Code cleanup

    Minor code cleanup.

    Change-Id : I47c1f794842d4570bb39cfd23b80f54f5606bba6

  • Receiving Raw MPEG2-TS data received over RTSP(RTP) via FFMPEG

    8 septembre 2014, par AGP

    I am trying to read raw MPEG2-TS data packets(188 byte) from an RTSP(RTP) stream. I can not figure how to code a client that opens stream and reads raw data. For other video formats and without raw data handling, it is much easier in ffmpeg.

    How can i code this type of client in ffmpeg ?

    Thanks

  • Flutter | Retrieve ffprobe data

    23 juin 2021, par YourLogarithm

    I'm using flutter_ffmpeg package, specifically I'm trying to retrieve information regarding the chapter marks from a .m4b file which is an audiobook. By using this method :

    


    _flutterFFmpeg.executeWithArguments(['-i', widget.book.path, '-print_format', 'json', '-show_chapters', '-loglevel', 'error']);


    


    I was able to output this data as a JSON map in the console. The thing is, I need to use this data inside my application, is there a way to get access to those chapters as a variable using another approach, or maybe to access this data directly from the console log printed by the method shown earlier.