Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
47 user(s) are online (27 user(s) are browsing Forums)

Members: 0
Guests: 47

more...

Support us!

Headlines

Forum Index


Board index » All Posts (Mozzerfan)




Re: RunInUAE - Install fails
Just popping in
Just popping in


@n3m3 and amigasociety

Just to clarify. He means the dir-command in c:

Go to top


Re: RunInUAE r8 beta 6 (JIT) please test!
Just popping in
Just popping in


@AcillClassics

I remember that in 1 version of runinuae the joystickports were reversed.
Can you try the other joystickport?

Go to top


Re: WormHole: great tool to easily transfer files via LAN
Just popping in
Just popping in


@Reth

Yes I managed to get this working. I use a tap network connection
for qemu, and give AOS a static ip address in the same range as Windows.
Works like a charm. EDIT:It should also work with DHCP.Although it takes a long time for OS4 to find the DHCP settings.
EDIT2: with tap network connection, the speed under OS4 is very slow. I get about 700K/s to 1MB/s with my 1 Gbps connection. Previously mentioned 16K/s is on my Mister.
So for large files it's better to use an usb-stick.


Edited by Mozzerfan on 2025/4/25 20:06:31
Edited by Mozzerfan on 2025/4/25 20:06:58
Edited by Mozzerfan on 2025/4/25 20:09:22
Edited by Mozzerfan on 2025/4/27 21:06:47
Edited by Mozzerfan on 2025/4/27 21:10:31
Go to top


Re: Problem configuring sound card and AHI settings on X5000/40
Just popping in
Just popping in


@mbrantly

Did you also set unit 0 - 3 in ahi prefs?

Go to top


Re: How To: Video Streaming (Odyssey / IBrowse)
Just popping in
Just popping in


@MickJT

email and PM sent.

Go to top


Re: How To: Video Streaming (Odyssey / IBrowse)
Just popping in
Just popping in


@Maijestro

You can go to tonvid.com and search for vevo

Go to top


Re: How To: Video Streaming (Odyssey / IBrowse)
Just popping in
Just popping in


@MickJT

Here are 2 that won't work:

The weekend: https://www.youtube.com/watch?v=MLlSSJ0z7xM

Alicia Keys: https://www.youtube.com/watch?v=rywUS-ohqeE

With WEBSAFARI they are not found.
ANDROID finds them, but won't display HLS links.

Go to top


Re: How To: Video Streaming (Odyssey / IBrowse)
Just popping in
Just popping in


@MickJT

Yes, WEBSAFARI works with HLS links.
The strange part is, it won't work with vevo-music videos. With these no links are found.
With ANDROID, vevo music video link is found.

Go to top


Re: How To: Video Streaming (Odyssey / IBrowse)
Just popping in
Just popping in


@K-L

Yeah the ANDROID option works, but gives no HLS links, so the MP4 file is downloaded to ram, which can take a couple of seconds more to download, so I prefer the HLS links.

Go to top


Re: How To: Video Streaming (Odyssey / IBrowse)
Just popping in
Just popping in


@walkero

I would love to give you more information, but yt.rexx finds no video links with your video url.

Go to top


Re: How To: Video Streaming (Odyssey / IBrowse)
Just popping in
Just popping in


@walkero

I just tried with a few videos. 360p HLS file also has no audio with none of them.

Go to top


Re: How To: Video Streaming (Odyssey / IBrowse)
Just popping in
Just popping in


@K-L

Yes you're right. No audio with the HLS files with both emotion and dvplayer.

Go to top


Re: How To: Video Streaming (Odyssey / IBrowse)
Just popping in
Just popping in


@TearsOfMe

Yes with the IOS option HLS files show up again. Thanks.

Go to top


Re: How To: Video Streaming (Odyssey / IBrowse)
Just popping in
Just popping in


@hotrod

Because of the unfreed signals error at exit, I had to write a new version of the script. It's in the other thread.
https://www.amigans.net/modules/newbb/ ... id=150348#forumpost150348

@walkero

Yes the selected file is downloaded to ram:.
But if you use the HLS links to the video, it only takes a second, because the HLS file only contains links to the video.
The first link with yt.rexx usually is a 360p MP4 file. That takes more time to download. The rest of the links are HLS files.

Anyway. YT.rexx isn't working for now.

Go to top


Re: YT.rexx results in stuttering video [Solved]
Just popping in
Just popping in


@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: aiostreams new release
Just popping in
Just popping in


With some videos (for example some vevo videos), I get an I/O error too.
When I download the HLS file to RAM, and play it from RAM with Emotion, the video plays fine.

Go to top


Re: How To: Video Streaming (Odyssey / IBrowse)
Just popping in
Just popping in


@K-L

Bummer. I made an other error in the script, so emotion wasn't working anymore with the script.
Hopefully final version is in the other thread.

Go to top


Re: YT.rexx results in stuttering video [Solved]
Just popping in
Just popping in


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:
check=1
CALL AddLib('rexxsupport.library',0,-30,0)
do until check=0
/*say showlist('W','DVPlayer GUI')*/
/*say check*/
wait 6
IF app="dv" then DO
check=showlist('W','DvPlayer AsyncIO Task')
END
IF app="emo" THEN DO
check=showlist('W','emotion video thread')
END
end

trash:
check2=1
Do until check2=0
check2=showlist('W','DVPlayer GUI')
End
"delete RAM:videoplayback"
exit


Edited by Mozzerfan on 2024/9/8 8:04:46
Edited by Mozzerfan on 2024/9/8 8:07:38
Edited by Mozzerfan on 2025/11/1 21:42:19
Edited by Mozzerfan on 2025/11/23 0:13:07
Edited by Mozzerfan on 2025/11/26 5:42:50
Edited by Mozzerfan on 2025/11/26 23:56:55
Go to top


Re: How To: Video Streaming (Odyssey / IBrowse)
Just popping in
Just popping in


@K-L

Nice guide K-L.

Unfortunately I made a few errors in the script, and it has changed again, so you may want to edit your guide. The current version is in the other yt.rexx thread.

Also when using the script for dvplayer, playmode in yt.cfg really has to be 1.

Go to top


Re: YT.rexx results in stuttering video [Solved]
Just popping in
Just popping in


Unfortunately I made a few errors in the previous script.
When using the script for dvplayer, playmode in yt.cfg really has to be 1.
Here 's is the final version. Hopefully this time it's the 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~="dv" or "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/6 20:34:30
Go to top



TopTop
(1) 2 »



Polls
Running AmigaOS 4 on?
AmigaOne SE/XE or microA1 12% (26)
Pegasos2 3% (8)
X5000 22% (48)
X1000 14% (30)
A1222 8% (19)
Sam 440/460 18% (40)
Classic PowerPC Amiga 2% (6)
WinUAE emulation 7% (16)
Qemu emulation 9% (21)
Total Votes: 214
The poll closed at 2025/12/1 12:00
6 Comments


Powered by XOOPS 2.0 © 2001-2024 The XOOPS Project