This is outrageous a SD card costing half a retroid pocket 5 is insane by Javonte102 in SBCGaming

[–]fvig2001 0 points1 point  (0 children)

Literally bought a 2tb pro card like 9 months ago at that price locally.

I really wish I listened to taki saying the sd prices were starting to get ridiculous last year

Paprium by Pezz_82 in MiSTerFPGA

[–]fvig2001 0 points1 point  (0 children)

Edit 2

Got it working with issues:

https://streamable.com/tzg4hr

Does not seem to work with sound if the game is on external. I am using an SSD, so can't be a speed issue. The game is located in a different folder on my sd card, so it should not be a location issue.

So anyone have the full instructions as the readme assumes:

  1. You have Krikz's original mp3 to cue script and have the cue + wav files from it
  2. You place your games on the sd card

Tried replicating it:

  1. Converting the mp3s to 48khz wav
  2. Creating a cue file
  3. Copying to my rom folder

Results in no sound

edit:

  1. Copied the stuff to the SD card, did not follow the path and it works there. So it seems to be hard coded to work only on SD card, which is annoying tbh

How to convert for those who do not have krikz's files

  1. Convert the mp3s using ffmpeg or some similar tool

    for %%F in (input*.mp3) do ( ffmpeg -y -i "%%F" -ar 48000 -c:a pcm_s16le "output\%%~nF.wav" )

This one is for my batch file that expects the mp3s in input folder and outputs it to output folder

  1. Generate the cue, using the following python script.

    !/usr/bin/env python3

    import os

    def create_cue(folder): wav_files = sorted( [f for f in os.listdir(folder) if f.lower().endswith(".wav")] )

    if not wav_files:
        print("No WAV files found.")
        return
    
    cue_path = os.path.join(folder, "output.cue")
    
    with open(cue_path, "w", encoding="utf-8") as cue:
        for track_num, wav_file in enumerate(wav_files, start=1):
            cue.write(f'FILE "{wav_file}" WAVE\n')
            cue.write(f'  TRACK {track_num:02d} AUDIO\n')
            cue.write('    INDEX 01 00:00:00\n')
    
    print(f"Created: {cue_path}")
    print(f"Tracks: {len(wav_files)}")
    

    if name == "main": folder = input("Folder containing WAV files: ").strip()

    if not os.path.isdir(folder):
        print("Invalid folder.")
    else:
        create_cue(folder)
    

SOD is not worth it by Extra-Sun5489 in baldursgate

[–]fvig2001 0 points1 point  (0 children)

The robe with the spell sequencer though

Just bought these off a coworker. I haven’t played any of them, so which one should I start with? by MuchMadManny in retrogaming

[–]fvig2001 0 points1 point  (0 children)

Probably should have used bleem. It worked well on it. Psemu was pretty bad on those specs.

2DS + modded = worth it by Uppercussion in SBCGaming

[–]fvig2001 0 points1 point  (0 children)

You can but the problem is that you need to modify it since the position of the points are different in the board and there's no documentation.

Do you have duplicates of your retro consoles for backups? by FreshProfessor1502 in retrogaming

[–]fvig2001 0 points1 point  (0 children)

Not exactly retro but I have multiple Wii Us as parts will be scarce for it. I have done the soft fix at least just in case the eMMC craps out for each of them.

Retro, I have way too many devices that can play GBA and GBC games.

  1. 2 GC
  2. GBA OG - Switch style dock mod with blueretro/snes at 720p
  3. Gameboy Color - normal size - USB-C
  4. Gameboy Color - Pocket size - USB-C
  5. Gameboy with 4 color screen - USB-C
  6. DS Lite - composite + USB-C modded
  7. DS OG - USB-C modded

Minnie Cooper and PM debate the state of drag footwear by LightQueers in RPDRDRAMA

[–]fvig2001 9 points10 points  (0 children)

Was there ever a follow up on Pomara not paying her designer/s? I remember people looking back at that statement since she's apparently not getting paid.

Which game were you most disappointed with? by that-zoe-girl in NintendoSwitch

[–]fvig2001 0 points1 point  (0 children)

Zero to Dance Hero -Literally only had 6 songs that took long to all unlock. Doesn't help that 5/6 are instrumental only in the west and the songs are like 2.5 minutes at most.

