r/ps2homebrew

USB game not loading

I have defragmented my game followed tutorials But when i run it nothing happens

u/Slemboo — 16 hours ago
▲ 333 r/ps2homebrew+1 crossposts

Who played ???

Who played this

MEGUMI インサイド

Harumi Nemoto 根本 はるみ

五十嵐結花

u/DerickStan — 1 day ago
▲ 3 r/ps2homebrew+1 crossposts

NTSC VS PAL (GAMES)

I have my PS2 FAT (Aqua Blue). It's PAL version but it's modded with SSD and PSBBN (OSHD MENU). My concern is this. I have NFSU2 and POP Sands of TIME EU versions and they cover whole screen (on my CRT TV) which I'm connected with composit cables (yellow and white).

I have other games such as GTA San Andreas, THPS3 etc. which are USA versions. All of them works great but that USA (NTSC) games have black bars and I can't get them to work "full screen fit"

I thought about buying PS2>SCART Cable. Maybe it will fix the problem. If not, should I still get NTSC or PAL games and what are the diferences? (I know 50 vs 60Hz and some of them has exclusive content) but other than that is it better to stay with PAL or NTSC games?

reddit.com
u/GajaBrat — 19 hours ago

Does anyone have the diagrams for these specific modchips?

I want to install one of these on my slim 90004 but Wherever i look theres like no evidence of a diagram

u/the_tech_lover214 — 22 hours ago
▲ 8 r/ps2homebrew+1 crossposts

Mein Schatz was Habt ihr so Für Chips und was macht ihr mit euer Console so ? 🥺

u/Big-Cake-1798 — 1 day ago

PS2 SD2PSX gamefreeze fix?

Do u know how to fix gamefreezes when playing backups from the memorycard? I played freedom fighters with it, but it loads much better on disc then on sd2psx.

Maybe you have a fix? Thank you in advance

Edit: solve with Wait Cycles = 5Timeout Alarms = ON

reddit.com
u/markusmars — 1 day ago
▲ 2 r/ps2homebrew+1 crossposts

PS2 Bios

OK, So l’m looking to install PS2 emulator. I’m at the part where I need a PS2 Bios. I OWN a fat PS2 and I have a USB flash drive formatted to FAT32 however I don’t have a disk drive or a Blank DVD-R disk. So my question is how can or where can I get a PS2 bios so I can complete my emulation installation? Thank you for your help in advance.

reddit.com
u/MatterTall4186 — 2 days ago

Problem with saves not loading on psxmemcard gen 2 on games sorted in groups

I have psxmemcard gen 2 and i had it set up in a way all mine games where on a 16mb vmc, a while back i decided i wanted to set up game detection and save groups.

So i did that useing aprogram to convert them for this after a bit i got it working. Problem is when playing a game thats in a groub like rachet and clank or need for speed it doust show mine pre existing saves but when i play a game wich is not in a save group the save i converted where fine.

So know i am un sure how to fix this do i need to convert again or what schould i do any help would be aprecited

reddit.com
u/Jaylin_K — 2 days ago

It might sound stupid, but, is that probably the reason some games run at poor fps?

So, I recently bought my first PS2 (a slim 79000) and it came with a "OPL kit" - memory card and a SanDisk microSD, which was read by a sort of MX4SIO thing already plugged.

However, I realized that my games (especially Bully) were running way worse than I would expect, and decided to take a closer look at my "memory card to microSD" thing.

I then realized that it was basically a usual memory card - from 2014 - modded (probably by its past owner) to be a microSD reader.

My question is: if I replace it with a original MX4SIO (which seems to be the most reliable option for sd cards), will it most likely solve my performance issues or it can be another thing?

u/n3zin — 3 days ago
▲ 128 r/ps2homebrew+2 crossposts

Proof-of-Concept PS2 Jellyfin Client

I've been working on an experimental Jellyfin client for the PlayStation 2 called "Jam N' Jelly"! I finally have enough of it working that I thought it was worth sharing! My dad recently started messing around with Jellyfin, and I thought it would be interesting if I could get Jellyfin running on PS2. The repository is currently private, but as I get more features implemented I plan on eventually making the project open-source on GitHub. At the moment, it only runs under PCSX2 because it relies on the "host:" filesystem tags but I have been working on streaming video data over TCP. It's been incredibly difficult to configure PCSX2 for TCP networking on my VM, so I'm probably going to use ps2client for future testing on hardware.

The project currently has a Netflix-style media browser with posters, banners, detail pages, search, and an on-screen keyboard, along with a custom video playback pipeline that runs entirely in software. It uses a custom LVID video codec designed specifically around the PS2’s hardware limitations, including support for playing video files while they’re still being encoded. The player uses double-buffered software framebuffers, dirty-tile rendering to reduce GS/VRAM transfers, and IMA ADPCM audio playback through the IOP. There’s also a custom font and texture asset pipeline.

How it Works

The PS2 does not have any hardware H.264/H.265 decoder, and trying to decode modern codecs directly on the hardware was pretty much a dead-end. So instead of trying to port something older like MPEG2, I decided to write my own codec that was built around the quirks of the PS2.

.LVID uses:

- YCbCr 4:2:0

- Quadtree tiling ~ Areas that are largely static use larger rectangles to use less file-space, whereas tiles that move or have new color data often use smaller rectangles to adjust the colors easier and make details more visible

- Motion prediction

- LZ4 Compression

- YCbCr to RGB via CLUTs

- AdPCM Audio

I'm also currently working on taking advantage of VU0 in COP2 mode to help with the decompression of frame data (hopefully this will take some load off of the EE).

