Code Monkey home page Code Monkey logo

iptv's People

Contributors

sajjadjaved01 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

iptv's Issues

Parse Issue

How are you?
I am getting an error as following when i use a .m3u file.
08-07 01:04:08.594 20566-20566/? D/error: length=14; regionStart=0; regionLength=-1

This is the m3u file what i use in app.
http://links.nextip.biz:8585/get.php?username=n0SVnMJotH&password=jMhrpaSV7T&type=m3u_plus&output=ts

And this is a part of my code what the issue is occurred .
try {
//is = getAssets().open("tv_channels.m3u");

        File file = new File("/storage/emulated/0/Android/tv_test.m3u");
      // is= new FileInputStream(file);
        is=getContentResolver().openInputStream(Uri.fromFile(file));


        M3UPlaylist playlist = parser.parseFile(is);
        mPlaylistParams.setText(playlist.getPlaylistParams());
        mAdapter.update(playlist.getPlaylistItems());
    } catch (Exception e) {            
        Log.d("error", e.getMessage());
    }

Please give me solution.
Thank you

EPG support?

Hi

is there EPG support? i have seen Logo tvg but no EPG suport

can this be imported from xstreams?

Error google1.jks

Build file 'iptv/app/build.gradle' line: 11
A problem occurred evaluating project ':app'.

Cannot convert URL 'C:/Users/SajjadJaved/google1.jks' to a file.

while building in Android Studio 3.6.3, Linux

browse m3u??

i try to run this project and i can't find where the "Browse m3u url" ?
How can i find this?

Unable to fetch data

Hello I am trying to configure your application for my IPTV links, for the connection everything is fine but when I display the list of channels I put "Unable Fetch Data"

val urlLink = "http://iptvpro.vision-new.org"
val domain = "http://iptvpro.vision-new.org:8789" //http://portal.example.com:8001";

I modify this:

CheckNetworkAvailable().execute("$domain/get.php?username=" + email.text + "&password=" + password!!.text + "&type=m3u&output=ts")

to

CheckNetworkAvailable().execute("$domain/get.php?username=" + email.text + "&password=" + password!!.text + "&type=m3u_plus&output=mpegts")

My android studio log:
https://hastebin.com/nupofuhafo.properties

Thanks, regards Alex

searchActivity error

The searchActivity.java file is not found in the repository, please appreciate your response

cannot login app

hiya

first of all thanks for the nice app i am trying to test it using my test xstream server

but i cannot connect on it

i have changed the login url information so it can try to load from my xstream test server but its not working

so i have decided to enable debugger to check for errors

and i am getting this on the log when i try to login with user and password i have created on xstream

on menu it shows account not found and cannot login

and on debugger i see this error

08-12 14:58:52.984 23180-23253/com.muparse E/Google: false
08-12 14:59:00.772 23180-23265/com.muparse E/Google: false
08-12 14:59:09.773 23180-23269/com.muparse E/Google: false
08-12 14:59:34.636 23180-23382/com.muparse E/Google: false

any ideas on how to fix this?

Login?

How to remove the login?
And how to put list.m3u8 per link?
tks

Failure to compile 2022

Gradle sync failed: Cause: reached end of stream after reading 8844 bytes; 9630 bytes expected .
Upgrade AGU dependency from 4.0.0 for x.x.x
Cause: invalid block type

@sajjadjaved01

searchActivity don't exist

the file searchActivity don't exist
why can I authorise just login and password just i added in firebase

m3u error when youtube link - Show in Grids not exist

Hi sajjad0321
I try using your project with a test m3u, however if a link is youtube (not extension, just end with numbers) list cant load and gives errors. Can you fixed it if possible?

Also I cant find how to make list "Show in Grids" as you mention in readme, seems not exist in code (not a logo decoder as well, can use btw Android-Universal-Image-Loader by nostra13, https://github.com/nostra13/Android-Universal-Image-Loader).

Thank you for you time.

php files?

Hello :)

Would you please tell me where i can find the php files or paste a link for me?

Greetings.

Queries

Hi guys

Who can help me with the DRC channels code?
Like :
Digital-congo
RTNC
RTNC 2
Télé 50
RTVS1
Congo World TV
Héritage TV
Ctv
Congo web TV
Pstv
RTGA
Kin24
Antenne A
Canal Kin
Nyota TV

Please your help Will be more appreciate

Juste email me at "[email protected]"
I need the source code m3u for my Android App

Account not found.

I'm changing this line:

public final String domain = "URL";

And trying the username and password. Each time "Account not found." error.

The search bar does not work.

The search bar does not work.
The error is in the playlistadapter.java class in the Filter method, the loop does not work, it displays the blank list.
Part of the source code of the Playadapter.java class, which does not work:

    @OverRide
    public Filter getFilter () {
        return new Filter () {// TODO search it on github
            @OverRide
            protected void publishResults (CharSequence constraint, FilterResults results) {
                mItem.clear ();
                //mItem.addAll((ArrayList ) results.values);
                notifyDataSetChanged ();
            }

            @OverRide
            protected FilterResults performFiltering (CharSequence constraint) {
                FilterResults results = new FilterResults ();
                if (! (constraint.length () == 0)) {
                    mItem.clear ();
                    final String filtePatt = constraint.toString (). toLowerCase (). trim ();
                    for (M3UItem itm: mItem) {
                        if (itm.getItemName (). toLowerCase (). contains (filtePatt)) {
                            Toast.makeText (mContext, "Google", Toast.LENGTH_SHORT) .show ();
                            mItem.add (itm);
                        }
                        mItem.add (itm);
                    }
                }
                results.values ​​= mItem;
                results.count = mItem.size ();
                return results;
            }
        };
    }

How to solve this problem?

App not opening

Please Give me any read me text.. to proper set up of the android studio. I am facing an app error when i am opening its closing fraction of seconds....

can't build..

hey guys i tried to build it but it seems in bad shape..missing class login and the json file..
can i get help on this?

App does load the channels list

It appears that I am having the same issue as #21

In the application, I changed the following line to point to my own xtream server:
public final String domain = "SERVER URL HERE"; //http://portal.example.com:8001";

After testing the login, it authenticates my real credentials. It returns "Account not found" for an invalid login which shows that part is working properly. After providing a correct login, it will authenticate me but it will not load the list of channels. The list is just blank. The server has a lot of channels and I even tested it with another server. They all don't show anything.

Remove default channels

First of all! Congratulations for this source!! It's unbelievable! much thanks for this!!

Well...I have my own list on a link.m3u
Tried to replace links (simiptv) from my own, but the default channels is showing up again!

Where can I disable default channel e add my own url?

Blank Screen in MainActivity

I can login to the app by entering my username and password but in app I only see a white screen, blank screen only. where can I be making a mistake ?

How to?

Best regards. How use this source code?
I try import and open but have more errors?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.