Dark Mode

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

bodgit/rvz

Repository files navigation

Dolphin RVZ disc images

The github.com/bodgit/rvz package reads the RVZ disc image format used by the Dolphin emulator.

  • Handles all supported compression methods; Zstandard is only marginally slower to read than no compression. Bzip2, LZMA, and LZMA2 are noticeably slower.

How to read a disc image:

package main

import (
"io"
"os"

"github.com/bodgit/rvz"
)

func main() {
f, err := os.Open("image.rvz")
if err != nil {
panic(err)
}
defer f.Close()

r, err := rvz.NewReader(f)
if err != nil {
panic(err)
}

w, err := os.Create("image.iso")
if err != nil {
panic(err)
}
defer w.Close()

if _, err = io.Copy(w, r); err != nil {
panic(err)
}
}

rvz

The rvz utility currently allows you to decompress an .rvz file back to its original .iso format.

A quick demo:

About

Golang library for reading RVZ disc images

Topics

Resources

Readme

License

BSD-3-Clause license

Stars

Watchers

Forks

Contributors

Languages