Converting videos supported my irix mediaplayer
#1
Converting videos supported my irix mediaplayer
Hello,

I tried different containers, codecs and so on, but couldn't find the best one for the irix mediaplayer.
How can I convert videos to be played on my octane ?

thank you

Sharp X68000 PRO HD 4MB Bluescsi
HP Kayak XA-s, Dual Pentium II 400 Mhz 512 MB Voodoo 3, 2x2TB
Sun SparcStation 5 @ 170 Mhz (TurboSparc), 96MB Ram, TGX+ graphics, 2x18GB SCSI
BeBox Dual PPC 603e @ 133 Mhz, 128 MB Ram 2GB SCSI
SGI Octane R14000 @ 600 Mhz 1GB VPro 12 128MB 8GB SCSI
NeXTCube 68040 @ 25 Mhz 64MB NeXTDimension Board 64MB 2GB SCSI
NeXTStation Color 68040 @ 25 Mhz 64 MB  2GB SCSI
NeXTStation Turbo Mono 68040 @ 33 Mhz 64MB  16GB SCSI
NeXTStation Turbo Color 68040 @ 33 Mhz 128MB 4GB SCSI
AlienWare Aurora R8 I9-9900K @ 5 Ghz 64GB 2 x GeForce RTX 2080TI 11GB SLI 1TB SSD NVMe M2 2TB HD

10Gb optical fiber Internet
octaneirix6530
Octane

Trade Count: (0)
Posts: 129
Threads: 41
Joined: Nov 2019
Location: France
Find Reply
11-25-2019, 03:47 PM
#2
RE: Converting videos supported my irix mediaplayer
IRIX Mediaplayer is notoriously out of date. I recommend downloading nekoware's mplayer.

I'm the system admin of this site. Private security technician, licensed locksmith, hack of a c developer and vintage computer enthusiast. 

https://contrib.irixnet.org/raion/ -- contributions and pieces that I'm working on currently. 

https://codeberg.org/SolusRaion -- Code repos I control

Technical problems should be sent my way.
Raion
Chief IRIX Officer

Trade Count: (9)
Posts: 4,240
Threads: 533
Joined: Nov 2017
Location: Eastern Virginia
Website Find Reply
11-25-2019, 05:48 PM
#3
RE: Converting videos supported my irix mediaplayer
Raion gives you the best advice.

———————————————————————————————
Nevermind if SGI is dead ... In SGI I trust (^_^!)
Octane  1x400Mhz / 2Go Ram / V8 / Irix 6.5.26
def13
Octane

Trade Count: (0)
Posts: 103
Threads: 21
Joined: Jun 2018
Location: Marseille - France
Find Reply
11-25-2019, 08:10 PM
#4
RE: Converting videos supported my irix mediaplayer
Thank you very much !

Sharp X68000 PRO HD 4MB Bluescsi
HP Kayak XA-s, Dual Pentium II 400 Mhz 512 MB Voodoo 3, 2x2TB
Sun SparcStation 5 @ 170 Mhz (TurboSparc), 96MB Ram, TGX+ graphics, 2x18GB SCSI
BeBox Dual PPC 603e @ 133 Mhz, 128 MB Ram 2GB SCSI
SGI Octane R14000 @ 600 Mhz 1GB VPro 12 128MB 8GB SCSI
NeXTCube 68040 @ 25 Mhz 64MB NeXTDimension Board 64MB 2GB SCSI
NeXTStation Color 68040 @ 25 Mhz 64 MB  2GB SCSI
NeXTStation Turbo Mono 68040 @ 33 Mhz 64MB  16GB SCSI
NeXTStation Turbo Color 68040 @ 33 Mhz 128MB 4GB SCSI
AlienWare Aurora R8 I9-9900K @ 5 Ghz 64GB 2 x GeForce RTX 2080TI 11GB SLI 1TB SSD NVMe M2 2TB HD

10Gb optical fiber Internet
octaneirix6530
Octane

Trade Count: (0)
Posts: 129
Threads: 41
Joined: Nov 2019
Location: France
Find Reply
11-26-2019, 10:03 AM
#5
RE: Converting videos supported my irix mediaplayer
i want to install nekoware mplayer but is notoriously hard to do so got stuck into recursive dependencies.
:huh:
soviet
Octane

