The Steam Machine is slightly bigger than a portable Blu-ray / DVD player. (I just checked this with my own players)

I can't wait for someone to make the equivalent of the Gamecube's GBA Player for discs. Because of its size, It could even be a plastic shell where you put an existing Hitachi/LG portable drive without having to disassemble anything

you are viewing a single comment's thread
view the rest of the comments
[–] 6 points 1 week ago (2 children)

Off topic, but how does the Steam machine's dimensions compare to a GameCube, which is bigger?

  • source
  • hideshow 4 child comments
  • [–] 31 points 1 week ago* (last edited 1 week ago) (3 children)

    I'm surprised I cannot find an image of the two devices side-by-side. Here is a mockup of the two in OpenSCAD using the dimensions from Wikipedia

    t5eQkYeOExGu429.webp

    code

    dimensions_steam_machine = [156, 152, 162.4];  
    dimensions_gamecube = [150, 161, 110];  
    
    origin_steam_machine = [0, 0, 0];  
    origin_gamecube = [dimensions_steam_machine[0] + 20, 0, 0];  
    
    translate(origin_steam_machine) cube(dimensions_steam_machine, center=false);  
    translate(origin_gamecube) cube(dimensions_gamecube, center=false);  
    

    EDIT: Not sure exactly what is going on here. This is a Facebook post from November 2025 with what seems to be an empty shell of a Steam Machine. Perhaps it was a 3D printed mockup or something. Regardless, it seems to be enough to give a sense of the relative sizes of the devices.

    https://www.facebook.com/eldozan1/photos/gamecube-vs-steam-machine-lo-que-me-impresiona-es-lo-peque%C3%B1a-que-fue-la-gamecube/1383526843139907/

  • source
  • parent
  • hideshow 6 child comments
  • [–] 10 points 1 week ago (2 children)

    The Steam Machine is slightly bigger but it's very close.

    GameCube: 110 mm x 161 mm x 150 mm

    Steam Machine: 152 mm x 162.4 mm x 156 mm

  • source
  • parent
  • hideshow 4 child comments