DOWNLOAD Create Movies and TV Series Video on Demand (VOD) Playlist's Using Xtream Codes or M3U8 Format

makeitso

Member
Joined
May 1, 2021
Messages
64
Awards
3
Offline
Yes. The problem is that some of the DaddyLive channels are now using an encryption in the m3u8 playlist, so i had to change some of code in the hls_proxy.php to also proxy the request when fetching the encryption key. However, now the internal player in Tivimate keeps freezing up during playback.

Players like VLC, MX, and Streamers internal player all continue to have smooth playback (well other then the normal buffering that can take place with DaddyLive links). So i'm working on figuring out why the Tivimate seems to be having such a problem before releasing a full update. You can download and run the new hls_proxy.php which should solve the problem depending on what player you are using.

Let me know if this helps or what you experience with it.

Password:
*** Hidden text: cannot be quoted. ***
Yea give that a go local and server online same results on stream not going. I deleted the files made in the channels and tested agin even via VLC direct and same errors out
 

gogetta69

Active member
Joined
Oct 18, 2023
Messages
42
Awards
3
Offline
Yea give that a go local and server online same results on stream not going. I deleted the files made in the channels and tested agin even via VLC direct and same errors out

Yeah if nothing is playing then there is something else wrong. When you downloaded the newest update are you just copying the same config.php from the old installation? If so that could be the problem. Open an issue on Github and i can try and help you out.
 

doubled

Active member
VIP Member
Joined
Oct 31, 2023
Messages
40
Awards
3
Offline
Replace all the files, and regenerate the files, all working here perfect
 

makeitso

Member
Joined
May 1, 2021
Messages
64
Awards
3
Offline
Yeah if nothing is playing then there is something else wrong. When you downloaded the newest update are you just copying the same config.php from the old installation? If so that could be the problem. Open an issue on Github and i can try and help you out.
trying this now with what's on Github and the new hls file
 

makeitso

Member
Joined
May 1, 2021
Messages
64
Awards
3
Offline
Yeah if nothing is playing then there is something else wrong. When you downloaded the newest update are you just copying the same config.php from the old installation? If so that could be the problem. Open an issue on Github and i can try and help you out.
Hi , yea i just slapped the files on a mates server and going , odd they worked on the one i was using from the start . Who do you use for hosting ?
 

yamcell

Well-known member
Joined
Oct 25, 2021
Messages
232
Awards
3
Offline
Yeah if nothing is playing then there is something else wrong. When you downloaded the newest update are you just copying the same config.php from the old installation? If so that could be the problem. Open an issue on Github and i can try and help you out.
Live tv stop working
 

makeitso

Member
Joined
May 1, 2021
Messages
64
Awards
3
Offline
Live tv stop working
Only thing that doesn't work on my own host is daddy streams , I took the script to the vps and my mates and all works , maybe 4 that don't. I asked the host did they change anything on the servers and they said nop what I might do is totally change to a different subdomain and see what results I get.
 

atariguy7

New member
Joined
Dec 22, 2023
Messages
9
Offline
If i load up the playlist.m3u8 file in tivimate, all movies play perfectly but id like to use xtream codes so I get the tv shows as well. When I load it via xtream codes all movies and shows populate but they all give me error 404. any idea why they would play loading via m3u8 but fail via xtream codes? Thanks
 

gogetta69

Active member
Joined
Oct 18, 2023
Messages
42
Awards
3
Offline
If i load up the playlist.m3u8 file in tivimate, all movies play perfectly but id like to use xtream codes so I get the tv shows as well. When I load it via xtream codes all movies and shows populate but they all give me error 404. any idea why they would play loading via m3u8 but fail via xtream codes? Thanks

If you aren't using the root directory that could be the problem.

The m3u8 would list the full url like:

http: //YOUR_IP_OR_DOMAIN/some-folder/play.php?movieId=105

However, when using Xtream Codes the app may look for the video here:

http: //YOUR_IP_OR_DOMAIN/user/pass/105.m3u8

Which isn't a problem if you have the files in the root directory cause it would redirect the request to the /play.php
Now, even if the app accepts the Xtream Codes server details like:

http: //YOUR_IP_OR_DOMAIN/some-folder

It may still request the video from the root:

http: //YOUR_IP_OR_DOMAIN

Not sure if this is the problem you are having but it sounds like it. You can check your servers raw access logs to see the route its taking.
 

atariguy7

New member
Joined
Dec 22, 2023
Messages
9
Offline
If you aren't using the root directory that could be the problem.

The m3u8 would list the full url like:

http: //YOUR_IP_OR_DOMAIN/some-folder/play.php?movieId=105

However, when using Xtream Codes the app may look for the video here:

http: //YOUR_IP_OR_DOMAIN/user/pass/105.m3u8

Which isn't a problem if you have the files in the root directory cause it would redirect the request to the /play.php
Now, even if the app accepts the Xtream Codes server details like:

http: //YOUR_IP_OR_DOMAIN/some-folder

It may still request the video from the root:

http: //YOUR_IP_OR_DOMAIN

Not sure if this is the problem you are having but it sounds like it. You can check your servers raw access logs to see the route its taking.
Unfortunately I do already have all off the files in the root directory.
 

makeitso

Member
Joined
May 1, 2021
Messages
64
Awards
3
Offline
Hi i want to learn how to add a source for movies in spanish
i would stab a guess its this bit you need to edit , but it is purely a guess
Code:
// Leave blank for any language.
$language = 'en-US'; // TMDB search setting (language)

// Leave blank for any country to be included in the series playlist.
$series_with_origin_country = 'US'; // TMDB search setting (with_origin_country)

// Leave blank for any country to be included in the movies playlist.
$movies_with_origin_country = 'US'; // TMDB search setting (with_origin_country)
 
Top