pMusic 6.0.0

Audio editors, music players, video players, burning software, etc.
Message
Author
B.K. Johnson
Posts: 807
Joined: Mon 12 Oct 2009, 17:11

#1941 Post by B.K. Johnson »

@zigbert
Tahrpup-6.0.2 has version of pMusic installed OOTB but I can't determne what version it is - no Help. no About, Can you help?

User avatar
LazY Puppy
Posts: 1934
Joined: Fri 21 Nov 2014, 18:14
Location: Germany

#1942 Post by LazY Puppy »

Tahrpup-6.0.2 has version of pMusic installed OOTB
:shock:

Mine doesn't!

Neither 6.0 nor 6.0.2.

Both have VLC as the default media/music player!

:shock:
RSH

"you only wanted to work your Puppies in German", "you are a separatist in that you want Germany to secede from Europe" (musher0) :lol:

No, but I gave my old drum kit away for free to a music store collecting instruments for refugees! :wink:

User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#1943 Post by zigbert »

If pMusic is installed it will respond and show version by this command:

Code: Select all

pmusic -v

User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#1944 Post by zigbert »

TahrPup users look here

User avatar
mikeslr
Posts: 3890
Joined: Mon 16 Jun 2008, 21:20
Location: 500 seconds from Sol

Another ffmpeg solution for Tahrpup

#1945 Post by mikeslr »

Hi All,

Another solution to Tahrpup's ffmpeg problem. See here, http://www.murga-linux.com/puppy/viewto ... 342#821342.

Sure wish I had known about it. :(

Sure wish people got into the habit of communicating solutions on all relevant threads. :cry:

mikesLr

User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#1946 Post by zigbert »

albumart.org has changed, and does now require human verification. I have started the work to use amazon.com for the albumart-grabber...

User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#1947 Post by zigbert »

Version 4.6.2
See main post

Changelog
- Albumart
. . . .- amazon.com as default albumart grabber. albumart.org now requires human verify and fails.
. . . .- Manual links to albumart.org, amazon.com and albumartexchange.com

User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#1948 Post by zigbert »

A fun-project for the next major release: Sound editing of input stream.
- It allows sound-editing of either playback or export stream.
- Mostly fun, but personally, I benefit of normalizing files before I copy them to the cellphone / mp3-player
Attachments
Screenshot_2015-05-27_154903.jpg
(34.02 KiB) Downloaded 190 times
Screenshot_2015-05-27_154136.jpg
(32.77 KiB) Downloaded 174 times

User avatar
greengeek
Posts: 5789
Joined: Tue 20 Jul 2010, 09:34
Location: Republic of Novo Zelande

#1949 Post by greengeek »

zigbert wrote: I benefit of normalizing files before I copy them to the cellphone / mp3-player
Thank you for this function. I hope to give it a try. Does anybody know of a method that allows 'normalisation' that operates in two directions - by which I mean it boosts very quiet parts of a sound file, but reduces the very loud parts of the same file.

I have some tracks which contain two voices - one close to the mic (too loud as a result) and one voice far from the microphone (too quiet as a result). I can use mhwaveedit to select small portions of the track and normalise up or down as required for that segment, but it is a very manual and time consuming process to work through the whole file in this manner.

I don't know what I would call such a function - maybe "flatten" normalisation?

goingnuts
Posts: 932
Joined: Sun 07 Dec 2008, 13:33
Contact:

#1950 Post by goingnuts »

greengeek: You might have a look at SoX filters.
Added:
The voice-cleanup.sh script might give a starting point.

Code: Select all

#!/bin/sh

# This script, as used at http://language101.com, shows using several
# effects in combination to normalise and trim voice recordings that
# may have been recorded using different microphones, with differing
# background noise etc.

SOX=../src/sox

if [ $# -lt 2 ]; then
  echo "Usage: $0 infile outfile"
  exit 1
fi

$SOX "$1" "$2" \
  remix - \
  highpass 100 \
  norm \
  compand 0.05,0.2 6:-54,-90,-36,-36,-24,-24,0,-12 0 -90 0.1 \
  vad -T 0.6 -p 0.2 -t 5 \
  fade 0.1 \
  reverse \
  vad -T 0.6 -p 0.2 -t 5 \
  fade 0.1 \
  reverse \
  norm -0.5
Last edited by goingnuts on Thu 28 May 2015, 03:33, edited 1 time in total.

User avatar
Moat
Posts: 955
Joined: Tue 16 Jul 2013, 06:04
Location: Mid-mitten

#1951 Post by Moat »

greengeek wrote: I don't know what I would call such a function - maybe "flatten" normalisation?
In audio dynamics, those are known as compression and limiting -

http://en.wikipedia.org/wiki/Dynamic_range_compression

http://www.soundonsound.com/sos/1996_ar ... ssion.html

Bob

User avatar
don570
Posts: 5528
Joined: Wed 10 Mar 2010, 19:58
Location: Ontario

#1952 Post by don570 »

Does anybody know of a method that allows 'normalisation' that operates in two directions - by which I mean it boosts very quiet parts of a sound file, but reduces the very loud parts of the same file.
Audacity has a feature under the 'Effects' menu heading called

Equalization

Also 'Noise reduction' effect in Audacity can get rid of a annoying background hiss in tape.
Select a small amount of the hiss, and click the 'Noise Profile' .

Then select all the audio
CMD - R to do effect again)

http://wiki.audacityteam.org/wiki/Noise_Reduction
Last edited by don570 on Fri 29 May 2015, 00:25, edited 2 times in total.

User avatar
greengeek
Posts: 5789
Joined: Tue 20 Jul 2010, 09:34
Location: Republic of Novo Zelande

#1953 Post by greengeek »

Thanks for the suggestions everyone - I will start a new thread for my specific issue rather than cluttering the pMusic thread. I will post back when I have done a bit of testing and written up the new thread (so far I tested sox with goingnuts syntax and seemed to have a problem with the compand syntax. More testing to follow...)

User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#1954 Post by zigbert »

If there are any useful filters available in ffmpeg, I can hopefully include them into the new sound editing module. All ffmpeg audio filters can be found here. BUT, please be aware that pMusic is a music player - not an effect rack ;-)

