Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (54)

  • 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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (6880)

  • JSHint : Replace single for double quotes in tests

    23 janvier 2014, par nschonni
    JSHint : Replace single for double quotes in tests
  • Removed unnecessary double check. Thanks to marcoscoelho for the hint.

    2 juillet 2013, par blueimp
    Removed unnecessary double check. Thanks to marcoscoelho for the hint.
  • How to use ffmpeg for receiving and recording stream without double bandwidth

    22 novembre 2016, par Doctorslo

    I run ffmpeg to get the live stream from camera with this line :

    ffmpeg -rtsp_transport tcp -i cameraAddress -f mjpeg pipe:1

    The data from pipe is received in C# code, where I also display it to a user.

    The camera supports ONVIF protocol, where I receive the events about motion. When the motion is happening, I would like to start recording to a (mp4) file. I would do that simply by running following command :

    ffmpeg -rtsp_transport tcp -i cameraAddress Video.mp4

    When the recording is happening, I have a double bandwidth from the same camera.

    My question is, how can I do this better, preferably without double bandwidth ? Is it possible to connect with second ffmpeg to the "pipe:1", which is used as an output in the first ffmpeg ?