DOWNLOAD New Smarters app

Stream Wizard

Active member
Joined
Jan 21, 2022
Messages
180
Awards
3
Offline
Another forum has shared it linked & working with an old panel they have. I got it working. Banners to. Banner size is 1200x187 everyone.. Still trying to get tv preview to work. It needs to be set to your service stream format someone posted.. or you can set it up to play mp4 videos to!
 

asegura074

Well-known member
Joined
Oct 27, 2022
Messages
173
Awards
3
Offline
Another forum has shared it linked & working with an old panel they have. I got it working. Banners to. Banner size is 1200x187 everyone.. Still trying to get tv preview to work. It needs to be set to your service stream format someone posted.. or you can set it up to play mp4 videos to!

Share it here
 

Stream Wizard

Active member
Joined
Jan 21, 2022
Messages
180
Awards
3
Offline
Share it here
Learn api calls. And learn how each app stores them, and how they call back n forward to a panel. You'll get it sussed out.

Theres a few panels that this will work on. Just no banners unfortunately.. The banners above VOD & SERIES and tv preview have a unique api. That calls the panel and exchanges info back.

If you had a collection of panels, or decrypted panels, you could make a panel up to make it work. You need to learn how the api calls first.

Im not pro, so not gonna pretend to be. But i understand it and learning more how it works...
 

G-man

Well-known member
Joined
Apr 16, 2021
Messages
1,949
Awards
4
Offline
Fair play i am liking this app , not a great deal of customisation can be done on this layout as its good enough as it is
but does not harm to try :)
I also got the files from another forum well i didnt they were passed over so same rules apply :)
A lot of little niggles to track down in the app where translation missed a few little words nothing major took a couple of hours to track them all down. not to sure about the banner on the vod screens as i was pushed to think of anything to put there , may be better if an RSS feed was there instead ??? also the version i have the live channel you have to add the channel ID to the apk which is not ideal would be far beter maybe playing last channel played etc. these are all niggles that dont bother me but there :)
Screenshot 2023-04-21 164610.pngScreenshot 2023-04-21 164636.pngScreenshot 2023-04-21 165126.png
 

asegura074

Well-known member
Joined
Oct 27, 2022
Messages
173
Awards
3
Offline
I'm no programmer so excuse me lol i just made it work for personal use haha

You need to add this api.php file to http://yourpanelsite.xxx/onepanel/smarters

place the banners in http://yourpanelsite.xxx/onepanel/ad-images/

name each banner banner1.jpg banner2.jpg banner3.jpg banner4.jpg

Edit
api.php for your panel with your yourpanelsite.xxx

<?php
$functionsFile = "../includes/functions.php";
include($functionsFile);
$adInfo = loadAllAds(true);
$output = '{
"result":"success",
"totalrecords":4,
"images":["http:\/\/yourpanelsite.xxx\/onepanel\/ad-images\/banner1.jpg","http:\/\/yourpanelsite.xxx\/onepanel\/ad-images\/banner2.jpg","http:\/\/yourpanelsite.xxx\/onepanel\/ad-images\/banner3.jpg","http:\/\/yourpanelsite.xxx\/onepanel\/ad-images\/banner4.jpg"]
}
';
echo $output;

--------------------------------

Edit the Apk look and replace api call


with



-------------------------------------------------------------------------
Edit
There is a new api.php , now banners are loaded from onepanel ads page

1682155085816.png
go to post
 
Last edited:

Goodwin1

Active member
Joined
Nov 9, 2022
Messages
161
Awards
3
Offline
I'm no programmer so excuse me lol i just made it work for personal use haha

You need to add this api.php file to http://yourpanelsite.xxx/onepanel/smarters

place the banners in http://yourpanelsite.xxx/onepanel/ad-images/

name each banner banner1.jpg banner2.jpg banner3.jpg banner4.jpg

Edit
api.php for your panel with your yourpanelsite.xxx

<?php
$functionsFile = "../includes/functions.php";
include($functionsFile);
$adInfo = loadAllAds(true);
$output = '{
"result":"success",
"totalrecords":4,
"images":["http:\/\/yourpanelsite.xxx\/onepanel\/ad-images\/banner1.jpg","http:\/\/yourpanelsite.xxx\/onepanel\/ad-images\/banner2.jpg","http:\/\/yourpanelsite.xxx\/onepanel\/ad-images\/banner3.jpg","http:\/\/yourpanelsite.xxx\/onepanel\/ad-images\/banner4.jpg"]
}
';
echo $output;

--------------------------------

Edit the Apk look and replace api call


with



Here is the api.php file just edit Enjoy!

*** Hidden text: cannot be quoted. ***
What a proper helpful bloke. I havent done this yet and started checking out wireshark and stuff. It nice for you to share this mate. Thankyou
 

IɴғɪɴɪᴛᴇSᴛʀᴇᴀᴍs

Moderator
Staff member
VIP Member
Joined
Apr 7, 2021
Messages
1,168
Awards
4
Online
I'm no programmer so excuse me lol i just made it work for personal use haha

You need to add this api.php file to http://yourpanelsite.xxx/onepanel/smarters

place the banners in http://yourpanelsite.xxx/onepanel/ad-images/

name each banner banner1.jpg banner2.jpg banner3.jpg banner4.jpg

Edit
api.php for your panel with your yourpanelsite.xxx

<?php
$functionsFile = "../includes/functions.php";
include($functionsFile);
$adInfo = loadAllAds(true);
$output = '{
"result":"success",
"totalrecords":4,
"images":["http:\/\/yourpanelsite.xxx\/onepanel\/ad-images\/banner1.jpg","http:\/\/yourpanelsite.xxx\/onepanel\/ad-images\/banner2.jpg","http:\/\/yourpanelsite.xxx\/onepanel\/ad-images\/banner3.jpg","http:\/\/yourpanelsite.xxx\/onepanel\/ad-images\/banner4.jpg"]
}
';
echo $output;

--------------------------------

Edit the Apk look and replace api call


with



Here is the api.php file just edit Enjoy!

*** Hidden text: cannot be quoted. ***
Anything to help mate I'm sure people would appreciate the efforts, maybe a tutorial on how to setup wireshark to capture calls? I've used it years ago but forgot the basics I use httpcanary at the moment but doesn't work on newer android versions nice work either way bud
 

Goodwin1

Active member
Joined
Nov 9, 2022
Messages
161
Awards
3
Offline
Once this is setup, Im going to work on the live tv preview opening on last channel or something. I guess the channel ID maybe but guess thats not ideal either
 

Wizapk

Well-known member
Joined
Oct 11, 2021
Messages
288
Awards
4
Offline
Fair play i am liking this app , not a great deal of customisation can be done on this layout as its good enough as it is
but does not harm to try :)
I also got the files from another forum well i didnt they were passed over so same rules apply :)
A lot of little niggles to track down in the app where translation missed a few little words nothing major took a couple of hours to track them all down. not to sure about the banner on the vod screens as i was pushed to think of anything to put there , may be better if an RSS feed was there instead ??? also the version i have the live channel you have to add the channel ID to the apk which is not ideal would be far beter maybe playing last channel played etc. these are all niggles that dont bother me but there :)
View attachment 5846View attachment 5847View attachment 5848
That looks class mate i cant find the location of the VER ALL part could you maybe point me in the right direction as i have it 99% translated to English its only the VER part in the VOD i cant find lol, thanks mate

P.s Might want to change Veiw to View lol :) Thanks pal
 
Top