{"id":15517566,"url":"https://github.com/bodgit/rvz","last_synced_at":"2025-04-23T03:51:56.530Z","repository":{"id":38313163,"uuid":"494762956","full_name":"bodgit/rvz","owner":"bodgit","description":"Golang library for reading RVZ disc images","archived":false,"fork":false,"pushed_at":"2024-07-30T02:18:49.000Z","size":927,"stargazers_count":17,"open_issues_count":7,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-17T19:17:35.831Z","etag":null,"topics":["gamecube","go","golang","nintendo","wii"],"latest_commit_sha":null,"homepage":"https://github.com/bodgit/rvz","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bodgit.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-05-21T11:23:50.000Z","updated_at":"2025-04-11T18:57:41.000Z","dependencies_parsed_at":"2023-02-18T02:30:43.750Z","dependency_job_id":"7b10464d-ee58-4057-b6d0-929d546c44b6","html_url":"https://github.com/bodgit/rvz","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bodgit%2Frvz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bodgit%2Frvz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bodgit%2Frvz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bodgit%2Frvz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bodgit","download_url":"https://codeload.github.com/bodgit/rvz/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250366687,"owners_count":21418768,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gamecube","go","golang","nintendo","wii"],"created_at":"2024-10-02T10:13:47.660Z","updated_at":"2025-04-23T03:51:56.512Z","avatar_url":"https://github.com/bodgit.png","language":"Go","readme":"[![GitHub release](https://img.shields.io/github/v/release/bodgit/rvz)](https://github.com/bodgit/rvz/releases)\n[![Build Status](https://img.shields.io/github/actions/workflow/status/bodgit/rvz/main.yml?branch=main)](https://github.com/bodgit/rvz/actions?query=workflow%3Abuild)\n[![Coverage Status](https://coveralls.io/repos/github/bodgit/rvz/badge.svg?branch=main)](https://coveralls.io/github/bodgit/rvz?branch=main)\n[![Go Report Card](https://goreportcard.com/badge/github.com/bodgit/rvz)](https://goreportcard.com/report/github.com/bodgit/rvz)\n[![GoDoc](https://godoc.org/github.com/bodgit/rvz?status.svg)](https://godoc.org/github.com/bodgit/rvz)\n![Go version](https://img.shields.io/badge/Go-1.22-brightgreen.svg)\n![Go version](https://img.shields.io/badge/Go-1.21-brightgreen.svg)\n\n# Dolphin RVZ disc images\n\nThe [github.com/bodgit/rvz](https://github.com/bodgit/rvz) package reads the [RVZ disc image format](https://github.com/dolphin-emu/dolphin/blob/master/docs/WiaAndRvz.md) used by the [Dolphin emulator](https://dolphin-emu.org).\n\n* Handles all supported compression methods; Zstandard is only marginally slower to read than no compression. Bzip2, LZMA, and LZMA2 are noticeably slower.\n\nHow to read a disc image:\n```golang\npackage main\n\nimport (\n\t\"io\"\n\t\"os\"\n\n\t\"github.com/bodgit/rvz\"\n)\n\nfunc main() {\n\tf, err := os.Open(\"image.rvz\")\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tdefer f.Close()\n\n\tr, err := rvz.NewReader(f)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\tw, err := os.Create(\"image.iso\")\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tdefer w.Close()\n\n\tif _, err = io.Copy(w, r); err != nil {\n\t\tpanic(err)\n\t}\n}\n```\n\n## rvz\n\nThe `rvz` utility currently allows you to decompress an `.rvz` file back to its original `.iso` format.\n\nA quick demo:\n\n\u003cimg src=\"./decompress.gif\"\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbodgit%2Frvz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbodgit%2Frvz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbodgit%2Frvz/lists"}