A MIDI to key player for Genshin Impact's Windsong Lyre, Floral Zither, and Vintage Lyre made using C# and WPF using Windows Mica design. If you enjoyed this project, consider contributing or 🌟 starring the repository. Thank you~
If you get a SmartScreen popup, click on "More info" and then "Run anyway" The reason this appears is because the application is not signed. Signing costs money which can get very expensive.
The first version of the Piano Sheet has been added, this allows you to easily share songs to other people, or for yourself to try. You can change the delimiter as well as the split size, and spacing. This will use the current keyboard layout that you have chosen.
You can now control the Lyre natively by using your media controls that some keyboards have as special function keys. This integrates with other music applications as well.
If you have your own MIDI instrument, this will let you play directly to the Genshin Lyre. This lets you play directly without using a MIDI file.
A playlist allows you to play songs continuously without having to open a new file after a song has finished.
You can set the player to light mode/dark mode (uses your system's theme by default.)
You can resize the player as small as you want and it should close the panels accordingly.
MIDI files (.mid) is a set of instructions that play various instruments on what are called tracks. You can enable specific tracks that you want it to play. It converts the notes on the track into the keyboard inputs in Genshin Impact. Currently it is tuned to C major.
The short answer is that it's uncertain. I have used this in development with my own account for a week now and so far, I have not gotten banned. But use it at your own risk. Do not play songs that will spam the keyboard, listen to the MIDI file first and make sure to play only one instrument so that the tool doesn't spam keyboard inputs. Here is miHoYo's response to using 3rd party tools.
When contributing to this repository, please first discuss the change you wish to make via issue, email (sabihoshi.dev@gmail.com), or any other method with me or the maintainers of this repository before making a change.
This project has a Code of Conduct, please follow it in all your interactions with the project.
dotnet clean
.If you just want to run the program, there are precompiled releases that can be found in here.
git clone https://github.com/sabihoshi/GenshinLyreMidiPlayer.git
cd GenshinLyreMidiPlayer
dotnet publish GenshinLyreMidiPlayer.WPF -r win-x64 ^
-c Release --self-contained false -p:PublishSingleFile=true
For other runtimes, visit the RID Catalog and change the runtime value.
git clone https://github.com/sabihoshi/GenshinLyreMidiPlayer.git
cd GenshinLyreMidiPlayer
dotnet build
git clone https://github.com/sabihoshi/GenshinLyreMidiPlayer.git
cd GenshinLyreMidiPlayer
dotnet publish
If you want to build using the .Net Core 3.1 SDK, you need to make a few changes to the project files.
Change the TargetFramework
of both projects into netcoreapp3.1
.
- <TargetFramework>net6.0-windows10.0.22621.0</TargetFramework>
+ <TargetFramework>netcoreapp3.1</TargetFramework>
Change the Project SDK of GenshinLyreMidiPlayer.WPF.csproj
into Microsoft.NET.Sdk.WindowsDesktop
.
- <Project Sdk="Microsoft.NET.Sdk">
+ <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
Change the LangVersion
of both projects into preview
.
- <LangVersion>latest</LangVersion>
+ <LangVersion>preview</LangVersion>