[FFmpeg-user] Can't get TLS to work

Moritz Barsnick barsnick at gmx.net
Sat Aug 1 01:30:56 CEST 2015


On Fri, Jul 31, 2015 at 09:47:08 -0700, Rony Pony wrote:
> ffmpeg -re -i bikerace.mkv -vcodec libx264 -f mpegts tls://0.0.0.0:5000?listen&cert=server.crt&key=server.key
> [8] 594
> [9] 595

You need to protect the '&' from the shell, by quoting or escaping.

$ ffmpeg -re -i bikerace.mkv -vcodec libx264 -f mpegts "tls://0.0.0.0:5000?listen&cert=server.crt&key=server.key"

Your ffmpeg has access to those server.crt and server.key?

Moritz


More information about the ffmpeg-user mailing list