This player allows you to play YouTube streams from the Lofi Girl channel (and not only).
Lofi Girl Player is suitable for those who like to listen to Lofi on speakers, but so that the rest of the sounds are played in headphones. All you need to do is start the player and in the system settings (ms-settings:apps-volume
) specify the output device for Microsoft Edge WebView2
- Windows 10, 11
- .NET Framework 4.7.2+
- Installed Microsoft Edge
To add a stream to the player, you need to edit Sources.json
by adding a new element to the sources
array:
{
"Name": "Top lofi",
"YTID": "GtL1huin9EE"
}
- In
Name
specify the name that will be displayed in the interface; - In
YTID
specify the stream ID. The ID is contained in the stream link afterwatch?v=
. For example, the ID of this streamhttps://www.youtube.com/watch?v=rUxyKA_-grg
is:rUxyKA_-grg
An example file after adding the stream from the example above:
{
"version": 1,
"sources": [
{
"Name": "lofi hip hop radio - beats to relax/study to",
"YTID": "jfKfPfyJRdk"
},
{
"Name": "lofi hip hop radio - beats to sleep/chill to",
"YTID": "rUxyKA_-grg"
},
{
"Name": "Top lofi",
"YTID": "GtL1huin9EE"
}
]
}
Got a problem? Create an Issue