If I got it right, the guys at ffmpeg have done some major work to convert the sox-effects to work wiith ffmpeg.

Please test and give us the syntax, and a definition what it does - I don't get all this technical stuff :-)

User avatar
ASRI éducation
Posts: 3197
Joined: Sat 09 May 2009, 12:10
Location: France
Contact:

#1955 Post by ASRI éducation »

@ zigbert
I prepare a 'puplet' based on Precise Puppy 5.7.1 and the latest woof-ce (testing).
The puplet will be available in four versions pae/NOPAE ; en/fr.
For the fr (French) version, I want to add a list of favorites to pmusic_radio (to allow quick access to most listened French radio, it will be friendly for users).

I added in the main SFS, the file /root/.pmusic/favorites
My problem: this file is overwritten at first launch of pmusic_radio (preset stations are not available to the user).
My question: how to integrate a radio list in puplet?

Note: sorry for my broken English.

Regards,
Projet ASRI éducation => [url=http://asri-education.org/]Association[/url] | [url=http://forum.asri-education.org/]Forum[/url] | [url=http://dl01.asri-education.org/]Dépôt[/url] | [url=http://kids.asri-education.org/]Espace kids[/url]

User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#1956 Post by zigbert »

I think this could easily be solved including the french radio stations in a favorites list (*.pmd file). These files are not overwritten by pMusic, and is available together with the 'normal' favorites. Add radio stations to the list by using the right-click menu in either the playqueue or the sourcelist (left pane). see screenie.

The *.pmd files are stored in $STORAGE_DIR/favorites_lists where $STORAGE_DIR is $HOME/.pmusic/ until user changes this in the preferences. At that time all favorites should be copied to the new location.

Hope this helps
Sigmund
Attachments
Screenshot_2015-06-08_214146.jpg
(29.51 KiB) Downloaded 378 times

User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#1957 Post by zigbert »

ASRI éducation
In next release you can use alternative favorites settings as you describe.
Thank you for the feedback - it makes pMusic better

Sigmund

User avatar
ASRI éducation
Posts: 3197
Joined: Sat 09 May 2009, 12:10
Location: France
Contact:

#1958 Post by ASRI éducation »

zigbert wrote:ASRI éducation
In next release you can use alternative favorites settings as you describe.
Thank you for the feedback - it makes pMusic better
Merci Sigmund !
:wink:
Projet ASRI éducation => [url=http://asri-education.org/]Association[/url] | [url=http://forum.asri-education.org/]Forum[/url] | [url=http://dl01.asri-education.org/]Dépôt[/url] | [url=http://kids.asri-education.org/]Espace kids[/url]

User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#1959 Post by zigbert »

Version 4.6.3
See main post

Changelog
- Bugfix: Store preferences values when running CD/Radio frontend.
- Bugfix: Won't play mixed playque when some tracks comes from CD-audio.
- Bugfix: Do not overwrite favorites at first run. (thanks to ASRI éducation)
- Bugfix: amazon albumart grabber search also for other stuff than music.

User avatar
zigbert
Posts: 6621
Joined: Wed 29 Mar 2006, 18:13
Location: Valåmoen, Norway
Contact:

#1960 Post by zigbert »

Version 4.6.4
See main post

Changelog
- Bugfix: Search only for radio stations when in Radio stream frontend

Post Reply