Playlist and Song Titles Problem

When I sync my new Shuffle (Gen 4) I want it to load 5 Playlists. It loads all of the songs but in random order not in playlists. When I look in the Ipod control folder under music there are three folders (F00, F01 & F02) and they are full of songs but again in random order. Plus the names of the songs have changed into a four letter code. Am I doing something wrong?

How iTunes remembers audio CDs
http://docs.info.apple.com/article.html?artnum=93952
Patrick

Similar Messages

  • TS4062 Not all of my playlists and songs sync from my Mac to my iphone, any ideas?

    Not all of my playlists and songs sync from my Mac to my iphone, any ideas?

    Just got through flailing with the same problem within the hour.  It turned out I had music purchased with an earlier Apple ID in iTunes.  My solution was to authorize the computer in iTunes with the previous ID and then all music would sync.  Might try that.

  • Can I limit playlists and songs in ATV2?

    When I am putting songs and playlists from iTunes to my iPhone or iPod, I can choose to sync only certain playlists and songs within the playlists (by unchecking songs). Can I do that with Apple TV2? I have a ton of songs, playlists and artists in iTunes, many of which I only want to hear on special occasions rather than on shuffle play on ATV2. Or am I just going to have to fast forward to the net song when something plays that I don't want to listen to?

    Unfortunately you can't restrict content, which I guess is even more of a problem if there's stuff you don't want children to see and not just stuff you don't want cluttering up the menu's.

  • Vicious MPD widget not displaying the artist and song title

    EDIT: This thread can be closed now. It turns out Clementine doesn't support mpd and I'm now running ncmpcpp and the widget shows the artist and song title.
    I have trouble getting the mpd widget running in awesome wm, it will only display "N/A - N/A". I've read the wiki and done a lot of googling but I can't figure out what I'm missing.
    Here's my rc.lua
    -- Standard awesome library
    local gears = require("gears")
    local awful = require("awful")
    awful.rules = require("awful.rules")
    require("awful.autofocus")
    -- Widget and layout library
    local wibox = require("wibox")
    local vicious = require("vicious")
    -- Theme handling library
    local beautiful = require("beautiful")
    -- Notification library
    local naughty = require("naughty")
    local menubar = require("menubar")
    -- {{{ Error handling
    -- Check if awesome encountered an error during startup and fell back to
    -- another config (This code will only ever execute for the fallback config)
    if awesome.startup_errors then
    naughty.notify({ preset = naughty.config.presets.critical,
    title = "Oops, there were errors during startup!",
    text = awesome.startup_errors })
    end
    -- Handle runtime errors after startup
    do
    local in_error = false
    awesome.connect_signal("debug::error", function (err)
    -- Make sure we don't go into an endless error loop
    if in_error then return end
    in_error = true
    naughty.notify({ preset = naughty.config.presets.critical,
    title = "Oops, an error happened!",
    text = err })
    in_error = false
    end)
    end
    -- {{{ Variable definitions
    -- Themes define colours, icons, and wallpapers
    beautiful.init("/usr/share/awesome/themes/zenburn/theme.lua")
    -- This is used later as the default terminal and editor to run.
    terminal = "tilda"
    editor = "gedit"
    -- os.getenv("EDITOR") or
    editor_cmd = terminal .. " -e " .. editor
    -- Default modkey.
    -- Usually, Mod4 is the key with a logo between Control and Alt.
    -- If you do not like this or do not have such a key,
    -- I suggest you to remap Mod4 to another key using xmodmap or other tools.
    -- However, you can use another modifier like Mod1, but it may interact with others.
    modkey = "Mod4"
    -- Table of layouts to cover with awful.layout.inc, order matters.
    local layouts =
    awful.layout.suit.floating,
    awful.layout.suit.tile,
    awful.layout.suit.tile.left,
    awful.layout.suit.tile.bottom,
    awful.layout.suit.tile.top,
    awful.layout.suit.fair,
    awful.layout.suit.fair.horizontal,
    awful.layout.suit.spiral,
    awful.layout.suit.spiral.dwindle,
    awful.layout.suit.max,
    awful.layout.suit.max.fullscreen,
    awful.layout.suit.magnifier
    -- {{{ Wallpaper
    if beautiful.wallpaper then
    for s = 1, screen.count() do
    gears.wallpaper.maximized(beautiful.wallpaper, s, true)
    end
    end
    -- {{{ Tags
    -- Define a tag table which will hold all screen tags.
    tags = {}
    for s = 1, screen.count() do
    -- Each screen has its own tag table.
    tags[s] = awful.tag({"term", "www", "mp3", "skype", "office", "dev", "misc" }, s)
    end
    -- {{{ Menu
    -- Create a laucher widget and a main menu
    myawesomemenu = {
    { "manual", terminal .. " -e man awesome" },
    { "edit config", editor_cmd .. " " .. awesome.conffile },
    { "reboot", "gksudo reboot" },
    { "restart", awesome.restart },
    { "quit", awesome.quit }
    mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon },
    { "open terminal", terminal }
    mylauncher = awful.widget.launcher({ image = beautiful.awesome_icon,
    menu = mymainmenu })
    -- Menubar configuration
    menubar.utils.terminal = terminal -- Set the terminal for applications that require it
    -- Initialize widget
    mpdwidget = wibox.widget.textbox()
    -- Register widget
    vicious.register(mpdwidget, vicious.widgets.mpd,
    function (mpdwidget, args)
    if args["{state}"] == "Stop" then
    return " - "
    else
    return args["{Artist}"]..' - '.. args["{Title}"]
    end
    end, 10)
    -- {{{ Wibox
    -- Create a textclock widget
    mytextclock = awful.widget.textclock()
    -- Create a wibox for each screen and add it
    mywibox = {}
    mypromptbox = {}
    mylayoutbox = {}
    mytaglist = {}
    mytaglist.buttons = awful.util.table.join(
    awful.button({ }, 1, awful.tag.viewonly),
    awful.button({ modkey }, 1, awful.client.movetotag),
    awful.button({ }, 3, awful.tag.viewtoggle),
    awful.button({ modkey }, 3, awful.client.toggletag),
    awful.button({ }, 4, function(t) awful.tag.viewnext(awful.tag.getscreen(t)) end),
    awful.button({ }, 5, function(t) awful.tag.viewprev(awful.tag.getscreen(t)) end)
    mytasklist = {}
    mytasklist.buttons = awful.util.table.join(
    awful.button({ }, 1, function (c)
    if c == client.focus then
    c.minimized = true
    else
    -- Without this, the following
    -- :isvisible() makes no sense
    c.minimized = false
    if not c:isvisible() then
    awful.tag.viewonly(c:tags()[1])
    end
    -- This will also un-minimize
    -- the client, if needed
    client.focus = c
    c:raise()
    end
    end),
    awful.button({ }, 3, function ()
    if instance then
    instance:hide()
    instance = nil
    else
    instance = awful.menu.clients({ width=250 })
    end
    end),
    awful.button({ }, 4, function ()
    awful.client.focus.byidx(1)
    if client.focus then client.focus:raise() end
    end),
    awful.button({ }, 5, function ()
    awful.client.focus.byidx(-1)
    if client.focus then client.focus:raise() end
    end))
    for s = 1, screen.count() do
    -- Create a promptbox for each screen
    mypromptbox[s] = awful.widget.prompt()
    -- Create an imagebox widget which will contains an icon indicating which layout we're using.
    -- We need one layoutbox per screen.
    mylayoutbox[s] = awful.widget.layoutbox(s)
    mylayoutbox[s]:buttons(awful.util.table.join(
    awful.button({ }, 1, function () awful.layout.inc(layouts, 1) end),
    awful.button({ }, 3, function () awful.layout.inc(layouts, -1) end),
    awful.button({ }, 4, function () awful.layout.inc(layouts, 1) end),
    awful.button({ }, 5, function () awful.layout.inc(layouts, -1) end)))
    -- Create a taglist widget
    mytaglist[s] = awful.widget.taglist(s, awful.widget.taglist.filter.all, mytaglist.buttons)
    -- Create a tasklist widget
    mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons)
    -- Create the wibox
    mywibox[s] = awful.wibox({ position = "top", screen = s })
    -- Widgets that are aligned to the left
    local left_layout = wibox.layout.fixed.horizontal()
    left_layout:add(mylauncher)
    left_layout:add(mytaglist[s])
    left_layout:add(mypromptbox[s])
    -- Widgets that are aligned to the right
    local right_layout = wibox.layout.fixed.horizontal()
    right_layout:add(mpdwidget)
    if s == 1 then right_layout:add(wibox.widget.systray()) end
    right_layout:add(mytextclock)
    right_layout:add(mylayoutbox[s])
    -- Now bring it all together (with the tasklist in the middle)
    local layout = wibox.layout.align.horizontal()
    layout:set_left(left_layout)
    layout:set_middle(mytasklist[s])
    layout:set_right(right_layout)
    mywibox[s]:set_widget(layout)
    end
    -- {{{ Mouse bindings
    root.buttons(awful.util.table.join(
    awful.button({ }, 3, function () mymainmenu:toggle() end),
    awful.button({ }, 4, awful.tag.viewnext),
    awful.button({ }, 5, awful.tag.viewprev)
    -- {{{ Key bindings
    globalkeys = awful.util.table.join(
    awful.key({ modkey, }, "Left", awful.tag.viewprev ),
    awful.key({ modkey, }, "Right", awful.tag.viewnext ),
    awful.key({ modkey, }, "Escape", awful.tag.history.restore),
    awful.key({ modkey, }, "j",
    function ()
    awful.client.focus.byidx( 1)
    if client.focus then client.focus:raise() end
    end),
    awful.key({ modkey, }, "k",
    function ()
    awful.client.focus.byidx(-1)
    if client.focus then client.focus:raise() end
    end),
    awful.key({ modkey, }, "w", function () mymainmenu:show() end),
    -- Layout manipulation
    awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end),
    awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end),
    awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end),
    awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end),
    awful.key({ modkey, }, "u", awful.client.urgent.jumpto),
    awful.key({ modkey, }, "Tab",
    function ()
    awful.client.focus.history.previous()
    if client.focus then
    client.focus:raise()
    end
    end),
    -- Standard program
    awful.key({ modkey, }, "Return", function () awful.util.spawn(terminal) end),
    awful.key({ modkey, "Control" }, "r", awesome.restart),
    awful.key({ modkey, "Shift" }, "q", awesome.quit),
    awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end),
    awful.key({ modkey, }, "h", function () awful.tag.incmwfact(-0.05) end),
    awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1) end),
    awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1) end),
    awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1) end),
    awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1) end),
    awful.key({ modkey, }, "space", function () awful.layout.inc(layouts, 1) end),
    awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(layouts, -1) end),
    awful.key({ modkey, "Control" }, "n", awful.client.restore),
    -- Prompt
    awful.key({ modkey }, "r", function () mypromptbox[mouse.screen]:run() end),
    awful.key({ modkey }, "x",
    function ()
    awful.prompt.run({ prompt = "Run Lua code: " },
    mypromptbox[mouse.screen].widget,
    awful.util.eval, nil,
    awful.util.getdir("cache") .. "/history_eval")
    end),
    -- Menubar
    awful.key({ modkey }, "p", function() menubar.show() end)
    clientkeys = awful.util.table.join(
    awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end),
    awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end),
    awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ),
    awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
    awful.key({ modkey, }, "o", awful.client.movetoscreen ),
    awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end),
    awful.key({ modkey, }, "n",
    function (c)
    -- The client currently has the input focus, so it cannot be
    -- minimized, since minimized clients can't have the focus.
    c.minimized = true
    end),
    awful.key({ modkey, }, "m",
    function (c)
    c.maximized_horizontal = not c.maximized_horizontal
    c.maximized_vertical = not c.maximized_vertical
    end)
    -- Bind all key numbers to tags.
    -- Be careful: we use keycodes to make it works on any keyboard layout.
    -- This should map on the top row of your keyboard, usually 1 to 9.
    for i = 1, 9 do
    globalkeys = awful.util.table.join(globalkeys,
    awful.key({ modkey }, "#" .. i + 9,
    function ()
    local screen = mouse.screen
    local tag = awful.tag.gettags(screen)[i]
    if tag then
    awful.tag.viewonly(tag)
    end
    end),
    awful.key({ modkey, "Control" }, "#" .. i + 9,
    function ()
    local screen = mouse.screen
    local tag = awful.tag.gettags(screen)[i]
    if tag then
    awful.tag.viewtoggle(tag)
    end
    end),
    awful.key({ modkey, "Shift" }, "#" .. i + 9,
    function ()
    if client.focus then
    local tag = awful.tag.gettags(client.focus.screen)[i]
    if tag then
    awful.client.movetotag(tag)
    end
    end
    end),
    awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9,
    function ()
    if client.focus then
    local tag = awful.tag.gettags(client.focus.screen)[i]
    if tag then
    awful.client.toggletag(tag)
    end
    end
    end))
    end
    clientbuttons = awful.util.table.join(
    awful.button({ }, 1, function (c) client.focus = c; c:raise() end),
    awful.button({ modkey }, 1, awful.mouse.client.move),
    awful.button({ modkey }, 3, awful.mouse.client.resize))
    -- Set keys
    root.keys(globalkeys)
    -- {{{ Rules
    awful.rules.rules = {
    -- All clients will match this rule.
    { rule = { },
    properties = { border_width = beautiful.border_width,
    border_color = beautiful.border_normal,
    focus = awful.client.focus.filter,
    keys = clientkeys,
    buttons = clientbuttons } },
    { rule = { class = "MPlayer" },
    properties = { floating = true } },
    { rule = { class = "pinentry" },
    properties = { floating = true } },
    { rule = { class = "gimp" },
    properties = { floating = true } },
    -- Set Firefox to always map on tags number 2 of screen 1.
    { rule = { class = "Firefox" },
    properties = { tag = tags[2] } },
    -- {{{ Signals
    -- Signal function to execute when a new client appears.
    client.connect_signal("manage", function (c, startup)
    -- Enable sloppy focus
    c:connect_signal("mouse::enter", function(c)
    if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier
    and awful.client.focus.filter(c) then
    client.focus = c
    end
    end)
    if not startup then
    -- Set the windows at the slave,
    -- i.e. put it at the end of others instead of setting it master.
    -- awful.client.setslave(c)
    -- Put windows in a smart way, only if they does not set an initial position.
    if not c.size_hints.user_position and not c.size_hints.program_position then
    awful.placement.no_overlap(c)
    awful.placement.no_offscreen(c)
    end
    end
    local titlebars_enabled = false
    if titlebars_enabled and (c.type == "normal" or c.type == "dialog") then
    -- buttons for the titlebar
    local buttons = awful.util.table.join(
    awful.button({ }, 1, function()
    client.focus = c
    c:raise()
    awful.mouse.client.move(c)
    end),
    awful.button({ }, 3, function()
    client.focus = c
    c:raise()
    awful.mouse.client.resize(c)
    end)
    -- Widgets that are aligned to the left
    local left_layout = wibox.layout.fixed.horizontal()
    left_layout:add(awful.titlebar.widget.iconwidget(c))
    left_layout:buttons(buttons)
    -- Widgets that are aligned to the right
    local right_layout = wibox.layout.fixed.horizontal()
    right_layout:add(awful.titlebar.widget.floatingbutton(c))
    right_layout:add(awful.titlebar.widget.maximizedbutton(c))
    right_layout:add(awful.titlebar.widget.stickybutton(c))
    right_layout:add(awful.titlebar.widget.ontopbutton(c))
    right_layout:add(awful.titlebar.widget.closebutton(c))
    -- The title goes in the middle
    local middle_layout = wibox.layout.flex.horizontal()
    local title = awful.titlebar.widget.titlewidget(c)
    title:set_align("center")
    middle_layout:add(title)
    middle_layout:buttons(buttons)
    -- Now bring it all together
    local layout = wibox.layout.align.horizontal()
    layout:set_left(left_layout)
    layout:set_right(right_layout)
    layout:set_middle(middle_layout)
    awful.titlebar(c):set_widget(layout)
    end
    end)
    client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end)
    client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
    function run_once(prg,arg_string,pname,screen)
    if not prg then
    do return nil end
    end
    if not pname then
    pname = prg
    end
    if not arg_string then
    awful.util.spawn_with_shell("pgrep -f -u $USER -x '" .. pname .. "' || (" .. prg .. ")",screen)
    else
    awful.util.spawn_with_shell("pgrep -f -u $USER -x '" .. pname .. " ".. arg_string .."' || (" .. prg .. " " .. arg_string .. ")",screen)
    end
    end
    awful.util.spawn_with_shell("setxkbmap -layout se")
    run_once("tilda",nil,nil,"term")
    run_once("firefox &",nil,nil,"www")
    run_once("clementine ",nil,nil,"mp3")
    run_once("skype ",nil,nil,"skype")
    run_once("dropboxd &",nil,nil,nil)
    run_once("keepassx ",nil,nil,"www")
    run_once("volumeicon &",nil,nil,nil)
    awesome.font = "DejaVuSansCondensed 12"
    Here's my mpd.lua:
    -- Licensed under the GNU General Public License v2
    -- * (c) 2010, Adrian C. <[email protected]>
    -- {{{ Grab environment
    local tonumber = tonumber
    local io = { popen = io.popen }
    local setmetatable = setmetatable
    local string = { gmatch = string.gmatch }
    local helpers = require("vicious.helpers")
    -- Mpd: provides Music Player Daemon information
    -- vicious.widgets.mpd
    local mpd = {}
    -- {{{ MPD widget type
    local function worker(format, warg)
    local mpd_state = {
    ["{volume}"] = 0,
    ["{state}"] = "N/A",
    ["{Artist}"] = "N/A",
    ["{Title}"] = "N/A",
    ["{Album}"] = "N/A",
    ["{Genre}"] = "N/A",
    --["{Name}"] = "N/A",
    --["{file}"] = "N/A",
    -- Fallback to MPD defaults
    local pass = warg and (warg.password or warg[1]) or "\"\""
    local host = warg and (warg.host or warg[2]) or "127.0.0.1"
    local port = warg and (warg.port or warg[3]) or "6600"
    -- Construct MPD client options
    local mpdh = "telnet://"..host..":"..port
    local echo = "echo 'password "..pass.."\nstatus\ncurrentsong\nclose'"
    -- Get data from MPD server
    local f = io.popen(echo.." | curl --connect-timeout 1 -fsm 3 "..mpdh)
    for line in f:lines() do
    for k, v in string.gmatch(line, "([%w]+):[%s](.*)$") do
    if k == "volume" then mpd_state["{"..k.."}"] = v and tonumber(v)
    elseif k == "state" then mpd_state["{"..k.."}"] = helpers.capitalize(v)
    elseif k == "Artist" then mpd_state["{"..k.."}"] = helpers.escape(v)
    elseif k == "Title" then mpd_state["{"..k.."}"] = helpers.escape(v)
    elseif k == "Album" then mpd_state["{"..k.."}"] = helpers.escape(v)
    elseif k == "Genre" then mpd_state["{"..k.."}"] = helpers.escape(v)
    --elseif k == "Name" then mpd_state["{"..k.."}"] = helpers.escape(v)
    --elseif k == "file" then mpd_state["{"..k.."}"] = helpers.escape(v)
    end
    end
    end
    f:close()
    return mpd_state
    end
    return setmetatable(mpd, { __call = function(_, ...) return worker(...) end })
    I'm using Clementine to play the music if that makes a difference.
    Last edited by DisposableHero (2013-11-25 01:12:01)

    Hi,
    If the songs were purchased from itunes, I suggest that you delete the tracks from your itunes library and move to trash (providing you live in a country that permits redownloading). See http://support.apple.com/kb/PH12283.
    Jim

  • How do I get it back to the way it was on my iTunes with my playlists and songs?

    My playlists and songs have disappeared on iTunes after the most recent upgrade. The playlists and songs are still on my phone as they were since I haven't synced yet. But they completely disappeared in iTunes on my computer. So when I try to sync, it says that all the information will be deleted. I don't want to have to go through the trouble of re-doing all the playlists and adding all the songs again. It took me a while to get it the way I like it! So does anyone have a solution? Please and thank you!
    Oh and the only thing that stayed on were my purchases.

    Did you change the screen resolution?
    You can right-click on empty space on the Desktop and open the Display Properties.
    Control > Panel > Display > Settings

  • How do I transfer my iTunes library with the playlists and song plays from a PC to a MAC

    I just recently got a MacBook and I'd like to transfer my iTunes library as well as the playlists and song plays over to this computer and i was wondering how i should go about doing so.
    I've found a few tutorials on how to edit the .xml files but I haven't really succeeded in doing so.

    Use an external HDD and copy the entire iTunes folder from the original computer to the Mac and place it in ~/Music.

  • Somehow, my iTunes music disappeared.  I restored it with Time Machine and have all of my music.  However, my playlists and song ratings did not restore.  Does anyone know if there is anything I can do to restore my playlists and ratings?  Thanks.

    Somehow, my iTunes music vanished from iTunes.  I was able to restore my music from Time Machine, but I lost my playlists and song ratings.  Does anyone know how I can restore the playlists and ratings?  Thanks in advance for any help.

    iTunes as you see it is more than just a file or two.  It is all the contents of the iTunes folder including the critical library.itl file.  That holds pretty much all the information about what you see when you start iTunes.  You need to restore the whole iTunes folder, not just media files.

  • What happened to my playlists? I just loaded version 11.0.4.4 and all my playlists and songs uploaded from CDs to iTunes disapeared!!!!

    what happened to my playlists? I just loaded version 11.0.4.4 and all my playlists and songs uploaded from CDs to iTunes disapeared!!!!

    Empty/corrupt library after upgrade/crash
    Hopefully it's not been too long since you last upgraded iTunes, in fact if you get an empty/incomplete library immediately after upgrading then with the following steps you shouldn't lose a thing or need to do any further housekeeping.  Note that in iTunes 11 an "empty" library may show your past purchases with links to stream or download them.
    In the Previous iTunes Libraries folder should be a number of dated iTunes Library files. Take the most recent of these and copy it into the iTunes folder. Rename iTunes Library as iTunes Library (Corrupt) and then rename the restored file as iTunes Library.itl. Start iTunes. Should all be good, bar any recent additions to or deletions from your library.
    Alternatively, depending on exactly when and why the library went missing, there may be a more recent .tmp file in the main iTunes folder that can be renamed as iTunes Library.itl to restore the library to a recent state.
    See iTunes Folder Watch for a tool to catch up with any changes since the backup file was created.
    When you get it all working make a backup!
    Should you be in the unfortunate position where you are no longer able to access your original library, or a backup of it, then see Recover your iTunes library from your iPod or iOS device.
    tt2

  • Sync "smart playlist" without song-titles?

    Is it possible to synchronize only a smart playlist without all the song-titles what are included?
    A example; In i Tunes i have a very large song library on my mac. Then i have synchronized some titles, with "Check Selection" mode. Now i have a "Smart Playlist" on i-tunes, that includes only song-titles, that i haven't "rated" before. Now, is it possible to import/sync only the "Smart-Playlist" without all the song-titles that are included on Itunes?
    So i want only have the smart-playlist on my ipod-touch, to hear the unrated songs, that are already synced.
    Other example, i have a smart playlist that includes only the song-titles, rated from 1 till 3 stars. Now i want that smart playlist on the iPod, to hear only the songs, rated from 1 till 3 stars, i already synced on the IPod.
    Problem is this..: When i sinc a smart-list like that, the memory on my IPod is prompt overloaded...
    I hope you understand what i mean, and would be great to have a solution for that...
    regards...

    http://support.apple.com/kb/TS3044
    2. Deselect the option for "Live updating."
    Solved.

  • When listening to music on ATV, it plays two songs from the playlist, then won't play any more.  You can see playlist and songs, but won't respond.  Any ideas?

    When listening to music on ATV, it will play two songs from the playlist, then no more.  You can see the playlist on songs, but it won't play.  Turned everything off, reset the network...nothing works.  Any ideas?  It used to play fine...for hours at a time.

    Hi.  Thanks for your reply.
    It is happening via "shuffle" in a playlist.  Always two different songs within the playlist.  You can see the next song on the screen that should, theoretically, be playing...but nothing happens.  Even when you push "play" on the remote, it doesn't receive the command. 
    I reset, then restored ATV.  Now, it doesn't limit itself to two songs, but does stop after a few.  The more trial and error I do, the more I believe the problem is with Homesharing in iTunes.  If I turn off Homeshare, then turn it back on, a couple more songs will play in the playlist.  I have shut down iTunes, restarted computer, completed updates, but nothing seems to change it.
    It used to play fine for hours on end, but has now found this glitch.

  • How do I burn the disc title, and song titles onto my cd? On previous itunes, there was a "burn options" menu where you could choose to include the song info.

    When I burn a cd in itunes, how do I get the song titles to be burned onto my cd. My car cd player used to display them. Previos versions of itunes had a "burning options" tab.

    Select the playlist.
    File > Burn playlist to disc.
    Select Audio disc and tick Include CD-TEXT.

  • IPad 2 air playlists and songs disappearing! Help!

    Dear All,
    I'm trying to prepare for a party which I'm dj-ing at using an iPad running an app called day2 but I'm having problems getting the tunes on to my iPad Air 2 as they keep disappearing.
    I create a playlist on my ipad air 2 fill it from iTunes Mac Pro running 10.8.5 I manually move each song onto the playlist. I see the songs appear on the iPad and then after the home screen locks and I unlock it - the playlist and the songs have disappeared. When I go to the songs in iTunes under my iPad and click on them I get the ! mark next to every song. Each one is no longer there.
    Does anyone know what's happening? I've pretty much turned off all syncing - iTunes match etc.
    I need to sort this for tomorrow - Saturday. Any help gratefully received.
    Many thanks in advance.
    Thanks Damon

    If you can, try logging in to iTunes from a computer to see if your ID is accepted.
    Also, try resetting the iPad:
    Settings->General->Reset->Reset All Settings.
    You won't lose any data but will have to log back into your wifi network(s)

  • Duplicate Song Title problem with Zen Mi

    Hello,
    I have a dark blue Zen Micro and with firmware I downloaded it is now version 2..02. As part of downloading the new firmware, all the songs were erased from my player. My problem started when I was re-loading all my songs. Every time it came across a song that had the same title as a song already loaded on my player (even if the artist was different), it stopped and gave me the option to either skip this song, skip all duplicates, replace the song or replace all duplicates. No option to load onto the player anyway.
    Since I happen to have a lot of songs that have the same title, but different artist, I am now missing a lot of songs on my player. When I called customer service, they told me to try re-naming the duplicates with a "2", i.e. Songtitle and Songtitle2. This didn't work, it still recognized the songs as duplicates, even with the '2', and wouldn't load them.
    This never happened with the old version - I was able to load all songs with no problem and I think it only notified me when the song title AND artist matched -- and even then I had the option to load it anyway if I wanted.
    Anyone know how to fix this? Ideally, I'd like to find a way to get the songs on my player without altering the song titles... Or if there is no way to fix it, anyone know how to remove this firmware and go back to the earlier version? I kind of wish I never loaded it now, even though the customer service person told me the latest firmware is always the best version to have.
    Thanks in advance!

    Certainly with the v firmware a duplicate is defined as having the same title, artist and album tag. If any of these differ then it isn't a duplicate... so I'm surprised you're not finding this with the MTP firmware.
    It might perhaps be with the MTP firmware it can't tolerate the same filename so this is worth double checking (whereas on the v2 firmware it doesn't care).
    Also triple check the tags on these supposed duplicate files using some good tagging software, that will show both the v and v2 tag.
    Are these MP3 files?

  • Walkman Deleting Playlists and Songs

    How do I delete playlists or songs n the Walkman app?

    I have the same problem ...
    The playlists I have created, as the music was still in the internal memory. But then shifted to the memory settings on the SD card, the MP3s. And now I can not delete the old playlists ...

  • How do i get my iTunes library to be showing the same playlist and songs that are on my iPhone 4s.

    How do I get my iTunes library to show the same playlist order and songs order as what is on my iPhone 4s.

    Drag it to an external drive or directly to the other computer, and if needed, launch iTunes with the Option key held down and choose that library. If it contains rented movies, those won't play on the desktop Mac.
    (120868)

Maybe you are looking for

  • ITunes 11.1 problem: no sound when watching movies!

    Hi there When I try to watch video on my Thunderbolt display (27 inch) connected to my MBP Retina, everything is fine....untill I go full-screen!!! Then I don't have sound anymore, only video! Can anyone help me out on this, or do I have to wait for

  • Clean up user in OEM

    I am trying to create an user in GRID and it kept saying "the user already existed", I did check on the UI and the user doesn't exists so I am curious if anyone knows the table in SYSMAN that had the user so I can clean up and recreate it. thanks

  • Auto unblock/release of Invoice for framework rder

    Hi All, I've a scenario in which the FO (Frame work) order has been created for limit of 500$, And invoice is posted for 700$, it is obvious that under tolerance key (Order price unit variance- IR before GR) it will block the invoice, and has to be r

  • How to See PC's on a wireless network

    I have recently created a wireless network in my home for my  wife's desktop, my laptop and our TiVo DVR.  I can see the DVR from both PC's as well as transfer files to and from the DVR to either PC.  Question I have is why can't the two PC's see eac

  • Can i extract no of columns fields as by using bind variables....

    can i extract no of columns fields as by using bind variables....