Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
84 user(s) are online (72 user(s) are browsing Forums)

Members: 1
Guests: 83

NinjaCyborg, more...

Support us!

Headlines

 
  Register To Post  

« 1 2 3 (4)
Re: YT.rexx results in stuttering video [Solved]
Just popping in
Just popping in


See User information
Bummer. I made an error in the script again, so it wasn't working anymore with emotion.

Here is the hopefully final version.
/* */
/* videoplayer.rexx */
/* usage: rx videoplayer.rexx <url> <app> silent */
/* <app> can be dv or emo. */
/* when no <app> option is entered, default app is dvplayer  */
/* with silent option, there is no curl cli ouput. */
/* */
options results
parse arg url app silence
if app="silent" then silence="silent"
if app~="emo" then app="dv"
if app="emo" then appfile="APPDIR:Emotion"
if app="dv" then appfile="APPDIR:DvPlayer"
if silence="silent" then opt="-s"
else opt=""
address command
"c:curl" url opt "-o ram:videoplayback"
if app="emo" then do
appfile "ram:videoplayback"
end
else do
"C:wbrun" appfile "ram:videoplayback"
end

checklist:
CALL AddLib('rexxsupport.library',0,-30,0)
check=""
do until check=0
wait 2 /* must be wait 4 on sam460 */
/* say showlist('W','DVPlayer GUI')*/
check=showlist('W','DVPlayer GUI')
end

trash:
wait 2 /* must be wait 4 on sam460 */
"delete ram:videoplayback"
exit


Edited by Mozzerfan on 2024/9/8 9:04:46
Edited by Mozzerfan on 2024/9/8 9:07:38
Go to top
Re: YT.rexx results in stuttering video [Solved]
Site Builder
Site Builder


See User information
I would like to say a couple of things, based on what it was mentioned before.

In a couple of replies, it was mentioned that the aiostreams website is an Invidious server. Actually, it is not.
But, it uses Invidious servers to get data using their APIs. That's why when the third party Invidious servers are down, I need to switch to different servers that keep on working.


About the tonvid.com, which is a great website, I would like to warn you that by providing the website owner with your API key, you provide them with access to your YouTube accounts. Based on their Privacy policy, they do not mention how they deal with the API keys. They only write the following

Quote:
TONVID.COM only collects personal information that is provided through the forms on the website and to our email addresses.


If I understand correctly, they do collect the API keys, unless if they store it only at the browser local storage or into a cookie. But personally, I cannot be sure about it because they do not clarify how they deal with it.

I am not saying that you shouldn't use tonvid.com, but please check what permissions this API key has in your account and be aware of the danger.


aiostreams website doesn't collect any data. There are some logs of the requests done, but this doesn't include any personal data.

Follow me on
Ko-fi, Twitter, YouTube, Twitch
Go to top
Re: YT.rexx results in stuttering video [Solved]
Just popping in
Just popping in


See User information
@walkero

From what I understand of it, Tonvid stores the api-key in a cookie.
If for example, you stored the api-key in Odyssey, and you visit Tonvid with IBrowse, the apikey must be entered again in IBrowse.

edit: Tonvid was also used in SMTube.

Go to top
Re: YT.rexx results in stuttering video [Solved]
Just can't stay away
Just can't stay away


See User information
@walkero
Quote:
If I understand correctly, they do collect the API keys, unless if they store it only at the browser local storage or into a cookie. But personally, I cannot be sure about it because they do not clarify how they deal with it.
According to https://www.tonvid.com/terms-of-use.php Legislation and Jurisdiction This website is subject to Spanish law, therefore there should be no problems.
Would be something else if it would be run in a country without any usable privacy and consumer protections laws, such as North Korea, China, Russia, or the USA.

@Mozzerfan
Quote:
edit: Tonvid was also used in SMTube.
Tonvid seems to be a project of the SMPlayer and SMTube developer Ricardo Villalba.

Go to top
Re: YT.rexx results in stuttering video [Solved]
Just can't stay away
Just can't stay away


See User information
@walkero