Most of the expensive work happens on the PC/server side during the encoding process. The PS2 is intentionally dead simple so it can be as fast as possible. Basically, it just: decompresses, apply motion data, reconstruct the frame data, push changed tiles to GS. One of the biggest wins with the LVID file is the --streaming flag. With this flag enabled, the encoder will write to the LVID file as the PS2 is actively playing it. The PS2 periodically checks the frame table for newly encoded frames and continue playback as new frames come available. In the video at 1:45, you can see this because pressing the "skip to end" button only jumps to 03:07 / 10:34 in the video. All of this is able to fit into the 32 MB of system memory, alongside the application, textures, framebuffers, audio buffers, etc.

>Note: Audio data is converted at the same time as frame data, and fed directly to the SPU

Release Date

The project is still very experimental. The core media pipeline and GUI work at a basic level, but it currently lacks the visual polish that I want it to be at. Moreover, I have only tested using a python http server, and have not interfaced with an actual jellyfin server yet. Right now I am primarily working out how the PS2 can actually handle the media side of the project before building out the rest of the client. I do eventually plan on supporting music playback in the client as well.

I want to finish the project before December 2026, but I will see how realistic that deadline is once I start University. If anyone has any feedback or ideas for the project, feel free to comment! I am fully open to new ideas and additions!

Current Ideas

- LRU Cache for "Recently Watched" movies

- Support a YT-Music style audio playback engine

- Jellyfin CSS styling converter

GUI

If you want to see what plans I have for the GUI, take a look at the Figma project!

Credits

A lot of the updated GUI theming is heavily based on the PSL1GHT JellyFin client on GitHub.

u/LandenTy — 4 days ago

Sakura Pink PS2 | OEM network adapter | 3D printed vert stand

Been rocking with my dream console completely stock for 2 years now, only playing NTSC-J games, had no idea about OPL.

Since discovering this community I’ve fully invested in maximizing this console and I’m currently working on an OPL fork of my own (more to come on that).

OEM network adapter off eBay for $25, the Sakura pink console and controller, 3D printed the vertical stand (did my best to color match with some hand painting, still need to paint the PS2 logo).

What do we think of the setup? Ripping 30 more of my disks to ISO this week, will share the library when it’s complete.

Thanks for being an awesome community and keeping this console alive.

u/CooftheZoof — 4 days ago

Cleaning up modded ps2 of a bunch of games i will not play

Does anyone know a faster efficient way of mass deleting games on the modded ps2, going through them individually to delete takes forever and is time consuming, i have about 300 games to get rid of that i will not be playing, do i need to plug the hard drive into my computer or is there a easier way to doing this? Thanks.

u/ColtonPython — 4 days ago
▲ 8 r/ps2homebrew+2 crossposts

Need help installing free mcboot script into memory card

So as tutorial follows: burn freedvdboot into dvd-r, install freemcboot into fat32 usb, then insert burned dvd-r, usb, and a memory card into ps2 and wait for that custom menu to load.

But the problem is my ps2 slim refuses to read the dvd-r with the message saying the disc could not be read, but the console does read official ps2 game discs, what am I missing? My dvd player is 3.11E so it should read 'all ps2 slim" iso file but it doesn't. I followed a bunch of tutorials all of them have the same steps, what do I do?

u/RedLight_4K — 3 days ago

Popstarterhelp

So this is kinda my last straw. I need help installing popstarter with my free mcboot. Im using uLaunchELF 4.43x , ive used Rufus to format my drive to both mbr and fat 32 buy everytime I go to the path mass it won't show anything. Does anyone have advice?

reddit.com
u/jwazrael — 2 days ago

Silent Hill 2 FMV Lag MX4SIO

I’m experiencing lag and sometimes crashes during FMV’s plying SH2 through MX4SIO.

Any tips to fix this? I’ve tried Modes 1 and 6, these did not help. I’m on a slim console so I can’t use HDD.

Edit:
SOLVED, I had to use a different MX4SIO card.

reddit.com
u/vancecannoli — 3 days ago

Want to transfer saves from PCSX2 to PSBBN

Hi everyone!

I just got a PS2 setup with PSBBN. I want to transfer save files from PCSX2 to use on my PS2 but I cannot find any methods on how to do that online.

I've tried exporting my saves from PCSX2 MemCards via my-mc, putting the .psu files on a FAT32 USB and copy them to the PS2 on the "Your Saves" via uLaunchELF.

The save shows up as "Corrupted" when looking in "Save Data Management" in PSBBN. Where is the VMC located in PSBBN and how do I inject .psu files into it?

Thanks!

reddit.com
u/soniczx123 — 3 days ago
▲ 2 r/ps2homebrew+1 crossposts

psxmemcard gen2 mmce white screen when loading split files with OPL Loader.

ISO files work but not split files. Does anyone have an idea why? I guess i will now use iso files. The SD Card is formatted exfat, so it works for larger than 4GB ISOs.

reddit.com
u/Kindly_Wear7008 — 4 days ago

Opl wont opne usb games

Hello everyone! I am trying to play some games on opl through usb, nad in the main menu of opl when i try to open the "usb " option (Where normally shows your games) Doesnt show anything, the only button that responds is start to open the menu. I have tried formatting it on fat32, exFat, with different cluster sizes, with the right folder structure, using opl manager to rename the games and nothing, it keeps failing. What should i do now?

edit: I have opl v1.1 (and tried 4 more different versions)

reddit.com
u/ChillEn0_s1 — 4 days ago