Soundirok cover art - Printable Version +- Moode Forum (https://moodeaudio.org/forum) +-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3) +--- Forum: Support (https://moodeaudio.org/forum/forumdisplay.php?fid=7) +--- Thread: Soundirok cover art (/showthread.php?tid=1279) Pages:
1
2
|
RE: Soundirok cover art - CallMeMike - 04-22-2019 (04-21-2019, 10:44 AM)JST1963 Wrote:(04-21-2019, 06:17 AM)CallMeMike Wrote:(04-20-2019, 08:38 PM)JST1963 Wrote: Anybody who has a solution for embedded covers? Because this all works great for separate cover files but not for the all-in-covers... I apologise I took your query out of context i.e. as a problem with embedded cover art full stop not particular to one specific application... RE: Soundirok cover art - Tenbagger - 04-23-2019 (04-21-2019, 10:17 PM)JST1963 Wrote:Please find my script below. Some comments that might be of interest:(04-21-2019, 08:35 PM)Tenbagger Wrote: I wrote a short bash script to extract embedded covers into their respective folders. I'll post it here if I can locate it... Album art is extracted using ffmpeg, which is installed as a part of moOde. My collection has been built using iTunes with Apple Lossless (ALAC). From what I can see, ffmpeg will only extract .jpg from media files. (This was a not much of a problem in my collection.) Code: #!/bin/bash RE: Soundirok cover art - kit1cat - 04-26-2019 Tried adding the line "if (!file_exists('/var/www/cover')) {SysCmd('ln -s /var/lib/mpd/music /var/www/cover');}" in moode 5.1 but got the following errors, it worked fine with moode 5? 20190426 113011 worker: - Start 20190426 113011 worker: Successfully daemonized 20190426 113011 worker: Integrity check (failed) 20190426 113011 worker: Exited 20190426 113243 command/moode: Connection to MPD failed 20190426 113246 command/moode: Connection to MPD failed 20190426 113301 command/moode: Connection to MPD failed 20190426 113305 command/moode: Connection to MPD failed RE: Soundirok cover art - TookaFace - 04-26-2019 This command should fix your problem: Code: sqlite3 /var/local/www/db/moode-sqlite3.db "UPDATE cfg_hash SET ACTION = 'warning' WHERE PARAM = '/var/www/command/worker.php'" Integrity check exit the worker if nginx.conf or worker.php are modified, with the command, it will just print a warning in the logs. RE: Soundirok cover art - kit1cat - 04-26-2019 (04-26-2019, 10:51 AM)TookaFace Wrote: This command should fix your problem: Thanks, that done the trick. |