Puppy Linux Discussion Forum Forum Index Puppy Linux Discussion Forum
Puppy HOME page : puppylinux.com
"THE" alternative forum : puppylinux.info
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

The time now is Wed 19 Jun 2013, 08:04
All times are UTC - 4
 Forum index » Advanced Topics » Additional Software (PETs, n' stuff) » Multimedia
pMusic 4.0.1
Post_new_topic   Reply_to_topic View_previous_topic :: View_next_topic
Page 75 of 113 Posts_count   Goto page: Previous 1, 2, 3, ..., 73, 74, 75, 76, 77, ..., 111, 112, 113 Next
Author Message
rodin.s

Joined: 22 Sep 2010
Posts: 327
Location: Ukraine

PostPosted: Wed 21 Mar 2012, 14:28    Post_subject: command line pmusic  

Is it possible to use pmusic as command line player? I tried
Code:
pmusic -b filename.mp3
but it didn't work.
Back to top
View user's profile Send_private_message 
Brown Mouse


Joined: 09 Jun 2009
Posts: 437
Location: Tenerife Canary Islands

PostPosted: Wed 21 Mar 2012, 14:37    Post_subject:  

Hi zigbert

I tried Pmusic 2.5.1 in Slacko 5.3.2.7 earlier but still encounter the same problems with no album art and cd track information for audio cd's.
I've not yet tried it in Lucid 528-04.
Back to top
View user's profile Send_private_message 
zigbert


Joined: 29 Mar 2006
Posts: 5295
Location: Valåmoen, Norway

PostPosted: Wed 21 Mar 2012, 16:24    Post_subject:  

lilhelper wrote:
I don't have amr-support anymore since upgrading.
What is amr-support?


Sigmund

_________________
Stardust resources
Back to top
View user's profile Send_private_message Visit_website 
zigbert


Joined: 29 Mar 2006
Posts: 5295
Location: Valåmoen, Norway

PostPosted: Wed 21 Mar 2012, 16:31    Post_subject:  

Brown Mouse wrote:
Hi zigbert

I tried Pmusic 2.5.1 in Slacko 5.3.2.7 earlier but still encounter the same problems with no album art and cd track information for audio cd's.
I've not yet tried it in Lucid 528-04.
could you please try to deactivate line 46 and 54 in /usr/local/pmusic/func_cd by adding a hash

Code:
      if [ "`wc -l $WORKDIR/cd-cddb2 | awk '{print $1}'`" -gt 10 ]; then
         while [ ! "$BREAK2" ]; do
            #don't run complete cdda2wav check. kill it when we got enough
            if [ "`grep ISRC $WORKDIR/cd-cddb2`" ] || [ "`grep 'load cdrom' $WORKDIR/cd-cddb2`" ]; then
               BREAK2=true
               cp -f $WORKDIR/cd-cddb2 $WORKDIR/cd-cddb
            fi
         done
      fi

should be
Code:

#      if [ "`wc -l $WORKDIR/cd-cddb2 | awk '{print $1}'`" -gt 10 ]; then
         while [ ! "$BREAK2" ]; do
            #don't run complete cdda2wav check. kill it when we got enough
            if [ "`grep ISRC $WORKDIR/cd-cddb2`" ] || [ "`grep 'load cdrom' $WORKDIR/cd-cddb2`" ]; then
               BREAK2=true
               cp -f $WORKDIR/cd-cddb2 $WORKDIR/cd-cddb
            fi
         done
#      fi


Does this solve it ???

_________________
Stardust resources
Back to top
View user's profile Send_private_message Visit_website 
zigbert


Joined: 29 Mar 2006
Posts: 5295
Location: Valåmoen, Norway

PostPosted: Wed 21 Mar 2012, 16:36    Post_subject: Re: command line pmusic  

rodin.s wrote:
Is it possible to use pmusic as command line player? I tried
Code:
pmusic -b filename.mp3
but it didn't work.
Be aware that -b (small b) will add the song to the playlist, and if playlist is not empty, nothing will start playing. To use Pmusic as a standalone commandline player, you should use the -B (capital b). This will NOT interact with the playlist or the pmusic gui-mode in any way.


Sigmund

_________________
Stardust resources
Back to top
View user's profile Send_private_message Visit_website 
vicmz


Joined: 15 Jan 2012
Posts: 645

PostPosted: Wed 21 Mar 2012, 16:48    Post_subject:    

Hi zigbert

I can't use the low-powered feature in Racy 5.2.90, when I try to activate it Pmusic restarts but keeps the manager form. Upgrading Pmusic doesn't seem to solve the problem. Actually I'm not low-powered, but I like the GUI to show only the playlist and click on each file (on ROX-Filer) that I want to build a playlist. Any suggestions?
Back to top
View user's profile Send_private_message 
sheldonisaac

Joined: 21 Jun 2009
Posts: 295
Location: Philadelphia, PA

PostPosted: Wed 21 Mar 2012, 17:24    Post_subject:  

Brown Mouse wrote:
Tested the latest version of Pmusic 2.5.0 in Slacko 5.3.2.7 and am unable to get any track information, album art and also no lyrics to the songs using various cd's.
I'm using Pmusic version 2.3.0 in Lucid 528-04 with perfect results.

Frugal Puppy 5.28-004.

Just downloaded Pmusic 2.5.1.
Put in a commercial CD.

Shows the track info.
And the album art.
Back to top
View user's profile Send_private_message 
Brown Mouse


Joined: 09 Jun 2009
Posts: 437
Location: Tenerife Canary Islands

PostPosted: Thu 22 Mar 2012, 06:23    Post_subject:  

zigbert wrote:
Brown Mouse wrote:
Hi zigbert

I tried Pmusic 2.5.1 in Slacko 5.3.2.7 earlier but still encounter the same problems with no album art and cd track information for audio cd's.
I've not yet tried it in Lucid 528-04.
could you please try to deactivate line 46 and 54 in /usr/local/pmusic/func_cd by adding a hash

Code:
      if [ "`wc -l $WORKDIR/cd-cddb2 | awk '{print $1}'`" -gt 10 ]; then
         while [ ! "$BREAK2" ]; do
            #don't run complete cdda2wav check. kill it when we got enough
            if [ "`grep ISRC $WORKDIR/cd-cddb2`" ] || [ "`grep 'load cdrom' $WORKDIR/cd-cddb2`" ]; then
               BREAK2=true
               cp -f $WORKDIR/cd-cddb2 $WORKDIR/cd-cddb
            fi
         done
      fi

should be
Code:

#      if [ "`wc -l $WORKDIR/cd-cddb2 | awk '{print $1}'`" -gt 10 ]; then
         while [ ! "$BREAK2" ]; do
            #don't run complete cdda2wav check. kill it when we got enough
            if [ "`grep ISRC $WORKDIR/cd-cddb2`" ] || [ "`grep 'load cdrom' $WORKDIR/cd-cddb2`" ]; then
               BREAK2=true
               cp -f $WORKDIR/cd-cddb2 $WORKDIR/cd-cddb
            fi
         done
#      fi


Does this solve it ???


Success!!
That fixed it zigbert.

Thank you Smile
Back to top
View user's profile Send_private_message 
zigbert


Joined: 29 Mar 2006
Posts: 5295
Location: Valåmoen, Norway

PostPosted: Thu 22 Mar 2012, 13:19    Post_subject:  

vicmz wrote:
Hi zigbert

I can't use the low-powered feature in Racy 5.2.90, when I try to activate it Pmusic restarts but keeps the manager form. Upgrading Pmusic doesn't seem to solve the problem. Actually I'm not low-powered, but I like the GUI to show only the playlist and click on each file (on ROX-Filer) that I want to build a playlist. Any suggestions?
The low-powered frontend looks like Manager but misses some features. I think you are talking about the Classic frontend that was default in the Pmusic 1 series. This is not official supported anymore, as Pmusic evolved out of its skin.


Sigmund

_________________
Stardust resources
Back to top
View user's profile Send_private_message Visit_website 
zigbert


Joined: 29 Mar 2006
Posts: 5295
Location: Valåmoen, Norway

PostPosted: Thu 22 Mar 2012, 13:22    Post_subject:  

sheldonisaac and Brown Mouse
Thank you for the feedback

Looks like the code is a bit hardware sensitive.
I have a plan which will solve this....


Sigmund

_________________
Stardust resources
Back to top
View user's profile Send_private_message Visit_website 
zigbert


Joined: 29 Mar 2006
Posts: 5295
Location: Valåmoen, Norway

PostPosted: Thu 22 Mar 2012, 14:51    Post_subject:  

This test-build should fix the CD-audio issue.
It would be great if someone tried it and reported back if it succeeded or not.

The workaround for Brown Mouse turned off the check to avoid the CD-loading to hang.
In the attached pet, I have removed the checking, but offered instead an option to cancel loading of CD in the splash window.


Thank you
Sigmund
pmusic-2.5.1-1.pet
Description 
pet

 Download 
Filename  pmusic-2.5.1-1.pet 
Filesize  92.15 KB 
Downloaded  106 Time(s) 

_________________
Stardust resources
Back to top
View user's profile Send_private_message Visit_website 
sheldonisaac

Joined: 21 Jun 2009
Posts: 295
Location: Philadelphia, PA

PostPosted: Thu 22 Mar 2012, 15:07    Post_subject:  

zigbert wrote:
This test-build should fix the CD-audio issue.
It would be great if someone tried it and reported back if it succeeded or not.

The workaround for Brown Mouse turned off the check to avoid the CD-loading to hang.
In the attached pet, I have removed the checking, but offered instead an option to cancel loading of CD in the splash window.

Thank you
Sigmund

OK, will try; though I am not familiar with the many features of Pmusic

Seems to work OK.
Looking forward to hearing from more users.

Don't understand this: "option to cancel loading of CD in the splash window"
When would I see that option offered?


Thanks,

Sheldon
Back to top
View user's profile Send_private_message 
zigbert


Joined: 29 Mar 2006
Posts: 5295
Location: Valåmoen, Norway

PostPosted: Thu 22 Mar 2012, 17:20    Post_subject:  

sheldonisaac wrote:
Don't understand this: "option to cancel loading of CD in the splash window"
When would I see that option offered?


_________________
Stardust resources
Back to top
View user's profile Send_private_message Visit_website 
linuxcbon

Joined: 09 Aug 2007
Posts: 698

PostPosted: Sat 24 Mar 2012, 09:08    Post_subject:  

pmusic 2.5.1 in racy 5.2.90
- when running for first time :
/usr/local/pmusic/func_player: line 253: /root/.pmusic/tmp/tmpPLAYLIST: No such file or directory
- preferences pmusic general language is not set
- preferences pmusic general frontend is /usr/local/pmusic/presets/Manager and Manager appears too
- playlist empty, I click one radio station, it runs it, I click another, it adds to playlist but doesnt run it automatically.
- same for mp3s
- one mp3 plays, track info, stream infos still show Audio format: Audio etc.
- pEqualizer should be default in puppy ?
Back to top
View user's profile Send_private_message 
Flash
Official Dog Handler


Joined: 04 May 2005
Posts: 9909
Location: Arizona USA

PostPosted: Sat 24 Mar 2012, 10:16    Post_subject:  

I agree, Puppy could use an equalizer, but I think it should be included with Puppy's existing audio controls. Could a link to pEqualizer be added to Retrovol's "Full window"?
Back to top
View user's profile Send_private_message 
Display_posts:   Sort by:   
Page 75 of 113 Posts_count   Goto page: Previous 1, 2, 3, ..., 73, 74, 75, 76, 77, ..., 111, 112, 113 Next
Post_new_topic   Reply_to_topic View_previous_topic :: View_next_topic
 Forum index » Advanced Topics » Additional Software (PETs, n' stuff) » Multimedia
Jump to:  

Rules_post_cannot
Rules_reply_cannot
Rules_edit_cannot
Rules_delete_cannot
Rules_vote_cannot
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group
[ Time: 0.0987s ][ Queries: 13 (0.0263s) ][ GZIP on ]