Trade Count: (0)
Posts: 192
Threads: 22
Joined: Apr 2019
Location: Uruguay
Find Reply
11-28-2019, 03:14 AM
#6
RE: Converting videos supported my irix mediaplayer
Welcome to the dependency hell that is nekoware! 0_o

Project: Temporarily lost at sea
Plan: World domination! Or something...
vishnu
Tezro, Octane2, 2 x Onyx4

Trade Count: (0)
Posts: 1,245
Threads: 41
Joined: Dec 2017
Location: Minneapolis, Minnesota USA
Find Reply
11-28-2019, 04:59 AM
#7
RE: Converting videos supported my irix mediaplayer
Continuing the thread, what would be the best format for an O2 with say a 300mhz R5k proc, given say a size of 320x200 or, dare I suggest 640x480?

My Octane (VPro) plays divx fine, but the O2 presents a slide show, even with a R10 250mhz or R12k 300 mhm cpu.

I'm keen to transcode some of my anime (Mononoke Hime, Patlabor etc) over for the O2.

No longer active. Please do not contact me.
Jacques
Tezro

Trade Count: (0)
Posts: 565
Threads: 53
Joined: May 2018
Location: UK
Find Reply
12-10-2019, 09:14 PM
#8
RE: Converting videos supported my irix mediaplayer
For an O2 with 300mhz R5K I have had luck converting modern mp4 videos using a Linux node (ubuntu, etc..):
avconv -i "$1" -s 640x480 -c:v mpeg1video -q:v 2 -c:a mp2 "$1".mpeg
or (works with nekoware on irix but very slow):
ffmpeg -i "original.mp4" -f mpeg2video -s 640x480 -acodec mp2 new.mpeg

But, sometimes 640x480 seemed sluggish.. 320x240 always works great.
avconv -i "original.mp4" -s 320x240 -c:v mpeg2video -q:v 2 -c:a libmp3lame new.mpeg

note I changed from mp2 to libmp3lame in the last conversion.. not necessary but something you could try out.
Playing youtube vids can work too by streaming the video to mplayer.
necron2600
Octane

Trade Count: (0)
Posts: 127
Threads: 50
Joined: May 2018
Find Reply
12-10-2019, 10:53 PM
#9
RE: Converting videos supported my irix mediaplayer
(12-10-2019, 10:53 PM)necron2600 Wrote:  For an O2 with 300mhz R5K I have had luck converting modern mp4 videos using a Linux node (ubuntu, etc..):
avconv -i "$1" -s 640x480 -c:v mpeg1video -q:v 2 -c:a mp2 "$1".mpeg
or (works with nekoware on irix but very slow):
ffmpeg -i "original.mp4" -f mpeg2video -s 640x480 -acodec mp2 new.mpeg

But, sometimes 640x480 seemed sluggish..    320x240 always works great.
avconv -i "original.mp4" -s 320x240 -c:v mpeg2video -q:v 2 -c:a libmp3lame new.mpeg

note I changed from mp2 to libmp3lame in the last conversion.. not necessary but something you could try out.
Playing youtube vids can work too by streaming the video to mplayer.

Thank you! I will try that on the weekend! Wink

No longer active. Please do not contact me.
Jacques
Tezro

Trade Count: (0)
Posts: 565
Threads: 53
Joined: May 2018
Location: UK
Find Reply
12-11-2019, 06:23 AM
#10
RE: Converting videos supported my irix mediaplayer
Thanks for the avconv tips, I'll be trying it out on the O2 tomorrow. Videos I converted with Handbrake didn't work that well, I got audio but no video, this using Mpeg2/4 conversion.

I installed AVconv on my Mac using the Homebrew or Brew system, works very well.

No longer active. Please do not contact me.
Jacques
Tezro

Trade Count: (0)
Posts: 565
Threads: 53
Joined: May 2018
Location: UK
Find Reply
12-22-2019, 09:10 PM


Forum Jump:


Users browsing this thread: 1 Guest(s)