I was sure I had already attached them in my previous post, but for some reason it's not there so here it goes again
TSmedia enigma2 plugin 1.0
Re: TSmedia enigma2 plugin 1.0 #1921
Re: TSmedia enigma2 plugin 1.0 #1922
Re: TSmedia enigma2 plugin 1.0 #1923
Posted 31 March 2017 - 17:09
always users complaining about the movies and series sections about no enough addons to watch movies and the movies servers are not working.
Personally i do not use movies section because i use the arabic section for watching movies and tv shows with arabic subtitles and almost everything available.
1channel is good but blocked for many
if there one or two good series or movies sites to add to movies section and to maintain and to update will be good.
Edited by mfaraj57, 31 March 2017 - 17:09.
Re: TSmedia enigma2 plugin 1.0 #1924
Posted 31 March 2017 - 18:41
@mfaraj57 - the problem is the plugin is extremely popular and so when there is a list of around 50 movies addons in the menu but only 3-4 work users will obviously like to use them again. Everybody has their favourite addons and users search for different subjects. For me there are not many addons working that we can use to watch classic tv shows from the 70s and 80s so for us only showbox and searchalluc can help with these shows. Nothing else does. Also, out of the remaining addons available that work believe it or not there are some things that you just cannot find. For example, a good quality search result for Les Miserables 25th Anniversary Show! The plugin is very important to a lot of us who rely on it and helps to pass the time doing something we enjoy so it is always nice to have updates where possible to addons. Thanks mfaraj57 for your good work and also to mick80 for his enthusiasm and great help also. Some of us cannot do without our daily use of tsmedia!
Re: TSmedia enigma2 plugin 1.0 #1925
Posted 31 March 2017 - 19:22
Tsmedia kodi addons stop frequently and not updated in many cases as well as sources site change their script frequently which make corresponding addon unfunctional.
I try my best and it is good that i do not forgive after these years from working daily to keep tsmedia alive
I plan to put three or four movies addon in movies section and to support and updatw them only but i have to know what users like.
Re: TSmedia enigma2 plugin 1.0 #1926
Posted 31 March 2017 - 19:41
Speaking of the addons you cooked up today, I just installed them, but while Videomediaset works fine, I didn't even get to see 123movies in action because that domain hd.tv is currently offline... that was fast
Still, let's wait it out and see, perhaps it's just a temporary glitch. Otherwise I guess they have switched entirely to seriesonline.io as that one is up and running as normal, so that should become the baseurl.
Re: TSmedia enigma2 plugin 1.0 #1927
Posted 1 April 2017 - 06:01
Hy Mfaraj57
Could be updated Hungarian addons? Unfortunately source changed.
plugin Name:international_plugin.video.movieshark_
plugin Name:international_plugin.video.filmezz
plugin Name:international_plugin.video.movstream
plugin Name:international_plugin.video.divixmozi
Many thanks to your works!!
Re: TSmedia enigma2 plugin 1.0 #1928
Re: TSmedia enigma2 plugin 1.0 #1929
Posted 1 April 2017 - 18:36
Hy Mfaraj57
Could be updated Hungarian addons? Unfortunately source changed.
plugin Name:international_plugin.video.movieshark_
plugin Name:international_plugin.video.filmezz
plugin Name:international_plugin.video.movstream
plugin Name:international_plugin.video.divixmozi
Many thanks to your works!!
New version kodi addons here:
https://repo.movieshark.xyz/plugins/
Re: TSmedia enigma2 plugin 1.0 #1930
Posted 1 April 2017 - 18:58
if there one or two good series or movies sites to add to movies section and to maintain and to update will be good.
So, I just took some time to dig into a few websites I've been using for quite a while to cast videos from android either to the e2 box or the smart tv, they seem to be pretty stable (just the usual domain changes from time to time), but I tried to focus just on those who have direct google links in addition to openload and such. No real breakthrough for some of them though. For instance these 3
https://xmovies8.ru/ https://watch5s.is/ https://fmovies.se/
I could only get so far in breaking down the way they work when it comes to detecting the final url. For example, I'm quite positive watch5s comes down to this to find the mp4 link
'http://play.watch5s.is/grabber-api/episode/'+EPISODEID'?token=TOKEN
However, only the EPISODEID is easy to find. I don't know, I see there's this scraper for watch5s on github, maybe you'll be able to figure something out.
https://github.com/XvBMC/repository.xvbmc/blob/master/plugin.video.saltsrd.lite/scrapers/watch5s_scraper.py
The other two websites present similar problems as well. On the other hand, a couple other websites should be a walk in the park for you just like 123movies was. This one (gomovies.sc) touts itself as being the original 123movies, and they've recently moved to this new domain. It's definitely different from hd.tv because they don't have the same stuff, but they have a similar structure. Anyway, here it is:
baseurl="https://gomovies.sc" MOVIES https://gomovies.sc/movie/filter/movies/lastest/all/all/all/all/ https://gomovies.sc/movie/filter/movies/view/all/all/all/all/ https://gomovies.sc/movie/filter/movies/favorite/all/all/all/all/ https://gomovies.sc/movie/filter/movies/rating/all/all/all/all/ https://gomovies.sc/movie/filter/movies/imdb_mark/all/all/all/all/ TV SHOWS https://gomovies.sc/movie/filter/seasons/lastest/all/all/all/all/ https://gomovies.sc/movie/filter/seasons/view/all/all/all/all/ https://gomovies.sc/movie/filter/seasons/favorite/all/all/all/all/ https://gomovies.sc/movie/filter/seasons/rating/all/all/all/all/ https://gomovies.sc/movie/filter/seasons/imdb_mark/all/all/all/all/ SEARCH 'https://gomovies.sc/search-query/'+SEARCH
After that, you go ahead and grab all the movie links under 'movies-list movies-list-full' and build them like this, basically tacking on /10/watching/
https://gomovies.sc/movie/randommovietitle/10/watching/
Then you fetch the embed links under 'data-drive=' And once again this embed link has 'sources: [{file:' which is the playable movie. As for tv series, you need an extra step at the beginning to create the watching links. A 4-digit id, which you find under 'data-url=' right next to movie_details, gets to be part of the watching link.
'https://gomovies.sc/tv/randomseries/'+SEASONID'-1/watching/'
From then on it's the same routine as for movies.
Then there's losmovies.cc. This one has google links as well as links to different host sites, mainly openload. Grabbing the mp4 url for google vids in this one is just as easy, as any movie/tv show has an embed link under 'data-height=' which in turn contains the final url again under 'sources: [{"file".'
So, that's all I have for now. If you manage to work your magic for some of these, I will gladly churn out some more thumbnails to make the addons more stylish
Edited by mick80, 1 April 2017 - 19:03.
Re: TSmedia enigma2 plugin 1.0 #1931
Re: TSmedia enigma2 plugin 1.0 #1932
Posted 2 April 2017 - 04:04
Hy Mfaraj57
Could be updated Hungarian addons? Unfortunately source changed.
plugin Name:international_plugin.video.movieshark_
plugin Name:international_plugin.video.filmezz
plugin Name:international_plugin.video.movstream
plugin Name:international_plugin.video.divixmozi
Many thanks to your works!!
will look from them this ,will fix what,s possible
thanks
Re: TSmedia enigma2 plugin 1.0 #1933
Posted 2 April 2017 - 04:50
@mfaraj57
is it passible to add karwan.tv?
There is kodi addon include same live channels called plugin.video.kurd
https://github.com/H....kurd-8.1.0.zip
i will check if is running with TSmedia without prolems
Re: TSmedia enigma2 plugin 1.0 #1934
Posted 2 April 2017 - 06:38
regarding watch5s the leading url is
https://play.watch5s.is/grabber-api/episode/236142?token=xndUK3hQ
stream_url should be get with using referrer url with adding 'watch' to movie link
https://watch5s.is/movie/here-alone/watch/
but still get response 404 with using these paramaeters
import requests print requests.get('https://play.watch5s.is/grabber-api/episode/236142?token=xndUK3hQ', headers={'referer': 'https://watch5s.is/movie/here-alone/watch/','user-agent':'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'}).content >{"status":"404"}
i have to study the github link may find something useful to get the token and how to get the content of token link
Re: TSmedia enigma2 plugin 1.0 #1935
Posted 2 April 2017 - 06:46
Meanwhile, I finally got around to testing 123Movies this morning, and while it's now super fast overall compared to the previous version, only movies work fine, while tv shows and the search function might need a little more tweaking. In fact after selecting a tv show, a random episode starts playing immediately instead of getting the playlist of all the available episodes in a season. As for searches, the screen simply turns black after hitting ok as if a video would start playing instead of showing the results of that search.
Re: TSmedia enigma2 plugin 1.0 #1936
Posted 2 April 2017 - 07:27
yes i noticed that for strange behavior of search,i checked the default.py the parameters for search menu i put number 103 and should be 1 but do not know why 103 cause this behavior if it is,however no problem to fix whatever the cause,by the way TSmedia provokes virtual keyboard when find word search in title but if search put in other languages will not do anything.
regarding episodes need some code to get the episodes instead playing the main episode vide
Re: TSmedia enigma2 plugin 1.0 #1937
Re: TSmedia enigma2 plugin 1.0 #1938
Posted 2 April 2017 - 09:32
yes,i used same parsing code for movies and shows,actually should be different,not expect to be problem to separate them
regarding the search,just there is mistake in third mode paramater in addDir i put 3 actually it is 103,this mode paramater inform the plugin where to go in next click. mode 3(inform tsmedia to go to player) while mode 103 get the results of search
Re: TSmedia enigma2 plugin 1.0 #1939
Posted 2 April 2017 - 12:49
There is kodi addon include same live channels called plugin.video.kurd@mfaraj57
is it passible to add karwan.tv?
https://github.com/H....kurd-8.1.0.zip
i will check if is running with TSmedia without prolems
Hi mfaraj57
but in this Addon not the Channels have include i will to watch.
For example i will watch this channels
http://karwan.tv/suroyo-tv.html or
http://karwan.tv/ishtar-tv.html
Can you integrate this channels too?
Re: TSmedia enigma2 plugin 1.0 #1940
4 user(s) are reading this topic
0 members, 4 guests, 0 anonymous users