Skip to content

Commit

Permalink
add songInfo.album
Browse files Browse the repository at this point in the history
  • Loading branch information
Araxeus committed Nov 10, 2021
1 parent 5492afe commit 02d5b78
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
11 changes: 6 additions & 5 deletions plugins/shortcuts/back.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,8 @@ function registerShortcuts(win, options) {

const player = setupMPRIS();

const mprisSeek = p => {
player.seeked(p);
}
const mprisSeek = player.seeked;

win.webContents.send("registerOnSeek");

ipcMain.on('seeked', (_, t) => mprisSeek(secToMicro(t)));
Expand Down Expand Up @@ -107,13 +106,15 @@ function registerShortcuts(win, options) {

registerCallback(songInfo => {
if (player) {
player.metadata = {
const data = {
'mpris:length': secToMicro(songInfo.songDuration),
'mpris:artUrl': songInfo.imageSrc,
'xesam:title': songInfo.title,
'xesam:artist': songInfo.artist,
'mpris:trackid': '/'
};;
};
if (songInfo.album) data['xesam:album'] = songInfo.album;
player.metadata = data;
mprisSeek(secToMicro(songInfo.elapsedSeconds))
player.playbackStatus = songInfo.isPaused ? "Paused" : "Playing"
}
Expand Down
6 changes: 4 additions & 2 deletions plugins/tuna-obs/back.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ const data = {
status: '',
progress: 0,
duration: 0,
album_url: ''
album_url: '',
album: undefined
};

const post = async (data) => {
Expand Down Expand Up @@ -44,7 +45,8 @@ module.exports = async () => {
data.album_url = songInfo.imageSrc;
data.title = songInfo.title;
data.artists = [songInfo.artist];
data.status = songInfo.isPaused ? 'Paused' : 'Playing';
data.status = songInfo.isPaused ? 'stopped' : 'playing';
data.album = songInfo.album;
post(data);
})
}
7 changes: 5 additions & 2 deletions providers/song-info-front.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ const { getImage } = require("./song-info");

global.songInfo = {};

function $(selector) { return document.querySelector(selector); }

ipcRenderer.on("update-song-info", async (_, extractedSongInfo) => {
global.songInfo = JSON.parse(extractedSongInfo);
global.songInfo.image = await getImage(global.songInfo.imageSrc);
Expand All @@ -13,8 +15,9 @@ module.exports = () => {
document.addEventListener('apiLoaded', e => {
setupTimeChangeListener();

document.querySelector('video').addEventListener('loadedmetadata', () => {
$('video').addEventListener('loadedmetadata', () => {
const data = e.detail.getPlayerResponse();
data.videoDetails.album = $('ytmusic-player-page')?.__data?.playerPageWatchMetadata?.albumName?.runs[0].text
ipcRenderer.send("song-info-request", JSON.stringify(data));
});
}, { once: true, passive: true })
Expand All @@ -25,5 +28,5 @@ function setupTimeChangeListener() {
ipcRenderer.send('timeChanged', mutations[0].target.value);
global.songInfo.elapsedSeconds = mutations[0].target.value;
});
progressObserver.observe(document.querySelector('#progress-bar'), { attributeFilter: ["value"] })
progressObserver.observe($('#progress-bar'), { attributeFilter: ["value"] })
}
2 changes: 2 additions & 0 deletions providers/song-info.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ const songInfo = {
songDuration: 0,
elapsedSeconds: 0,
url: "",
album: undefined
};

const handleData = async (responseText, win) => {
Expand All @@ -57,6 +58,7 @@ const handleData = async (responseText, win) => {
songInfo.image = await getImage(songInfo.imageSrc);
songInfo.uploadDate = data?.microformat?.microformatDataRenderer?.uploadDate;
songInfo.url = data?.microformat?.microformatDataRenderer?.urlCanonical?.split("&")[0];
songInfo.album = data?.videoDetails?.album

// used for options.resumeOnStart
config.set("url", data?.microformat?.microformatDataRenderer?.urlCanonical);
Expand Down

0 comments on commit 02d5b78

Please sign in to comment.