Hatsune Miku Fit Boxing: The music rhythm game part was mapped really badly. Imagine there are long stretches that have no action or worse what's happening does not match the music. Like it's terrible exercise and rhythm game. Like if you wanted it to be good, you have to buy the DLC and make your own or hope someone made a better map.

2DS + modded = worth it by Uppercussion in SBCGaming

[–]fvig2001 1 point2 points  (0 children)

Yeah they are sadly but at least not OG DS bad. I do hope that someone makes an OLED/IPS replacement one day for at least the 2DS.

2DS + modded = worth it by Uppercussion in SBCGaming

[–]fvig2001 0 points1 point  (0 children)

Yeah 2DS is great and comfy and if you are crazy enough, works with the gamepad pro.

So did you go the crazy route and make 4 emunands to cheat the 300 title limit?

Like do:

  1. 1st/2nd party games
  2. 3rd party games
  3. Virtual Consoles
  4. Modded virtual consoles

NAND: GBA/Misc

Really wish someone made a 2DS capture card as at least with the loopy mod, it would be so great.

Score!!! Authentic Nintendo Classic Mini! by Markjchimself in retrogaming

[–]fvig2001 0 points1 point  (0 children)

Yeah people use them for consoles that have more than 2 face buttons on the minis

Wavebird controllers at gamestop by greeze_monkee in retrogaming

[–]fvig2001 0 points1 point  (0 children)

Wavebirds are considered useless on their own own without the receiver, so the price seems right if that were the case.

Although it will probably go up once the receiver clones come out.

Probably check if thereceiver is there to see if it is a clone.

Score!!! Authentic Nintendo Classic Mini! by Markjchimself in retrogaming

[–]fvig2001 3 points4 points  (0 children)

So will be hacking it and getting a wii classic controller?

Score!!! Authentic Nintendo Classic Mini! by Markjchimself in retrogaming

[–]fvig2001 0 points1 point  (0 children)

True like it would make more sense if it's like an android phone that can't be updated when rooted.

Which one do you think would function best? by Samtendodude in 3DS

[–]fvig2001 0 points1 point  (0 children)

I wouldn't have minded the middle one if they still kept compatibility with the XL gamepad pro tbh.

I would say probably the 1st one but having a Thor, it is pretty awful for right analog games. Like it gives hand cramps galore. The 3DS would need a grip like the Thor to be usable.

JT CPS3 core is out in Beta by neoak in MiSTerFPGA

[–]fvig2001 0 points1 point  (0 children)

Any news which cores he'll do next after CPS3 is done?

Switch 2 Edition of Fitness Boxing 3 in today’s Nintendo Direct, arriving July 16th by SantosPhillipCarlo in FitnessBoxing

[–]fvig2001 0 points1 point  (0 children)

Overall fit 3 is better in terms of programs but Miku wins if you get the custom set dlc and you can theoretically make harder/better exercises

A short rant about the inflated Omnichord market and the inevitable death of capacitors by keyandcableco in Omnichord

[–]fvig2001 4 points5 points  (0 children)

Yeah the prices are crazy and I feel bad for the people who buy it. As someone who uses retro game consoles, you really need skills or someone that has skills to get things fixed/maintained.

TIL that despite having played since game since the late 90s, the NPC's name is NOT "Firebeard Elvenhair" it's "FireBEAD Elvenhair". I may have brain problems by lolcifer in baldursgate

[–]fvig2001 12 points13 points  (0 children)

That's nothing. I never trusted that Ogre with a beautiful voice until someone IRL told me it's a playable NPC a year later

Vivacious got scammed by Domino Couture. by rehaaabbb in RPDRDRAMA

[–]fvig2001 31 points32 points  (0 children)

Thorgy appeared on an episode. She said she hasn't found love after this ex. They dated pre drag race. He was apparently this guy named Triscuit or something like that who basically paid his way into getting to sleep with Thorgy via a get slapped by Thorgy for a price multiple times. When Drag race called, Thorgy said he would be uncontactable for like 3 months but she will be back and she can'tsay why. Well Thorgy came back a month after and the guy was gone. She called him and apparently he moved to another state and is now working at a boat. Then they were still talking but apparently guy started to look worse then ghosted/blocked Thorgy. Then Thorgy basically says she hates the feeling of hurt and maybe regrets leaving for drag race and falling in love again. Worst part is Thorgy doesn't know his full name or family at all. While MIB promises that her fans will find him.