Quote:
In a couple of replies, it was mentioned that the aiostreams website is an Invidious server. Actually, it is not. But, it uses Invidious servers to get data using their APIs. That's why when the third party Invidious servers are down, I need to switch to different servers that keep on working.


Thanks for clarification (I thought you installed your own invidious server). I'm also using https://invidious.fdn.net wich works flawlessly with Odyssey.

--
AmigaONE X1000 and Radeon RX 560
Go to top
Re: YT.rexx results in stuttering video [Solved]
Site Builder
Site Builder


See User information
@K-L
Quote:
Thanks for clarification (I thought you installed your own invidious server).

Nah... too much work... And the only thing I needed was just a few data for the videos. My goal was to serve aiostreams, not make a YouTube alternative. But here we are :D :D :D

Follow me on
Ko-fi, Twitter, YouTube, Twitch
Go to top
Re: YT.rexx results in stuttering video [Solved]
Just can't stay away
Just can't stay away


See User information
@K-L

Quote:

Thanks for clarification (I thought you installed your own invidious server). I'm also using https://invidious.fdn.net wich works flawlessly with Odyssey.


Thanks for the tip, it works very well with Odyssey.

MacStudio ARM M1 Max Qemu//Pegasos2 AmigaOs4.1 FE / AmigaOne x5000/40 AmigaOs4.1 FE
Go to top
Re: YT.rexx results in stuttering video [Solved]
Quite a regular
Quite a regular


See User information
Has anyone had much joy getting YT 3.1 working with the AIOstreams site and Emotion?

I had it working well before I updated to 3.1 but now hardly any videos seem to work.
Mostly getting I/O errors now.

Cheers

Go to top
Re: YT.rexx results in stuttering video [Solved]
Just can't stay away
Just can't stay away


See User information
@TiredOfLife

Quote:
TiredOfLife wrote:Has anyone had much joy getting YT 3.1 working with the AIOstreams site and Emotion?

I had it working well before I updated to 3.1 but now hardly any videos seem to work.
Mostly getting I/O errors now.


There should be no problems with the latest published version of YT.REXX. Have you followed these instructions?
https://www.amigans.net/modules/publisher/item.php?itemid=26

I can't test it myself at the moment as I'm without hardware

MacStudio ARM M1 Max Qemu//Pegasos2 AmigaOs4.1 FE / AmigaOne x5000/40 AmigaOs4.1 FE
Go to top
Re: YT.rexx results in stuttering video [Solved]
Quite a regular
Quite a regular


See User information
@Maijestro

I've followed the instructions in the YT guide and those.

Cheers

Go to top
Re: YT.rexx results in stuttering video [Solved]
Quite a regular
Quite a regular


See User information
@Maijestro

I've played around some more.
I used the guidance from the manual for the settings.
I then manually changed the TagOrder as suggested in the guide.
That seems to be working.
I may have picked up some hidden characters when using copy and paste earlier.

Cheers

Go to top
Re: YT.rexx results in stuttering video [Solved]
Just can't stay away
Just can't stay away


See User information
@TiredOfLife

Quote:
TiredOfLife wrote:@Maijestro
I've played around some more.
I used the guidance from the manual for the settings.
I then manually changed the TagOrder as suggested in the guide.
That seems to be working.
I may have picked up some hidden characters when using copy and paste earlier.


Thanks for your feedback that it still works, in the meantime I have also had it tested by someone else and he was also able to confirm that Emotion is still able to play the streams in 1080p.

The important thing here is that the site https://invidious.fdn.fr/feed/popular is used and so we can continue to stream YouTube videos in high resolutions 1080p which works really well thanks to YT.Rexx from MickJT.

MacStudio ARM M1 Max Qemu//Pegasos2 AmigaOs4.1 FE / AmigaOne x5000/40 AmigaOs4.1 FE
Go to top

  Register To Post
« 1 2 3 (4)

 




Currently Active Users Viewing This Thread: 1 ( 0 members and 1 Anonymous Users )




Powered by XOOPS 2.0 © 2001-2024 The XOOPS Project