Mpd + client or a simple music app

I was trying to weigh the advantages of using mpd + a client (ncmpc) as against cplay
I use the mpd + ncmpc on my Arch partition but cplay on my debian + fluxbox partition.
What would be the advantages of using mpd? I do plan to connect to this machine (connected to my music system) using another machine, but I can also do that via ssh and controlling cplay which i always start with screen.
What I am trying to get at is...what does mpd give me additionally?

Stythys wrote:mpd gives you a lighter weight client that uses less resources.
On the contrary ..mpg123 - used by cplay uses a lot less memory than mpd + ncmpc combined. Here's my ps_mem.py output
bash-3.2# python ps_mem.py
Private + Shared = RAM used Program
88.0 KiB + 19.0 KiB = 107.0 KiB crond
92.0 KiB + 19.0 KiB = 111.0 KiB init
92.0 KiB + 29.5 KiB = 121.5 KiB portmap
104.0 KiB + 55.0 KiB = 159.0 KiB hald-addon-acpi
140.0 KiB + 39.0 KiB = 179.0 KiB xinit
140.0 KiB + 89.0 KiB = 229.0 KiB hald-addon-input
144.0 KiB + 93.0 KiB = 237.0 KiB hald-addon-storage
204.0 KiB + 38.0 KiB = 242.0 KiB dbus-launch
228.0 KiB + 15.0 KiB = 243.0 KiB udevd
160.0 KiB + 85.0 KiB = 245.0 KiB su
160.0 KiB + 86.0 KiB = 246.0 KiB hald-runner
256.0 KiB + 55.0 KiB = 311.0 KiB famd
300.0 KiB + 100.0 KiB = 400.0 KiB agetty (5)
288.0 KiB + 126.5 KiB = 414.5 KiB startx
352.0 KiB + 93.5 KiB = 445.5 KiB sshd
412.0 KiB + 37.0 KiB = 449.0 KiB syslog-ng
360.0 KiB + 99.0 KiB = 459.0 KiB login
228.0 KiB + 284.0 KiB = 512.0 KiB dbus-daemon (2)
408.0 KiB + 145.0 KiB = 553.0 KiB htop
264.0 KiB + 292.5 KiB = 556.5 KiB openbox-session (3)
592.0 KiB + 68.0 KiB = 660.0 KiB ncmpc
780.0 KiB + 33.0 KiB = 813.0 KiB mpg123
636.0 KiB + 244.0 KiB = 880.0 KiB hald-addon-dell-backlight
956.0 KiB + 276.0 KiB = 1.2 MiB conky
1.8 MiB + 159.5 KiB = 2.0 MiB hald
1.6 MiB + 601.5 KiB = 2.2 MiB bash (4)
2.7 MiB + 614.5 KiB = 3.3 MiB python2.5
3.1 MiB + 2.1 MiB = 5.3 MiB fbpanel
8.7 MiB + 790.5 KiB = 9.5 MiB openbox
6.6 MiB + 3.2 MiB = 9.8 MiB mpd (3)
8.2 MiB + 1.9 MiB = 10.1 MiB urxvt (4)
9.0 MiB + 2.2 MiB = 11.2 MiB pidgin
21.6 MiB + 879.5 KiB = 22.4 MiB skype
38.7 MiB + 1.1 MiB = 39.8 MiB Xorg
53.0 MiB + 965.0 KiB = 53.9 MiB opera
178.3 MiB
=================================
Private + Shared = RAM used Program
If you check mpg123 takes about 813KB whereas mpd takes 9.8MB + 660KB for ncmpc. Of course I am not counting the urxvt which is running cplay and that's because there is another urxvt for ncmpc as well ..so I am negating those against each other - although they may or may not take the same amount of memory.
htop tells me cplay takes 1.8 % mem and mpg123 takes 0.6%
ncmpc takes 2% mem and mpd takes 2%, 2.2% and 1.5%
For some reason - mpd shows 3 instances...but i just started it once
Even when I kill all the pids of mpd and then issue mpd in the terminal - it immediately gives 3 pids to mpd. I checked using pidof mpd.
All in all cplay seems to take a lot less memory on my system.
Last edited by Inxsible (2008-07-12 00:50:47)

