Welcome to World of IPTV

With

+23k members
+11k threads
+106k posts

we are the most popular IPTV community on the web. 

IMPORTANT NOTE:
WE HAVE RECENTLY NOTICED THAT TOO MANY DOUBLE FAKE ACCOUNTS ARE CREATED IN THE PAST.
TO PREVENT THIS ISSUE THE DECISION WAS MADE THAT IN THE FUTURE A ANNUALLY FEE 20 EURO WILL BE RAISED FOR NEW MEMBERSHIPS.

Join now to the World of IPTV

Forum Rules

Before you start, check out the forum rules first

Account upgrade

Upgrade your account to get access to full features

Advertising

Would you like to place your advertisement with us ?

Resources Manager

Hundreds of IPTV scripts and apps are available for download

Question NEED TO KNOW HOW TO STREAM MULTIOUTPUTS BITRATES

Mariozix

Extended Member
Ext. Member
Joined
Oct 25, 2019
Messages
110
Reaction score
605
Points
104
Location
CHINA
Now i have check most of this articles


but still didn't know if xtream ui support this option
if i have an m3u playlist can i use a http line and encode into many qualities then stream it via xui and if it will be process from the gui by using custom ffmpeg or i need to do it from putty tunnel and ffmpeg +HLS then stream it i am really confused about this
could any one helps me please or provide me with explanation or links how to do it in specified steps ?
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

Mariozix

Extended Member
Ext. Member
Joined
Oct 25, 2019
Messages
110
Reaction score
605
Points
104
Location
CHINA
i see
so i think i have to build hls server and nginx to can get my desired m3u8
at end i will find the map into xui
 

dogstyle007

Extended Member
Ext. Member
Joined
Nov 29, 2019
Messages
82
Reaction score
515
Points
94
Location
Africa
i see
so i think i have to build hls server and nginx to can get my desired m3u8
at end i will find the map into xui
You will need to use Nginx+RTMP to create multi bitrate streams.

Xui custom ffmpeg command won't do it.
 

MwVTW

Extended Member
Ext. Member
Joined
Mar 26, 2020
Messages
16
Reaction score
182
Points
39
Location
Germany
You don't have to use nginx and rtmp. with ffmpeg you can generate several output streams with multiple bit rates. this can be given out as hls output in an m3u8. then you need the nginx with rtmp or hls to push, but not to transcoding. or you can do it the cheapest way and push it to a simple html release and access it from there. However, it is important that the current hls segments are always available, otherwise the m3u8 output will grow infinitely.
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

dogstyle007

Extended Member
Ext. Member
Joined
Nov 29, 2019
Messages
82
Reaction score
515
Points
94
Location
Africa
You don't have to use nginx and rtmp. with ffmpeg you can generate several output streams with multiple bit rates. this can be given out as hls output in an m3u8. then you need the nginx with rtmp or hls to push, but not to transcoding. or you can do it the cheapest way and push it to a simple html release and access it from there. However, it is important that the current hls segments are always available, otherwise the m3u8 output will grow infinitely.
Are you saying he can do this with XUi?
 

MwVTW

Extended Member
Ext. Member
Joined
Mar 26, 2020
Messages
16
Reaction score
182
Points
39
Location
Germany
If ffmpeg is running on the same Server it should be no Problem.
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

MwVTW

Extended Member
Ext. Member
Joined
Mar 26, 2020
Messages
16
Reaction score
182
Points
39
Location
Germany
For example:

ffmpeg -i input.file -c:v libx264 -c:a mp2 \
-f tee -map 0:v -map 0:a "output.mkv|[f=mpegts]udp://10.0.1.255:1234/"

ffmpeg -i input \
-s 1280x720 -acodec … -vcodec … output1 \
-s 640x480 -acodec … -vcodec … output2 \
-s 320x240 -acodec … -vcodec … output3


Or this....

ffmpeg -i “1080p_video” -vf yadif -c:v libx264 -vb 1000k -s 1280×720 -preset fast -c:a aac -ab 112k “720p_video.mp4” -vf yadif -c:v libx264 -vb 700k -s 854×480 -preset fast -c:a aac -ab 80k “480p_video.mp4” -vf yadif -c:v libx264 -vb 400k -s 640×360 -preset fast -c:a aac -ab 64k “360p_video.mp4” -vf yadif -c:v libx264 -vb 200k -s 480×270 -preset fast -c:a aac -ab 32k “240p_video.mp4”
 

dogstyle007

Extended Member
Ext. Member
Joined
Nov 29, 2019
Messages
82
Reaction score
515
Points
94
Location
Africa
For example:

ffmpeg -i input.file -c:v libx264 -c:a mp2 \
-f tee -map 0:v -map 0:a "output.mkv|[f=mpegts]udp://10.0.1.255:1234/"

ffmpeg -i input \
-s 1280x720 -acodec … -vcodec … output1 \
-s 640x480 -acodec … -vcodec … output2 \
-s 320x240 -acodec … -vcodec … output3


Or this....

ffmpeg -i “1080p_video” -vf yadif -c:v libx264 -vb 1000k -s 1280×720 -preset fast -c:a aac -ab 112k “720p_video.mp4” -vf yadif -c:v libx264 -vb 700k -s 854×480 -preset fast -c:a aac -ab 80k “480p_video.mp4” -vf yadif -c:v libx264 -vb 400k -s 640×360 -preset fast -c:a aac -ab 64k “360p_video.mp4” -vf yadif -c:v libx264 -vb 200k -s 480×270 -preset fast -c:a aac -ab 32k “240p_video.mp4”
Okay, got it. So this command will be added to XtreamUI ffmpeg custom command right?
 

MwVTW

Extended Member
Ext. Member
Joined
Mar 26, 2020
Messages
16
Reaction score
182
Points
39
Location
Germany
You can try it...but i would recommend that you try to run the mpegts output via UDP on Localhost.
So you are able to insert the stream via udp://127.0.0.1:8999/playlist.m3u8 for example

You have to combine the output to a m3u8
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

dogstyle007

Extended Member
Ext. Member
Joined
Nov 29, 2019
Messages
82
Reaction score
515
Points
94
Location
Africa
You can try it...but i would recommend that you try to run the mpegts output via UDP on Localhost.
So you are able to insert the stream via udp://127.0.0.1:8999/playlist.m3u8 for example

You have to combine the output to a m3u8
Alright, Will try. Thanks
 

Mariozix

Extended Member
Ext. Member
Joined
Oct 25, 2019
Messages
110
Reaction score
605
Points
104
Location
CHINA
You can try it...but i would recommend that you try to run the mpegts output via UDP on Localhost.
So you are able to insert the stream via udp://127.0.0.1:8999/playlist.m3u8 for example

You have to combine the output to a m3u8
could you explain this more details
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

montana

Extended Member
Ext. Member
Joined
Jan 20, 2020
Messages
30
Reaction score
84
Points
24
Location
norge
use flussonic , xaccel codec
the easy and best way and you can monitor your streams
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

PKT

VIP Member 12M
Basic Member
Ext. Member
VIP Member 12M
Joined
Jun 6, 2021
Messages
27
Reaction score
109
Points
39
Location
Bangalore
you will not share the rtmp directly, you will use the converted different quality output in imput for ur iptv panel to create NewChanel SD, etc quality.
 
shape1
shape2
shape3
shape4
shape5
shape6
Top
AdBlock Detected

We know, ad-blocking software do a great job at blocking ads. But our site is sponsored by advertising. 

For the best possible site experience please take a moment to disable your AdBlocker.
You can create a Account with us or if you already have account, you can prefer an Account Upgrade.

I've Disabled AdBlock