
Recherche avancée
Autres articles (10)
-
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (3571)
-
Possible to stream a given window online with FFmpeg ?
28 août 2021, par FrankIs it possible to use FFmpeg to broadcast a given window title online, so someone else could watch it in real-time ? If possible I would not like to use any website like twitch, or youtube, I'm trying something like you input the IP and port and can watch the window stream.


What I tried :


ffmpeg -f gdigrab -i desktop -vcodec libx264 -r 10 -tune zerolatency -b:v 500k -bufsize 300k -f rtp udp://??



But I'm not sure how to correctly use the IP/Port and if this code is really for the purpose I'm looking for.


(I'm completely new to FFmpeg/recording/streaming and don't know the right terms to use, so sorry for any mistakes.)


-
How to use Wowza media server with Jack Audio Connection Kit as input on MAC OS ?
15 mai 2016, par SaneetI need to live broadcast multiple RTSP streams out of the audio mixing software StudioOne. For this I am using Jack Audio Connection Kit as the connector. I’ve already tried using IceCast with Darkice but the latency went up to 6+ seconds which won’t work for the project that I’m working on. That’s why I’m using the Wowza media server which does RTSP streaming instead of HTTP.
That’s where I’m stuck as I need some way of getting the streams from Jack Audio to Wowza on a MAC OS machine. I’ve tried using FFMpeg but FFMpeg doesn’t have the feature to get input from Jack Audio on it’s OSX version. I can try to port my whole setup onto an Ubuntu but the mixing software StudioOne isn’t available on Ubuntu. I can try using Wine to port StudioOne to Linux but I’m not sure it’ll be a good idea for real time mixer to be used as a port, especially when latency is involved.
Is there some other way I can get input from Jack Audio to Wowza Media Server on my MAC ?
-
Bash output tracking
21 juillet 2021, par DikensI made an infinite loop in the Bash script to restart streaming.


#!/bin/bash
while true
 do
 ffmpeg -re -rtsp_transport tcp -i "rtsp://{address:port}/{key}" -f lavfi -i anullsrc=channel_layout=stereo:sample_rate=44100 -c:a libmp3lame -ab 128k -ar 44100 -c:v copy -threads 2 -bufsize 512k -f flv "rtmps://{address:port}/live/{key}" &
 PID=$!
 sleep 12h
 kill $PID
 sleep 2
 done



But sometimes an error occurs... which is displayed in the console in the following form :


rtsp://{address:port}/{key}: Invalid date found when processing input



And this time the stream does not work. How to supplement my script, which would track after running the command output in the console and when the error Invalid date found when processing input will end the process and immediately restart the stream ?