Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (98)

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

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (7643)

  • RTMP_Connect1, handshake failed. Error while using rtmp command via FFmpeg

    1er mai 2022, par Aditya Yadav

    when I try to stream using rtmp protocol via ffmpeg with the following command :

    


    ffmpeg -stream_loop -1 -re -i "video.mp4" -c:v copy -c:a aac -ar 44100 -ac 1 -f flv rtmps://dc5-1.rtmp.t.me/s/1520759423:xxxx

    


    I get the following error :

    


    RTMP_Connect1, handshake failed. rtmps://dc5-1.rtmp.t.me/s/1520759423:xxxx: Unknown error occurred

    


    I am sure its not the client side error where I am trying to stream, and its not my network/IP related error because this same command is working via windows on the same network. When I switched to linux(Fedora 35) I started facing this issue.

    


  • stream a video file using srt protocol [closed]

    13 novembre 2022, par programmer

    I want to stream a file over the network from a server. I will need to
send the AVFormatContext, and individual AVPackets over the network.For this reason i use libav library(ffmpeg) and srt protocol to send to specific port. But i can not find a function that send avpackets in srt. I find srt_sendmsg() function but it is not usable in this case.Does it have any solution ?
thanks in advance.

    


    As i say i want to design a srt server that streams specific file. it should read the video file and then send it on specific port that clients can connect to that and receive live stream.I want to use c++ programming , libav libraray and srt protocol

    


  • OpenCV VideoCapture timeout on Open or Constructor ?

    18 novembre 2016, par Robert

    OpenCV has the VideoCapture class to load video from external sources. I have a network camera on my network that I’m accessing with RTSP (using the FFMPEG plugin).

    The sad thing is that it seems the open method and the constructor block on opening the video stream. This means if the stream is down, the program is stuck there forever.

    Is there any sort of timeout ability ? I tried looking in the source code, but in the end it calls external FFMPEG functions I believe and I’m unable to go further.

    If there isn’t timeout, is there any sort of library for a nonblocking VideoCapture method for RTSP or HTTP ?