Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (59)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (8411)

  • How can I split an RTSP stream so that I can both save it to files and apply a motion detection client ? (e.g. ffmpeg, motion)

    1er septembre 2022, par Pat Niemeyer

    I’ve been using "motion" successfully to read an rtsp stream and save motion triggered events.

    


    motion -c motion.conf # config file has the rtsp url and other params


    


    However I’d like to both save the full stream and analyze for motion in this way. I know that I can capture the stream to files with ffmpeg something like this :

    


    ffmpeg -i rtsp://mystream -vcodec copy -acodec copy -map 0 -f segment -segment_time 300 -segment_format mp4 "ffmpeg_capture-%03d.mp4"


    


    Is there is a way to split / duplicate the rtsp stream (perhaps using ffmpeg again) so that I can have both motion and ffmpeg processes looking at it simultaneously ? Alternately is there some option on motion that I’m missing that would automatically save both the raw video and the motion segments ?

    


  • aarch64 : vp9itxfm16 : Avoid .irp when it doesn’t save any lines

    25 février 2017, par Martin Storsjö
    aarch64 : vp9itxfm16 : Avoid .irp when it doesn’t save any lines
    

    This makes the code a bit more readable.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavcodec/aarch64/vp9itxfm_16bpp_neon.S
  • Decoding h.264 in node.js without ffmpeg and send it to front or save it in fs

    5 mars 2019, par JT.v26

    I’m doing the final project of a bootcamp.

    The project consists of controlling a drone (Tello) with a mobile phone. So for this project I’m using react native. In which I insert a node.js inside the application (Node.js for Mobile Apps React Native) since the drone creates a wifi and I lose internet access to connect to a remote server.

    All right so far, the drone has three udp ports enabled on the sdk to receive instructions, send status and send video.
    The video gives it to me in raw.

    I did a test on the computer, downloading ffmpeg and converting that data and I could effectively have the video retransmission.

    My questions are :

    Is there any way I can use the same technique on the mobile without needing ffmpeg ?

    Is there any way to import ffmpeg into android and communicate with nodejs ?

    Is there any other solution where I can use another node that doesn’t have to be on the phone ?

    Or you may even find some other solution to address this problem.

    Thank you very much in advance