Recherche avancée

Médias (0)

Mot : - Tags -/publication

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

Autres articles (111)

  • 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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (11957)

  • ffmpeg put logo on rtsp and send to youtube live

    7 juillet 2017, par ahmed_max

    I want to put it watermark logo on rtsp stream (from Hikvision IP camera) and send it live to YouTube.

    I use ffmpeg on Winddows and this code

    ffmpeg -f lavfi -i anullsrc -rtsp_transport tcp -i rtsp://username:pass@255.255.255.255/Streaming/Channels/101 -tune zerolatency -vcodec libx264 -t 12:00:00 -pix_fmt + -c:v copy -c:a aac -strict experimental -f flv rtmp://a.rtmp.youtube.com/live2/stream-key

    How i can put watermark over live camera and send to YouTube live ?

    I tried adding it

    -i watermark.png -filter_complex "overlay=10:10"

    but dont work.

  • http live video streaming and embed ffplay ?

    17 novembre 2017, par ansari

    I have one query related to http live streaming concept.

    In my cases :

    case-1 : when I am playing the live streaming in ffplay, gives at most 2 seconds dealy.

    case-2 : while playing the live streaming in vlc player , gives at most 5 seconds delay.

    case-3 : In videojs player , shows at most 13 seconds delay.

    Is there any solution to get case-1 in both 2 and 3 cases ? And also May i know that can we embed ffplay into html page ?

  • Live Stream on the fly generated video in asp.net core

    3 juillet 2023, par juffma

    I have a problem where i'm not able to stream a video over the Network due to it being generated live. Currently it's working using MJPEG but thats slow (especially if not in the local network) and has much overhead. I receive the frames of the video as images and currently convert them to JPEG and then build an MJPEG stream.

    


    Would it be possible to generate another stream directly ? So for example "bake" the images into another type that isn't this heavy ?
If not, i currently think of the option to use FFMPEG to capture the MJPEG strteam and pipe it's output back into the App. Now, with this approach, what format would be best suited and how would i live stream it ? (eg. build a controller that correctly serves the FFMPEG pipe output (which, if it helps, i'm getting at a 4096 bytes large buffer)).

    


    Saving the Video to Disk and then just multipart streaming the file is not an option as it would not be live anymore.