Thread Webcam integrieren
(54 answers)
Opened by Kean at 2011-05-30 14:56
Mit ffmpeg zeranoes Build für Windows geht das! :)
Beispiel von meinem Video im WWW nach localhost:8080 (mit Auth Basic!): als H264/MP4 streamen ffmpeg -i https://user:test@labs.gwendragon.de/tmp/v.mp4 -vcodec libx264 -f flv tcp://localhost:8080/stream/live/1 als Webm streamen ffmpeg -i https://user:test@labs.gwendragon.de/tmp/v.mp4 -vcodec libvpx -f webm tcp://localhost:8080/stream/live/2 als Ogg-Theora streamen ffmpeg -i https://user:test@labs.gwendragon.de/tmp/v.mp4 -vcodec libtheora -f ogg tcp://localhost:8080/stream/live/3 Ich kann den Stream dann mit ffplay tcp://localhost:8080/stream/live/3?listen ansehen. Last edited: 2016-07-17 19:44:31 +0200 (CEST) |