a new version.. work on dreamos..
difficulty..
but work :)
a new version.. work on dreamos..
difficulty..
but work :)
this attached file for dreambox
tested on gps 4.2 image. and dream one
issue:
Unfortunately it does not download the covers - posters - backdrops, neither with treading nor getpage.
If anyone wants to participate, they are welcome.
The plugin works, finds movies and runs them.
for pli e atv.. update are on github.
last for atv-pli
major fix..
github updated ..
issue:
The TMDB search does not take into account the language unfortunately :(
nb...
I also adapt with skins, I'm not a sculptor or a designer.
If anyone notices problems on the skin, please ask for help from some skinner ;)
1_0_19_BBD_3A2_110_EEEE0000_0_0_0_20241004205038.jpg1_0_19_BBD_3A2_110_EEEE0000_0_0_0_20241004205026.jpg1_0_19_BBD_3A2_110_EEEE0000_0_0_0_20241004205051.jpg
Hi Lululla,
great to see something moves on this fantastic plugin, the only I use and why I use Enigma2 Receivers.
Do you know if it works on OpenVIX 6.4 or 6.5? I'm not updating my box since a year, as I use the old plugin due some issues with creating the DB, always it freezes. And some issue with the skin, I do use HD, not Full HD.
Thanks
Hi Lululla,
great to see something moves on this fantastic plugin, the only I use and why I use Enigma2 Receivers.
Do you know if it works on OpenVIX 6.4 or 6.5? I'm not updating my box since a year, as I use the old plugin due some issues with creating the DB, always it freezes. And some issue with the skin, I do use HD, not Full HD.
Thanks
I don't know, the only way is to try
ok
Before creating a new version I would like you to try these files, replace the plugin folder and restart
Another issue I see is the overlay transparency. it is quite dark and the backdrop is not really visible. On the stars rating, you wee the TV background.
I'll leave that to the skinner men.
but... work?? now is ok??
Now with the new .zip file, overlay transparency and menu works great with 720p
Backdrop_720p_fix.jpegMenu_720p_fix.jpeg
just the TMDB language stays on English, even if e.g. German is selected.
i see in source.. ok
Did you was able to find the error about the wrong language?
no
you see a way to resolve it in the future?
you see a way to resolve it in the future?
but what questions are these?
if you can resolve the language problem for the movie description.
language is ok on source..
name = self.movielist[self.index]
name = _renewTMDb(name)
self.name = name
name = transMOVIE(name)
name = sub('\\+[1-2][0-9][0-9][0-9]', '', name)
url = 'https://api.themoviedb.org/3/search/movie?api_key=%s&include_adult=true&query=%s%s' % (str(tmdb_api_key), name, self.language)
self.getTMDbMovies(url)
def getTMDbMovies(self, url):
headers = {'Accept': 'application/json'}
request = Request(url, headers=headers)
try:
if pythonVer == 2:
output = urlopen(request, timeout=10).read()
else:
output = urlopen(request, timeout=10).read().decode('utf-8')
except Exception:
self.session.open(MessageBox, _('\nTMDb API Server is not reachable.'), MessageBox.TYPE_ERROR)
return
output = output.replace('&', '&').replace('\\/', '/').replace('}', ',')
output = sub('"poster_path":"', '"poster_path":"https://image.tmdb.org/t/p/w185', output)
output = sub('"poster_path":null', '"poster_path":"https://www.themoviedb.org/images/apps/moviebase.png"', output)
rating = findall('"vote_average":(.*?),', output)
year = findall('"release_date":"(.*?)"', output)
titles = findall('"title":"(.*?)"', output)
poster = findall('"poster_path":"(.*?)"', output)
id = findall('"id":(.*?),', output)
country = findall('"backdrop(.*?)_path"', output)
titel = _('TMDb Results')
if not titles:
self.session.open(MessageBox, _('\nNo TMDb Results for %s.') % self.name, MessageBox.TYPE_INFO, close_on_any_key=True)
else:
self.session.openWithCallback(self.makeTMDbUpdate, moviesList, titel, rating, year, titles, poster, id, country, True, False)
Display More
I have to tell you that I don't know why this plugin doesn't take it.
the plugin is divided into 3 parts (identical in code but different in graphics)
it is very difficult to navigate. but everything can be done.
Can you do it?
I have little time to do everything
debug on telnet
i have a movie bettlejuice and IT language
but are englis on json online
api.themoviedb.org/3/search/movie?api_key=73f658d32c315a6c6f469664260b0fe2&include_adult=true&query=beetlejuice+beetlejuice&language=it
19:42:08.1588 url tmdb= https://api.themoviedb.org/3/search/movie?api_key=73f658d32c315a6c6f469664260b0fe2&include_adult=true&query=cattivissimo+me+4&language=it
19:42:08.2953 getTMDbData url - tmdb = https://api.themoviedb.org/3/movie/519182&language=it?api_key=73f658d32c315a6c6f469664260b0fe2
19:42:08.4217 getTMDbData tmdbid url - tmdb = https://api.themoviedb.org/3/movie/519182?api_key=73f658d32c315a6c6f469664260b0fe2
19:42:08.5800 /usr/lib/enigma2/python/Plugins/Extensions/MovieBrowser/plugin.py:8343: builtins.FutureWarning: Possible nested set at position 10
19:42:08.5817 /usr/lib/enigma2/python/Plugins/Extensions/MovieBrowser/plugin.py:8344: builtins.FutureWarning: Possible nested set at position 10
19:42:08.5839 /usr/lib/enigma2/python/Plugins/Extensions/MovieBrowser/plugin.py:8345: builtins.FutureWarning: Possible nested set at position 10
19:42:08.5863 /usr/lib/enigma2/python/Plugins/Extensions/MovieBrowser/plugin.py:8346: builtins.FutureWarning: Possible nested set at position 10
19:42:08.5890 /usr/lib/enigma2/python/Plugins/Extensions/MovieBrowser/plugin.py:8347: builtins.FutureWarning: Possible nested set at position 10
19:42:08.5934 getTMDbData tmdbid 2 url - tmdb = https://api.themoviedb.org/3/movie/519182/casts?api_key=73f658d32c315a6c6f469664260b0fe2
19:42:08.7338 url tmdb= https://api.themoviedb.org/3/search/movie?api_key=73f658d32c315a6c6f469664260b0fe2&include_adult=true&query=joker+folie+a+deux&language=it
19:42:08.8750 getTMDbData url - tmdb = https://api.themoviedb.org/3/movie/889737&language=it?api_key=73f658d32c315a6c6f469664260b0fe2
19:42:09.0100 getTMDbData tmdbid url - tmdb = https://api.themoviedb.org/3/movie/889737?api_key=73f658d32c315a6c6f469664260b0fe2
19:42:09.1399 getTMDbData tmdbid 2 url - tmdb = https://api.themoviedb.org/3/movie/889737/casts?api_key=73f658d32c315a6c6f469664260b0fe2
19:42:09.3222 url tmdb= https://api.themoviedb.org/3/search/movie?api_key=73f658d32c315a6c6f469664260b0fe2&include_adult=true&query=the+crow+il+corvo&language=it
19:42:09.4499 getTMDbData url - tmdb = https://api.themoviedb.org/3/movie/957452&language=it?api_key=73f658d32c315a6c6f469664260b0fe2
19:42:09.5857 getTMDbData tmdbid url - tmdb = https://api.themoviedb.org/3/movie/957452?api_key=73f658d32c315a6c6f469664260b0fe2
19:42:09.7263 getTMDbData tmdbid 2 url - tmdb = https://api.themoviedb.org/3/movie/957452/casts?api_key=73f658d32c315a6c6f469664260b0fe2
19:42:09.9572 url tmdb= https://api.themoviedb.org/3/search/movie?api_key=73f658d32c315a6c6f469664260b0fe2&include_adult=true&query=back+to+black&language=it
19:42:10.0878 getTMDbData url - tmdb = https://api.themoviedb.org/3/movie/998846&language=it?api_key=73f658d32c315a6c6f469664260b0fe2
19:42:10.2213 getTMDbData tmdbid url - tmdb = https://api.themoviedb.org/3/movie/998846?api_key=73f658d32c315a6c6f469664260b0fe2
19:42:10.3405 getTMDbData tmdbid 2 url - tmdb = https://api.themoviedb.org/3/movie/998846/casts?api_key=73f658d32c315a6c6f469664260b0fe2
19:42:10.4668 url tmdb= https://api.themoviedb.org/3/search/movie?api_key=73f658d32c315a6c6f469664260b0fe2&include_adult=true&query=beetlejuice+beetlejuice&language=it
19:42:10.5720 getTMDbData url - tmdb = https://api.themoviedb.org/3/movie/917496&language=it?api_key=73f658d32c315a6c6f469664260b0fe2
19:42:10.6933 getTMDbData tmdbid url - tmdb = https://api.themoviedb.org/3/movie/917496?api_key=73f658d32c315a6c6f469664260b0fe2
19:42:10.8068 getTMDbData tmdbid 2 url - tmdb = https://api.themoviedb.org/3/movie/917496/casts?api_key=73f658d32c315a6c6f469664260b0fe2
Display More
or Joker. .same
Unfortunately I'm not a coder/programmer. I can test and change something here and there.
Display Morelast for atv-pli
major fix..
github updated ..
issue:
The TMDB search does not take into account the language unfortunately :(
nb...
I also adapt with skins, I'm not a sculptor or a designer.
If anyone notices problems on the skin, please ask for help from some skinner ;)
1_0_19_BBD_3A2_110_EEEE0000_0_0_0_20241004205038.jpg1_0_19_BBD_3A2_110_EEEE0000_0_0_0_20241004205026.jpg1_0_19_BBD_3A2_110_EEEE0000_0_0_0_20241004205051.jpg
Is it compatible With openpli 8.3 ?
Supporting the Enigma2, satellite and IPTV community since 2010.
Independent • Community Driven • Established 2010