Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
But I wanted to have a "toggle play pause" that I can assign to my "toggle play pause" key on my keyboard, so I used the unix tool strings to extract everything that looks like a string from all steam binaries, loaded that in a text editor (gvim) and searched for "playprevious". There I saw next to it all the other commands (except for play and pause, but I already guessed them).
Everyone and their dog (except Microsoft) uses SQLite for storing databases in desktop and mobile applications, so I looked into the steam folder, saw the new music folder and in it that .db file. I opened it using sqliteman and it worked! SQLite is an awesome little open source "database in a file" library. Even Apple and Google use it. I also saw the queue.m3u8 in that folder.
I'm trying to whip up a script to allow Binding of Isaac: Rebirth players to use the default Binding of Isaac music.
Have you worked out how to skip to a specific track in a playlist?
I haven't worked that out, bout I found that string: steamtrack:///%s
Maybe it is somehow possible to play a track using a steamtrack:/// url?
Great find, BTW!