Hi,
I have nginx-rtmp installed on ubuntu 18.
I have link source like
Code:
http://ip:port/username/password/1.m3u8
I need to stream this like
Code:
http://myserver.com/video/1
in MPEGTS (my app does not support m3u8 playback).

This command works great:

Code:
ffmpeg -re -user_agent "LocalHost" -i http://ip:port/username/password/4 -c:v copy -c:a aac -ac 2 -strict -2 -f hls -hls_wrap 50 /var/www/html/1.m3u8
But I need the stream in MPEGTS.

Can somebody help me to get the MPEGTS output and allow multiple playbacks in my local server (3-4 connections) ?