Recherche avancée

Médias (0)

Mot : - Tags -/api

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

Autres articles (67)

  • Les images

    15 mai 2013
  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (7228)

  • Add length for each frame in a MJPEG stream transcoded by ffmpeg

    8 décembre 2020, par user3612643

    I am using the following command to transcode my cam's stream into mjpeg which I decode and present in my custom home-control app :

    


    ffmpeg -i rtsp://mycamera:554/onvif1 -c:v mjpeg -f mjpeg -

    


    That works quite nicely, but the result is just a continuous sequence of jpeg images/frames. For faster decoding, I would like to have a length header before each frame, so that I can cut out the exact JPEG from the stream :

    


    LENGTH FRAME LENGTH FRAME

    


    Each LENGTH should be 4-bytes encoding in LE or BE the length of the following FRAME in bytes.

    


  • Revision 19cf72eddc : Adding {read, write}_partition() instead of check_bsize_coverage(). Making part

    28 octobre 2013, par Dmitry Kovalev

    Changed Paths :
     Modify /vp9/common/vp9_onyxc_int.h


     Modify /vp9/decoder/vp9_decodframe.c


     Modify /vp9/encoder/vp9_bitstream.c



    Adding read, write_partition() instead of check_bsize_coverage().

    Making partition read/write logic more clear.

    Change-Id : I1981e90327257d37095567c62d72a103cda1da33

  • iOS local host RTMP server

    16 septembre 2020, par estoril

    I have been tasked with creating an iPad application, iOS 12.3 latest support, to run as a local RTMP server. Purpose being, external devices connect to this local RTMP server on iOS iPad, either via the iPad's wifi connection or enabled hotspot, and playback the display of external devices (mirror) onto the iPad.

    


    I have been successful with creating a local host HTTP server, but upon connecting with external devices the local server on the iPad quits.

    


    I will be using open source software for decoding and playback of video feed such as vlc or ffmpeg, but need guidance on an iPhone local host implementation, such as https://github.com/sallar/mac-local-rtmp-server for a mac.

    


    Any help would be greatly appreciated !