Search found 881 matches

by wbartels
Tue Apr 26, 2022 6:58 pm
Forum: General discussion
Topic: Update do nothing (V. 6.84.0)
Replies: 39
Views: 103113

Re: Update do nothing (V. 6.84.0)

ZeBison wrote: Tue Apr 26, 2022 6:52 pm In cache there are folders named 0 to f, + index.php.
In temp there is update.php.lock
The cache directory seems to be ok.
Is the update.php.lock file create/modification time from the last update or older?
by wbartels
Tue Apr 26, 2022 6:27 pm
Forum: General discussion
Topic: Update do nothing (V. 6.84.0)
Replies: 39
Views: 103113

Re: Update do nothing (V. 6.84.0)

In the netjukebox directory at least the subdirectory's "temp" and "cache" need full access for user www-data.
The temp directory is very important, here are the lock files created for update.php and others.

Once again good luck!
by wbartels
Tue Apr 26, 2022 5:57 pm
Forum: General discussion
Topic: Update do nothing (V. 6.84.0)
Replies: 39
Views: 103113

Re: Update do nothing (V. 6.84.0)

Maybe you could find some clue in the Apache error log:

Code: Select all

/var/log/apache2/error.log
by wbartels
Tue Apr 26, 2022 4:08 pm
Forum: General discussion
Topic: Update do nothing (V. 6.84.0)
Replies: 39
Views: 103113

Re: Update do nothing (V. 6.84.0)

First of all thanks very much for you donation! I assume the donation is from you. I have tested the update process with my temporary account. There is something strange during the update process, see screenshot below. Does the Apache webserver have enough file permission in de Music directory (www-...
by wbartels
Mon Apr 25, 2022 8:56 pm
Forum: General discussion
Topic: Update do nothing (V. 6.84.0)
Replies: 39
Views: 103113

Re: Update do nothing (V. 6.84.0)

The same here, I also use Ubuntu server 20.04 Please test the script first because it wil also remove the original wav files!!! #!/bin/sh find '/data/Music' -type d | sort | while IFS= read -r dir; do wav=$(ls "$dir" | grep -c '\.wav$') if [ $wav -eq 0 ]; then continue; fi echo "$dir&...
by wbartels
Mon Apr 25, 2022 2:32 pm
Forum: General discussion
Topic: Update do nothing (V. 6.84.0)
Replies: 39
Views: 103113

Re: Update do nothing (V. 6.84.0)

ZeBison wrote: Mon Apr 25, 2022 12:31 pm I'll think about flac option: it'll take time to encode 4000 files keeping the folders structure.
What operation system do you use?
With Linux I could write a small script for you.
by wbartels
Mon Apr 25, 2022 9:52 am
Forum: General discussion
Topic: Update do nothing (V. 6.84.0)
Replies: 39
Views: 103113

Re: Update do nothing (V. 6.84.0)

PS
flac is 100% lossless, so you can always decode to wav again (same as zip for data).
by wbartels
Mon Apr 25, 2022 9:45 am
Forum: General discussion
Topic: Update do nothing (V. 6.84.0)
Replies: 39
Views: 103113

Re: Update do nothing (V. 6.84.0)

Thanks for the feedback. wav files are not supported at the moment. I think that the easiest workaround is to lossless encode the wav files to flac. Than you also safe approximately 40% of storage. And it is possible to stream music to your browser (most browsers support mp3, m4a and flac directly i...
by wbartels
Sun Apr 24, 2022 6:44 pm
Forum: General discussion
Topic: Update do nothing (V. 6.84.0)
Replies: 39
Views: 103113

Re: Update do nothing (V. 6.84.0)

Hello ZeBison, Sorry I can't reproduce your problem. Can you send me a personal message with a temporarily username/password and URL? Then I can debug the update process with a browser. and database still empty I assume you ment no albums and tracks where added. For login the database must be create...
by wbartels
Sat May 08, 2021 10:32 am
Forum: Linux related
Topic: Ubuntu tips
Replies: 0
Views: 33656

Ubuntu tips

Reduce MySQL backup size #!/bin/bash export MYSQL_PWD=password nice -n +19 mysqldump -uusername --no-data --databases netjukebox > /tmp/netjukebox.sql nice -n +19 mysqldump -uusername --no-create-info --ignore-table=netjukebox.track --ignore-table=netjukebox.bitmap --ignore-table=netjukebox.country...
by wbartels
Mon May 03, 2021 11:47 pm
Forum: Implemented
Topic: Web Volume Slider
Replies: 5
Views: 7071

Re: Web Volume Slider

Added volume slider to stream playlist in netjukebox 6.81
by wbartels
Mon Apr 19, 2021 8:26 pm
Forum: Implemented
Topic: Web Volume Slider
Replies: 5
Views: 7071

Re: Web Volume Slider

alzarath wrote: Fri Apr 16, 2021 1:45 am The web player could really use a volume slider, especially in Stream mode.
A volume slider for MPD is already implemented since netjukebox 3.70.
If the mixer_type is correctly configured in the mpd.conf file.

Image
by wbartels
Sat Apr 17, 2021 10:44 pm
Forum: Implemented
Topic: Web Volume Slider
Replies: 5
Views: 7071

Re: Web Volume Slider

I have a better solution, witch will make us both happy. Add a volume slider witch is default disabled in the config file. When disabled it will be set to 1 = 100% volume. At the moment I have little spare time. What you can do to see if it will work is: Enable debug mode in the config file: $cfg['d...
by wbartels
Fri Apr 16, 2021 5:20 pm
Forum: Implemented
Topic: Web Volume Slider
Replies: 5
Views: 7071

Re: Web Volume Slider

Sorry, I don't gone implement this feature.
This would decrease the audio bit depth.
For streaming you can use the native volume control.
by wbartels
Fri Apr 16, 2021 5:09 pm
Forum: Implemented
Topic: Artist and Album Navigation
Replies: 3
Views: 5286

Re: Artist and Album Navigation

> It looks like the only way to actually browse your music collection is to use a playlist or search for specific artists, tracks, and albums. There are many other options: List Artis by first letter # a - z. Afterward you can Explode and Implode the view (this will be remembered for the next click)...