Similar Messages

  • Mpd_control - simple mpd client using dmenu

    I hacked together a simple bash script that lists artists, albums, playlists etc using dmenu.
    An example of how I usually use it:
    print a list of all artists => enter search string => choose artist => get list of albums by this artist in next screen => choose album => get list of all titles in this album => choose a title => add it to the playlist after the current song and play it.
    Actually there are a lot more options.
    I use it with a patched dmenu version from AUR (vertical- and xft-patch). But it should also work with normal dmenu.
    Have Fun!
    http://aur.archlinux.org/packages.php?ID=32179
    http://github.com/bubbl3gum/mpd_control
    #!/bin/bash
    #when set to exit, mpd_control will exit if you press escape
    #when set to break, mpd_control will go the upper level if possible
    ESC_ACTION="break"
    # source configuration file for dmenu if exists
    if [ -f $HOME/.dmenurc ]; then
    . $HOME/.dmenurc
    else
    DMENU='dmenu -i'
    fi
    addaftercurrent(){
    #playlist is empty, just add the song
    if [ "$(mpc playlist | wc -l)" == "0" ]; then
    mpc add "$1"
    #there is no current song so mpd is stopped
    #it seems to be impossible to determine the current songs' position when
    #mpd is stopped, so just add to the end
    elif [ -z "$(mpc current)" ]; then
    mpc play
    CUR_POS=$(mpc | tail -2 | head -1 | awk '{print $2}' | sed 's/#//' | awk -F/ '{print $1}')
    END_POS=$(mpc playlist | wc -l)
    mpc add "$1"
    mpc move $(($END_POS+1)) $(($CUR_POS+1))
    mpc stop
    #at least 1 song is in the playlist, determine the position of the
    #currently played song and add $1 after it
    else
    CUR_POS=$(mpc | tail -2 | head -1 | awk '{print $2}' | sed 's/#//' | awk -F/ '{print $1}')
    END_POS=$(mpc playlist | wc -l)
    mpc add "$1"
    mpc move $(($END_POS+1)) $(($CUR_POS+1))
    fi
    addaftercurrentandplay(){
    #playlist is empty, just add the song
    if [ "$(mpc playlist | wc -l)" == "0" ]; then
    mpc add "$1"
    mpc play
    #there is no current song so mpd is stopped
    #it seems to be impossible to determine the current songs' position when
    #mpd is stopped, so just add to the end
    elif [ -z "$(mpc current)" ]; then
    mpc play
    CUR_POS=$(mpc | tail -2 | head -1 | awk '{print $2}' | sed 's/#//' | awk -F/ '{print $1}')
    END_POS=$(mpc playlist | wc -l)
    mpc add "$1"
    mpc move $(($END_POS+1)) $(($CUR_POS+1))
    mpc play $(($CUR_POS+1))
    #at least 1 song is in the playlist, determine the position of the
    #currently played song and add $1 after it
    else
    CUR_POS=$(mpc | tail -2 | head -1 | awk '{print $2}' | sed 's/#//' | awk -F/ '{print $1}')
    END_POS=$(mpc playlist | wc -l)
    mpc add "$1"
    mpc move $(($END_POS+1)) $(($CUR_POS+1))
    mpc play $(($CUR_POS+1))
    fi
    case $1 in
    -a|--artist)
    while true; do
    ARTIST="$(mpc list artist | sort -f | $DMENU)";
    if [ "$ARTIST" = "" ]; then $ESC_ACTION; fi
    while true; do
    ALBUMS=$(mpc list album artist "$ARTIST" | sort -f);
    ALBUM=$(echo -e "replace all\nadd all\n--------------------------\n$ALBUMS" | $DMENU);
    if [ "$ALBUM" = "" ]; then $ESC_ACTION;
    elif [ "$ALBUM" = "replace all" ]; then
    CUR_SONG=$(mpc current)
    mpc clear
    mpc find artist "$ARTIST" | mpc add
    if [ -n "$CUR_SONG" ]; then mpc play; fi
    $ESC_ACTION
    elif [ "$ALBUM" = "add all" ]; then
    mpc find artist "$ARTIST" | mpc add
    $ESC_ACTION
    fi
    while true; do
    TITLES=$(mpc list title artist "$ARTIST" album "$ALBUM")
    TITLE=$(echo -e "replace all\nadd all\n--------------------------\n$TITLES" | $DMENU);
    if [ "$TITLE" = "" ]; then $ESC_ACTION
    elif [ "$TITLE" = "replace all" ]; then
    CUR_SONG=$(mpc current)
    mpc clear;
    mpc find artist "$ARTIST" album "$ALBUM" | mpc add
    if [ -n "$CUR_SONG" ]; then mpc play; fi
    $ESC_ACTION
    elif [ "$TITLE" = "add all" ]; then
    mpc find artist "$ARTIST" album "$ALBUM" | mpc add
    $ESC_ACTION
    fi
    while true; do
    DEC=$(echo -e "add after current and play\nadd after current\nreplace\nadd at the end" | $DMENU);
    case $DEC in
    $ESC_ACTION
    "add after current and play")
    addaftercurrentandplay "$(mpc find artist "$ARTIST" album "$ALBUM" title "$TITLE" | head -1 )"
    "add after current")
    addaftercurrent "$(mpc find artist "$ARTIST" album "$ALBUM" title "$TITLE" | head -1 )"
    "replace")
    CUR_SONG=$(mpc current)
    mpc clear
    mpc find artist "$ARTIST" album "$ALBUM" title "$TITLE" | head -1 | mpc add
    if [ -n "$CUR_SONG" ]; then mpc play; fi
    "add at the end")
    mpc find artist "$ARTIST" album "$ALBUM" title "$TITLE" | head -1 | mpc add
    esac
    $ESC_ACTION
    done
    done
    done
    done
    -t|--track)
    TITLE=$(mpc list title | sort -f | $DMENU)
    if [ "$TITLE" = "" ]; then exit; fi
    SONG=$(mpc find title "$TITLE" | head -1)
    addaftercurrentandplay "$SONG"
    -p|--playlist)
    PLAYLIST=$(mpc lsplaylists | $DMENU);
    if [ "$PLAYLIST" = "" ]; then exit; fi
    CUR_SONG=$(mpc current)
    mpc clear
    mpc load "$PLAYLIST";
    if [ -n "$CUR_SONG" ]; then mpc play; fi
    -j|--jump)
    TITLE=$(mpc playlist | $DMENU);
    if [ "$TITLE" = "" ]; then exit; fi
    POS=$(mpc playlist | grep -n "$TITLE" | awk -F: '{print $1}')
    mpc play $POS;
    -l|--longplayer)
    while true; do
    ALBUM=$(mpc list album | sort -f | $DMENU);
    if [ "$ALBUM" = "" ]; then $ESC_ACTION;
    fi
    while true; do
    TITLES=$(mpc list title album "$ALBUM")
    TITLE=$(echo -e "replace all\nadd all\n--------------------------\n$TITLES" | $DMENU);
    if [ "$TITLE" = "" ]; then $ESC_ACTION
    elif [ "$TITLE" = "replace all" ]; then
    CUR_SONG=$(mpc current)
    mpc clear;
    mpc find album "$ALBUM" | mpc add
    if [ -n "$CUR_SONG" ]; then mpc play; fi
    $ESC_ACTION
    elif [ "$TITLE" = "add all" ]; then
    mpc find album "$ALBUM" | mpc add
    $ESC_ACTION
    fi
    while true; do
    DEC=$(echo -e "add after current and play\nadd after current\nreplace\nadd at the end" | $DMENU);
    case $DEC in
    $ESC_ACTION
    "add after current and play")
    addaftercurrentandplay "$(mpc find album "$ALBUM" title "$TITLE" | head -1 )"
    "add after current")
    addaftercurrent "$(mpc find album "$ALBUM" title "$TITLE" | head -1 )"
    "replace")
    CUR_SONG=$(mpc current)
    mpc clear
    mpc find album "$ALBUM" title "$TITLE" | head -1 | mpc add
    if [ -n "$CUR_SONG" ]; then mpc play; fi
    "add at the end")
    mpc find album "$ALBUM" title "$TITLE" | head -1 | mpc add
    esac
    $ESC_ACTION
    done
    done
    done
    -h|--help)
    echo -e "-a, --artist search for artist, then album, then title"
    echo -e "-t, --track search for a single track in the whole database"
    echo -e "-p, --playlist search for a playlist load it"
    echo -e "-j, --jump jump to another song in the current playlist"
    echo -e "-l, --longplayer search for album, then title"
    echo "Usage: mpc_control [OPTION]"
    echo "Try 'mpc_control --help' for more information."
    esac
    Last edited by q0tsa (2009-11-23 10:51:43)

    Hello.
    My version of dmenu MPD client stopped to work and I founded this and it AWESOME!
    Thanks

  • Looking for a cool music app (music creation, recording, playing)

    Hi there,
    I was looking on the app store if there's such application but didn't succeeded at the moment.
    I'm looking for an app that would allow me to create music on the fly with a "midi-keyboard" with which I would record some notes then loop the sample and record a second track.
    And build my simple music by playing bass line, then adding some beat, etc...
    Any idea if it exist?
    thanks in advance

    Please be aware that you are not communicating with Apple when you post in these forums. Most of the people who will reply to your posts are, like me, your fellow users.
    As to your issue, first, make sure that you did not inadvertently make an in-app purchase. Many apps, particularly games, are free for the base game but charge for additional features such as levels, "coins" and other such add-ons. Check your Purchase History to see if that reminds you as to what you might have purchased:
    http://support.apple.com/kb/HT2727
    If you find that this was an in-app purchase, to prevent this from happening again, turn off "In App purchases" in the Restrictions settings on your device. For more information, see:
    http://support.apple.com/kb/HT4213
    As to a refund, that's not automatic since the terms of sale for the iTunes Store state that all sales are final. You can contact the iTunes Store, explain the reason for your request, and ask, though:
    http://www.apple.com/support/itunes/contact.html
    They're usually pretty lenient in the case of inadvertent purchases, but there are no guarantees.
    If the charge was not an in-app purchase that you made and forgot but the charges do appear in your Purchase History, contact the iTunes Store and let them know. You should also immediately change your password for your Apple ID. If the charges don't appear in your Purchase History, they were probably fake charges made directly to your credit card, and your card issuer will need to handle those.
    Regards.

  • Every single song I delete from iCloud on my Mac remains listed in the Music app on my iPhone 4S, and then becomes broken -- What the heck?

    Hello,
    So this is annoying me to no end because I just spent $25 to sign up for iTunes Match and so far its wasted my time and given me nothing but a massive headache. This is obviously a major bug on the SERVICE END, not mine.
    Starting with an empty iTunes library on my Mac, I began ripping my CDs in iTunes Plus AAC format the other night with the intent of matching & uploading my entire music library into iCloud for streaming & downloading to my iPhone 4S on the go. Simple in theory, right? After some basic tag editing -- changing genres, a simple alteration to a title here, deleting the composer there -- and then updating iTunes Match (Store > Update iTunes Match), I notice I'm getting duplicates of a bunch of my songs appearing on my iPhone. I haven't downloaded anything to the device, they're all just listed with the cloud icon next to them.
    So I'm thinking, whatever, I screwed something up. I'm only several CDs into the process so I'll just delete the iTunes library and start over again. Shift + right click, delete everything. Do you want to delete these songs from iCloud as well? Yes. Update iTunes Match. There are 0 songs in iCloud. Okay.
    The songs are still showing in my iPhone Music app. Strange. Swipe to delete does nothing, they're not on the device. They're pointing to files in the cloud that are either no longer there or somewhere that I cannot access anymore. Broken aliases. The album artwork still shows up, but playing the songs just kicks me back to the album menu. Navigating to Settings > General > Usage > Music shows me there is no data on the device. 0 bytes.
    One thing I notice is that sometimes after syncing a handful of these broken songs will show up in a "Purchased" playlist on my iPhone within the iTunes browser -- I haven't purchased any music from the iTunes store, not one song -- and inspecting them with right click > Get Info reveals them as Stream files, not iTunes Plus AAC files.
    Turning iTunes Match off and on again both from within iTunes and on my iPhone does nothing.
    Syncing wirelessly or via USB does nothing.
    Backing up and restoring my iPhone does nothing.
    Double clicking the Home button and quitting the Music process, then opening it again does nothing.
    Hard resetting the iPhone does nothing.
    This is something that's happening with my Apple ID on the service end, not locally or on the user end. As long as iTunes Match is turned on in my iPhone settings, all of this broken music -- everything I've matched to iCloud and deleted -- shows up. I've done everything within the parameters of proper usage, and iTunes tells me there is nothing in iCloud after it updates but my phone keeps seeing crap that isn't -- or shouldn't be -- there.
    I WANT to use iTunes Match, I just paid 25 freaking dollars for it, but its completely busted for me right now and I know ripping and matching some more CDs is just going to make it worse and populate my iPhone with an even bigger broken library. I just ripped and matched one more CD an hour ago without editing any of the tags, just let iTunes Match do its thing, and then after right clicking and following the prompts to delete the 18 songs both from both iTunes AND iCloud its still showing up on my iPhone. Busted like all the others.
    Can we please get an update on this as soon as possible? This is driving me nuts and I don't know what else to do.

    It's a slightly convoluted process.
    Disable iTunes Match on your iPhone
    Settings > Music > Itunes Match
    Now, make sure you've killed the Music app by double-tapping the home button, and deleting the app there where it is running.  Important step. The app should not be active.
    Next step:
    Settings > General > Usage (it takes a while to load) > then delete the Music app there
    Power your phone down, and back up again.
    Sync your music via iTunes like you always have ...
    ... and this should fix your problem.

  • Why can I no longer watch music videos in full screen mode via a playlist in the music app since upgrading to ios7?

    Since upgrading to ios7 my iPhone 4S no longer allows me to watch music videos in full screen mode when I select the clips via a playlist from the music app.
    It's now more necessary than before to use the music app rather than the video app to select music videos to play.  That's because the video app doesn't list music videos by artist any more. And also because the fast forward and rewind buttons on headphones remote no longer work on videos.
    How do I watch full screen videos when rotating my iphone now shows my music library rather than showing the video itself?

    I do not think it is a problem to play videos in the full screen mode using the video app.  It should work just fine, it does work ok for me  on iphone 5.  The original question was to play music videos in the music app.  Music videos and videos are two different things - I am not sure why but they are.
    The problem here is that the music app supports lists and the video app does not.  I just looked at the ios7 video app and while my few test videos are shown in it, the lists they were in (in iTunes) are nowhere to be found.  There is no lists in the video app - period - which is as it was before. 
    The video app plays videos and music videos in the full screen mode no problem but if you have a few hundreds or more of such videos you will have hard time finding the one you want to play.  There is simply no way to categorize or group videos.  The old good folders/directories are, I guess, too simple for Apple.  It is just too bad that for years on end the world's leader in S/W development did not offer anything to categorize videos.
    You have lists, albums, etc., for music, you have albums for pictures but you have absolutely nothing for videos.  And this is and has been the Apple's state-of-the art solution for this problem - simply insist that the problem does not exist.  Actually it is getting worse.  Not only there is nothing to categorize or group videos but now the only way it could be done (by marking videos as music videos and using the music app) results in a mini playback area. 
    Soon this OS will be able to cook dinner for your but grouping videos... no way.
    What is happening here???  

  • How come although iPads are getting more powerful, the iOS apps from apple are so mediocre and just not that great? We spend all this money for the latest ipad and all we get is these $5 video and music apps from apple. Why create the iOS platform and onl

    How come although iPads are getting more powerful, the iOS apps from apple are so mediocre and just not that great? We spend all this money for the latest ipad and all we get is these $5 video and music apps from apple. Why create the iOS platform and only offer so so apps like IMovie and GarageBand ? While other developers are offering much better apps like pinnacle studio for video, Cubasis and Auria for music production, apple has not showed much growth in terms of innovation. While there's nothing wrong with making an app like GarageBand where "anyone " can make a song, how about something for real musicians or an app not so basic as it get for video editing? After spending 0ver $700 on an ipad I'd be willing to spend more than $5 for a better video or audio app.

    First, try a system reset although I can't give you any confidence.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  It could take well over an hour!  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore, go into Recovery Mode per the instructions here.

  • Is it possible to remove the album artwork in iOS 7's music app?

    I can only view 4 artists at a time when I sort my music in the iOS 7 music app by artist.  Before, I could see more artists at a time, making it quicker and easier to find the music that I want while on the go.  Also, when I finally find the artist that I want to listen to, my music is automatically sorted by album, giving me no option to view all the songs without the annoying album art.  Apple took something that was very simple, and made it more complicated time consuming.
    Is anyone aware of any options/settings that I may have overlooked that could solve my problem?

    To remove the album art, select all tracks in the album and Get Info. Check the box next to the Artwork field, hit delete and close the window. This should delete the artwork.

  • Looking for a music app that doesn't stop playing music when album over

    Back in the 90s, I had a 5 disc CD player.  When one album was done, it would move to the next album. 
    With iTunes, one album was done, the next album would start playing.
    With iPhone, one abum is done, music stops playing. 
    I don't understand the logic behind the iPhone music app.  This is especially bad for when I'm driving. 
    I'm looking for a type of Music app that either:
    1)  Allows me to swipe to next/previous album as well as next/previous track.  (maybe  a swipe up/down command)?
    or
    2)  Allows me to display all songs, but sorted by Artist or album (that way I automatically have one long
    or
    3) Will automatically advance to the next album when the current one is done.

    Bob, I have the guide, just didn't think of the playlist angle.  I was looking for  the genre/Siri thing.  But hey, making a playlist worked.
    Demo, yes Siri works now that I've made a playlist and say "playlist"  And I'm satisfied with the fix.
    But you'd think apple could make playing music more convenient.  I took off all my music and retagged it, leaving all info blank (ie: albums and artists etc) and leaving only genre because it's so difficult to get it play a genre.  I'd pick a genre, start with a  song and it would play only songs from a single album.  I've read of some odd fixes for this and a couple of them worked...sometimes!  (If you stand on one leg and whistle Dixie kind of things)  Ridiculous! 
    By eliminating all tag info except genre I fixed that issue and can now play by genre.
    But as of now Siri still won't play Gospel music by my asking, she still replaces my spoken "Gospel" with her "Christian & Gospel" which like I said doesn't exist.  And correcting Siri doesn't work.  All my music falls into 3 genres, 2 of them Siri handles perfectly, Gospel she messes up.
    Bottom line - I shouldn't have had to make a playlist, or played with the tagging of my music.  Apple says you can play your music by genre, and it should be simple to do so.

  • Music App with Both Chord and Solo Keyboards?

    For a while now, I've been looking for an iPad app that I'd think there'd be dozens of, but I've yet to find one.
    It would be a simple music composing app that lets you play a melody line on a keyboard while simultaneously playing a chord (via button or second keyboard) from a (modifiable) selection of chords. So, one hand composing melody, one finger (on the other hand) playing supporting chords.
    It seems like it'd be a fairly intuitive way to quickly save rough musical ideas, but maybe it's just me.
    Most of the apps I've downloaded let you make, play and/or record a sequence of chords, but there's no way to play a melody at the same time. I'd like the ability to control the playing of the melody and chords...tinker around with the combinations, you know?
    The closest I've found is "SongSynth," but that just plays a push-button chord off the same note you're playing on the (only one-octive) keyboard. What if I want to play a G note in the melody over a chord that isn't rooted in G?
    Anyway, hope this makes sense, and hope this app exists and you can steer me to it!

    I agree!
    It's hard enough to juggle earpieces, expensive hardware and belts (etc) for keys (etc) with software when exercising.
    Particulary since most running log apps can't control Playlists directly.
    Which to launch, then, start first…!
    The simpler and better-integrated such handling is, the better.
    It's tempting to think the changes are part of Apple's bigger plans to 'break up' iTunes, which has become unweildy, given all the functionality it's had to grow to encompass - when compared with a simple audio manager ten years or so ago.

  • How do I open a .m4a file from Mail into Music app?

    How do I open a .m4a file from Mail into Music app?
    I mixed down a song from my band's latest session and saved it as a .m4a file (Apple AAC Audio format) and I e-mailed it to myself. Then on my phone I opened the e-mail message in Mail and held a long-press down on the attached .m4a file. But I do not see the option to open it up into the Music app. It only gives me the options of iMovie, WeChat, and USB Disk. Why would I want to open it up in those? It's a song. It should open up into the Music app so I can play it. What the heck?
    Please don't tell me that I have to use iTunes to do this and sync my phone to my computer, because I *do not* want to add these songs to my iTunes library. They are *practice session tracks* that I want to listen to then delete later when we have new versions.
    If there is no way to open them into the Music app, then is there a music player app I can get somewhere that will let me simply save audio files from Mail into it, and use it as a player for those songs? That's all I want to do.
    The only reasonable workaround I have found so far is to save them as .mp4 audio files, which the iPhone thinks are movies, so it lets me save them into the camera roll as Videos.
    Voice Memos would be acceptable as a place for them to be able to open into as well, but of course that's also not on the options list. Sigh.

    TJBUSMC1973 wrote:
    You'll have to use iTunes, add it to your iTunes library, then sync it.  You can always delete it from your iTunes library later.
    Why is that such an issue for you?
    Why do people insist on replying to threads without even reading the original post? I explained it there already!
    I don't have to use iTunes to save an image from Mail into my camera roll, or to save a PDF from Mail into iBooks. Why should I have to use iTunes to save a music file into Music app?
    But I'll repeat it since evidently you can't be asked to read the original posts before spamming a thread with questions that have already been answered. I *do not* want to add these songs to my iTunes library.
    My iTunes library is a sacred temple into which I only allow to enter the very best and highest-fidelity musical recordings of all time. I refuse to sully and soil my iTunes library with crappy practice mixdowns from my band, etc.
    Want to know why? Because I like to be able to hit "shuffle all" on my iTunes library and know that something that will improve my existence will emanate forth from this amazing device that I have invested thousands of dollars into (yes, I count my cell phone plan amongst the expenses).
    I shall not have the crappy burner mixdown tracks from my band's practice sessions come up every five songs (we generate TONS of these... literally hundreds... and they are all high-bitrate .m4a tracks in the 10-15 MB range). I let iTunes keep my music folder organized on my computer. It makes copies of everything being placed into it, and I don't want 159 GB of copies of burner tracks hiding like roaches throughout my temple. We don't name these files anything sensible (in fact the guy who mixes them down intentionally gives them random weird names) and they lack metadata. So there's no easy way to delete them back out of iTunes once they're in there. It's a huge pain; I used to do it, but I swore it off years ago and *I'm never going back!*
    The REAL question is, why does Apple force me to have to use iTunes—the most convoluted, kludgy piece of bloatware ever to issue forth from Cupertino—to do something as simple as adding an MP3 from Mail into the Music app on my phone? Why can't there be something simple—something equivalent to the Camera Roll inside the Music app, not only for the files I want to save from Mail, but also for my Garage Band exports, not to mention all the exports from all the various synthesizer, drum machine, and recording apps I use on a daily basis in iOS?
    It would be awfully nice to be able to play the songs I've recorded right in the Music app without having to go through the rigamarole of adding those files to my iTunes library, tagging them with metadata, syncing, etc. etc. yadda yadda yadda—just to delete them again as soon as I've synced so they don't pollute my computer's iTunes library!
    I bought Apple for ease of use, not so I would be forced to jump through a million hoops just do to something that ought to take one tap to accomplish!  That's ridiculous!

  • The volume controls will not show up in the music app or the lock screen music controls. What do I do?

    The volume controls will not show up in the music app or I the lock screen music controls. What do I do?

    OMG......THANK YOU THANK YOU......I been reading articles after articles and nothing was working......tryed the Crtl+S and there it was. I can not thank you enough......I appricate it    Can not believe it was that simple. I am one happy person again.....

  • Downloaded audio not visible in Music app on iPad 2?

    Hello,
    Has anyone had this issue reported from students using iPads to access iTunes U material? If so, what did you do about it?
    A student reported not being able to find downloaded lecture audio files from our private iTunes U site. When he goes to find he files in the Music app, only one is there under the iTunes U section from a whole course.
    I am able to replicate the issue on my iPad 2 running iOS 5.0.1. You can find the files on the iPad via a Spotlight search.
    If I use iTunes on my PC or Mac to download the same files, they are all visiible in my iTunes U library so I don't think it's our iTunes U a setup but the Music app on the iPad not having the library database set correctly after the audio is downloaded.
    I did an extraction of the UbiquitousMetadata.sqlitedb from my iPad to see what the data looked like.
    The value of a key field for a file the is visible in the Music app looks like:
    PHAR 709 - Audio-Shenandoah University-24 Skin Cancers and UV Protection (2010)
    Some values for the key field that can not be reached via the iTune U section in the Music app are:
    -Shenandoah University-03 Anemia II
    -Shenandoah University-02 Anemias I
    -Shenandoah University-01 Review of Normal Gastrointestinal Anatomy & Physiology
    I don't know enough about the interals of the Music app database but it looked like the keys aren't formed quite right (i.e. missing the course # in the key) and that could cause the files to not show up in the Music app. Not sure if the iTunes app sets those ot the Music app.
    thanks for any feedback,
    ~Leigh

    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore, go into Recovery Mode per the instructions here.

  • [Solved] MPD clients connect to server too long first time

    When my system start mpd clients cannot connect to server a long(10-15 seconds or more) for some reason.
    Same time internet connection and network seems to be ok.
    So, It's look like I run mpc for example and it get stuck. This problem is new. 2-4 weeks or less.
    I've tried use user and global config without any success.
    Mpd config now look like this:
    music_directory "/home/neg/music"
    playlist_directory "/home/neg/.mpd/playlists"
    db_file "/home/neg/.mpd/mpd.db"
    log_file "/home/neg/.mpd/mpd.log"
    pid_file "/home/neg/.mpd/mpd.pid"
    state_file "/home/neg/.mpd/mpdstate"
    sticker_file "/home/neg/.mpd/sticker.sql"
    user "neg"
    bind_to_address "localhost"
    port "6600"
    input {
    plugin "curl"
    save_absolute_paths_in_playlists "yes"
    metadata_to_use "artist,album,title,track,name,genre,date"
    follow_inside_symlinks "yes"
    connection_timeout "2"
    filesystem_charset "UTF-8"
    input {
    plugin "curl"
    audio_output {
    type "pulse"
    name "Local Music Player Daemon"
    mixer_type "hardware"
    server "127.0.0.1"
    My netctl profile looks like this:
    Description='A basic dhcp ethernet connection'
    Interface=enp6s0
    Connection=ethernet
    SkipNoCarrier=yes
    IP=static
    DNS=('192.168.1.1')
    Address=('192.168.1.35/24')
    Gateway='192.168.1.1'
    ## for DHCPv6
    #IP6=dhcp
    ## for IPv6 autoconfiguration
    #IP6=stateless
    System start looks almost normal. USB reinit after uefi takes a lot of time sometimes, but it's not critical.
    [~] >> PAGER= systemd-analyze blame
    7.483s systemd-udev-settle.service
    543ms zfs-mount.service
    443ms systemd-modules-load.service
    121ms [email protected]
    100ms [email protected]
    83ms [email protected]
    68ms systemd-logind.service
    68ms lm_sensors.service
    59ms alsa-restore.service
    57ms zfs-share.service
    38ms systemd-vconsole-setup.service
    25ms polkit.service
    24ms [email protected]
    18ms ntpd.service
    14ms systemd-udev-trigger.service
    14ms avahi-daemon.service
    13ms systemd-binfmt.service
    13ms mnt-home.mount
    12ms systemd-tmpfiles-setup-dev.service
    12ms dev-hugepages.mount
    10ms dev-mqueue.mount
    10ms systemd-remount-fs.service
    10ms sys-kernel-debug.mount
    9ms proc-sys-fs-binfmt_misc.mount
    8ms systemd-tmpfiles-setup.service
    6ms systemd-update-utmp.service
    5ms systemd-journal-flush.service
    5ms boot-efi.mount
    5ms systemd-random-seed.service
    4ms kmod-static-nodes.service
    4ms systemd-udevd.service
    3ms var-cache-davfs2.mount
    3ms var-cache-pkgfile.mount
    3ms udisks.service
    3ms var-cache-pacman.mount
    2ms rtkit-daemon.service
    1ms var-tmp.mount
    1ms systemd-sysctl.service
    1ms zfs-import-cache.service
    1ms systemd-user-sessions.service
    937us sys-kernel-config.mount
    911us tmp.mount
    Whole system config
    [~] >> inxi -FC
    System: Host: unreal Kernel: 3.18.2-2-ARCH x86_64 (64 bit) Desktop: N/A Distro: Arch Linux
    Machine: System: ASUS product: All Series
    Mobo: ASUSTeK model: SABERTOOTH Z97 MARK 1 version: Rev 1.xx
    Bios: American Megatrends version: 0901 date: 05/08/2014
    CPU: Quad core Intel Core i7-4790K CPU (-HT-MCP-) cache: 8192 KB flags: (lm nx sse sse2 sse3 sse4_1 sse4_2 ssse3 vmx)
    Clock Speeds: 1: 4000.00 MHz 2: 4000.312 MHz 3: 4000.625 MHz 4: 4000.00 MHz 5: 4005.156 MHz 6: 4000.156 MHz 7: 4000.781 MHz 8: 4001.718 MHz
    Graphics: Card: NVIDIA GM204 [GeForce GTX 980] X.Org: 1.16.3 driver: nvidia Resolution: [email protected]
    GLX Renderer: GeForce GTX 980/PCIe/SSE2 GLX Version: 4.4.0 NVIDIA 343.36
    Audio: Card-1: NVIDIA GM204 High Definition Audio Controller Sound: ALSA ver: k3.18.2-2-ARCH
    Card-3: Creative driver: USB Audio
    Network: Card-1: Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller driver: r8169
    IF: enp6s0 state: up speed: 1000 Mbps duplex: full mac: 10:c3:7b:96:22:ef
    Card-2: Intel Ethernet Connection (2) I218-V driver: e1000e
    IF: eno1 state: down mac: 40:16:7e:e9:08:e1
    Drives: HDD Total Size: 2378.5GB (20.0% used) 1: id: /dev/sda model: WDC_WD1003FZEX size: 1000.2GB
    2: id: /dev/sdb model: PLEXTOR_PX size: 128.0GB 3: id: /dev/sdc model: ST3250312AS size: 250.1GB
    4: id: /dev/sdd model: WDC_WD1003FZEX size: 1000.2GB
    Partition: ID: / size: 89G used: 29G (35%) fs: ext4
    Sensors: System Temperatures: cpu: 32.0C mobo: 34.0C gpu: 40C
    Fan Speeds (in rpm): cpu: N/A fan-1: 0 fan-2: 0 fan-3: 0 fan-4: 0 fan-5: 0 fan-6: 0
    Info: Processes: 424 Uptime: 2 min Memory: 2166.0/15993.2MB Client: Shell (zsh) inxi: 1.9.14
    I've tried ::1 addr, sockets etc, nothing gets better.
    Also I've tried to upgrade mpd to git or downgrade.
    Last edited by Neg (2015-01-28 11:36:46)

    Rasi wrote:have you checked, if pulseaudio was running at that time already?
    Yes, pulseaudio seems to be ok at that moment.
    Also I have such thing in the log ~2 minutes
    Jan 19 09:17 : client: [142] opened from 127.0.0.1:38434
    Jan 19 09:17 : client: [142] closed
    Jan 19 09:17 : client: [143] opened from 127.0.0.1:38435
    Jan 19 09:17 : client: [143] closed
    Jan 19 09:17 : client: [144] opened from 127.0.0.1:38436
    Jan 19 09:17 : client: [144] closed
    Jan 19 09:17 : client: [145] opened from 127.0.0.1:38437
    Jan 19 09:17 : client: [145] closed
    Jan 19 09:17 : client: [146] opened from 127.0.0.1:38438
    Jan 19 09:17 : client: [146] closed
    Jan 19 09:17 : client: [147] opened from 127.0.0.1:38439
    Jan 19 09:17 : client: [147] closed
    When daemon seems to be ok
    [~] >> systemctl --user status mpd2
    ● mpd2.service - Music Player Daemon
    Loaded: loaded (/home/neg/.config/systemd/user/mpd2.service; disabled)
    Active: active (running) since Mon 2015-01-19 09:15:59 MSK; 1min 59s ago
    Main PID: 1947 (mpd)
    CGroup: /user.slice/user-1000.slice/[email protected]/mpd2.service
    └─1947 /usr/bin/mpd --no-daemon /home/neg/.mpd.conf
    Jan 19 09:15:59 unreal systemd[953]: Started Music Player Daemon.
    Also I've tried to set port manually in ncmpcpp, then log messages are NOT gone.
    I've already tried alsa-only config. Same issue.
    When daemon is "running" clients of it are not response ~1-2 minute.
    Last edited by Neg (2015-01-19 06:26:15)

  • Music not playing in music app on IPAD 2

    My iPad 2 is just not playing music in the music app. I can click play, it says it is playing but the bar doesnt move to indicate playback and there is no sound. I've tried closing the app and restarting the device.  Does anyone have any ideas?

    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore, go into Recovery Mode per the instructions here.

  • Music Apps for iPhone

    Can anyone recommend some good music apps that will access the music I have on my iPhone.
    I know the iPhone comes with Apple's Music App, but looking for something more powerful that will access the hundreds of songs I already have and give me more features.
    THANKS!!!!!!!!!!

    It's technically impossible to remove the vocal track from a pre-mixed song (which MP3s and AAC tracks are).
    The only way this would be possible is if all the unmixed audio tracks were available then you could turn off the vocal track leaving just the music.
    A few artists have released simple 'remix' apps which let you adjust the volume levels and play order of each audio track for a song, effectively creating your own 'mix'. However these apps are only available from a very small number of artists for an even smaller number of songs.

Maybe you are looking for