Jump to content


mfaraj57

Member Since 20 Jul 2009
Offline Last Active 08 Feb 2021 22:36
*****

#1043413 TSmedia enigma2 plugin 1.0

Posted by mfaraj57 on 15 April 2019 - 09:02

hey mick

regarding plugin.video.wnbc it is not running on TSmedia but runs after converting code to TSmedia format.

but it is not complete and may contain some error,test in your side and see

i can not figure the results because the videos not allowed in my country.

these tests from windows TSmedia

screenshot-1070.png

 

screenshot-1071.png

 

screenshot-1072.png




#1037617 TSmedia enigma2 plugin 1.0

Posted by mfaraj57 on 31 March 2019 - 19:12

hi

soon will look into it and if get any progress will inform you

thanks




#1033233 TSmedia enigma2 plugin 1.0

Posted by mfaraj57 on 20 March 2019 - 08:36

After exploring youtube api  i have found that filtering is not working any more.

look for this request

https://www.googleapis.com/youtube/v3/search?part=snippet&q=&type=video&maxResults=45&videoCategoryId=10&order=title&safeSearch=none&key=AIzaSyACH1YzEacUk9Y_k2L7tLZPEFxQEZ7k-II

This shoould get the music videos alphahpetically(paramater  order=title but actually not

title Marshmello ft. Bastille - Happier (Official Music Video)
title Panic! At The Disco - High Hopes (Official Video)
title Lauv & Troye Sivan - i'm so tired... [Official Audio]
title lofi hip hop radio - beats to relax/study to
title ALL THE WAY - Jacksepticeye Songify Remix by Schmoyoho
title Ed Sheeran - Perfect Symphony (with Andrea Bocelli)
title Jason Derulo, LAY, NCT 127 - Let's Shut Up & Dance [Official Music Video]
title Steve Aoki - Waste It On Me feat. BTS (Lyric Video) [Ultra Music]
title Marshmello ft. Khalid - Silence (Official Lyric Video)
title Lauv - I Like Me Better [Official Audio]
title Panic! At The Disco - House of Memories (Official Audio)
title Alec Benjamin - Let Me Down Slowly [Official Music Video]
title Panic! At The Disco - King Of The Clouds (Official Audio)
title One Direction - Night Changes (Official Video)
title Ariana Grande - breathin (audio)
title Poo Bear ft. Justin Bieber & Jay Electronica - Hard 2 Face Reality (Lyric Video)

try to change parameter to order=rating to get top rated music clips but same filtered results as title

https://www.googleapis.com/youtube/v3/search?part=snippet&q=&type=video&maxResults=45&videoCategoryId=10&order=rating&safeSearch=none&key=AIzaSyACH1YzEacUk9Y_k2L7tLZPEFxQEZ7k-II
title Marshmello ft. Bastille - Happier (Official Music Video)
title Panic! At The Disco - High Hopes (Official Video)
title Lauv & Troye Sivan - i'm so tired... [Official Audio]
title lofi hip hop radio - beats to relax/study to
title ALL THE WAY - Jacksepticeye Songify Remix by Schmoyoho
title Ed Sheeran - Perfect Symphony (with Andrea Bocelli)
title Jason Derulo, LAY, NCT 127 - Let's Shut Up & Dance [Official Music Video]
title Steve Aoki - Waste It On Me feat. BTS (Lyric Video) [Ultra Music]
title Marshmello ft. Khalid - Silence (Official Lyric Video)
title Lauv - I Like Me Better [Official Audio]
title Panic! At The Disco - House of Memories (Official Audio)
title Alec Benjamin - Let Me Down Slowly [Official Music Video]
title Panic! At The Disco - King Of The Clouds (Official Audio)
title One Direction - Night Changes (Official Video)
title Ariana Grande - breathin (audio)
title Poo Bear ft. Justin Bieber & Jay Electronica - Hard 2 Face Reality (Lyric Video)

same thing apply to other order parameters

order	string
The order parameter specifies the method that will be used to order resources in the API response. The default value is relevance.

Acceptable values are:
date – Resources are sorted in reverse chronological order based on the date they were created.
rating – Resources are sorted from highest to lowest rating.
relevance – Resources are sorted based on their relevance to the search query. This is the default value for this parameter.
title – Resources are sorted alphabetically by title.
videoCount – Channels are sorted in descending order of their number of uploaded videos.
viewCount – Resources are sorted from highest to lowest number of views. For live broadcasts, videos are sorted by number of concurrent viewers while the broadcasts are ongoing.

do not know why,but i am sure filter option in google api is not working anymore.




#1019917 "print" statement inside Enigma2 plugins

Posted by mfaraj57 on 20 February 2019 - 12:08

print statement is bad in enigma and annoying you can use your own log system is much better as following

def log(label_name = '', data = ''):
    try:
        data = str(data)
        
        fp = open('/tmp/mylog', 'a')
        fp.write('\n' + str(label_name) + ': ' + data)
        fp.close()
    except:
        pass

log("error",error)



#1015325 TSmedia enigma2 plugin 1.0

Posted by mfaraj57 on 11 February 2019 - 19:29

Hi mick

thank you

yes you are right,just missed file in the today last updates

now should be ok ..




#1010169 urllib2.urlopen and signal.alert

Posted by mfaraj57 on 30 January 2019 - 22:20

Yes,but the typical use of twisted web to run in seperate thread for running processes.
Requests has also timeout argument and it is very simple,efficient and easy to control.


#1010133 urllib2.urlopen and signal.alert

Posted by mfaraj57 on 30 January 2019 - 21:07

Python requests is good choice,twisted web sometimes fails with secure https


#1007141 TSmedia enigma2 plugin 1.0

Posted by mfaraj57 on 25 January 2019 - 00:06

Welcome mick
I examined raiplay in my dm900 openatv it is very fast and no problem at all,also i did not edit any code for resolving process.
So expect some local factors cause the problem in your side,may be the free space or something else.


#983913 Tunein radio plugin

Posted by mfaraj57 on 18 December 2018 - 17:41

links for the plugin

https://wiki.openpli...ki:Tunein_Radio

 

https://github.com/m...j57/tuneinradio




#967481 TSmedia enigma2 plugin 1.0

Posted by mfaraj57 on 18 November 2018 - 18:41

Thanks
I think this error from youtube dll
I will try to fix it
However if your image includes recent python verison this should not be a problem


#953494 TSmedia enigma2 plugin 1.0

Posted by mfaraj57 on 24 October 2018 - 14:32

Thanks

i planned to do it today.




#951506 TSmedia enigma2 plugin 1.0

Posted by mfaraj57 on 20 October 2018 - 22:39

Ok no problem with that
Tomorrow will test that and fix it.
I explorer some videos in raireplay site and they use only the m2u8 links


#951354 TSmedia enigma2 plugin 1.0

Posted by mfaraj57 on 20 October 2018 - 16:51

Hi mick80

now we get three links,two mp4 and ends with _1800.mp4 and they are not working and when _1800.mp4 replaced with _800.mp4 the link is still not working

i have tested the m3u8 link it is working as you have said and also downloadable.

i do not know yet what mp4 link should be to work.




#937487 TSmedia enigma2 plugin 1.0

Posted by mfaraj57 on 22 September 2018 - 22:42

Just sent update and should solve the problem.
Yes oĺd icon is better but replaced for now with this because the old one is not accepted by vu plus boxes.
Will try to keep the old one when make it compatable with cu boxes


#935043 TSmedia enigma2 plugin 1.0

Posted by mfaraj57 on 17 September 2018 - 09:52

@smsamsam

Very excellent work.

Just tested with E2iPlayer and I was impressed by the design and the available keys,also movement between different keys is smooth as well as availablity of many languages not available in classical enigma keyboard.

i did not see google suggestion in action ,may be not implented yet in the last update.

i know the work still in the begining but some notes if added the keyboard will be perfect.

1- shortcuts for frequent  key usage like insert space,clearall,move marker to right or left or end or begining,

2- Assignment colors to main actions as in classical enigma keyboard(because user used to use them) ,green for enter,yellow for langauage

3-sms typing.

4-need some work with full hd skin and hd skin(the keyboard located down in the tv screen with hd skin and small with full hd skin)

 

RO_YA-1792018-923.png

 

RO_YA-1792018-918.png

RO_YA-1792018-916.png