Source list "PODCASTS" # doesn't match actual # of Podcasts

The sourcelist under "Podcasts" indicates I have 29 Podcasts. When I highlite the item, I see only 7 blue dots and actual podcasts. I watched several downloads progress and complete. Why aren't they in my library?

In case anyone experiences this problem, I thought I should close this by reporting that, having installed a recent software update, the problem is now fixed.  In other words, it was a bug.  iTunes now shows me only the PDFs which are in iBooks (on the Mac) and my grouping in Collections now syncs correctly with my iPhone and iPad.

Similar Messages

  • FPGA simulation doesn't match actual performance

    I am trying to write a verilog code that will trigger on the positive edge and negative edge of an input signal (which I've called 'async'). My desired output is a short blip (when compared to the frequency of async) on each edge of async, which is slightly delayed from the edge ('t1' and 't3') and whose duration can be controlled ('t2' and 't4'). The comments say what I think my code is doing, but I am new to Verilog, and don't really understand anything. Any help is appreciated.
    Here is my code:
    `timescale 1ns / 1ps
    module attempt5(async, clk, o);
    input async;
    input clk;
    reg switch = 1'b0; //will tell me when async changes
    reg [1:3] resync = 3'b000;
    reg counter = 1'b0; //keeping track of which edge of async we're on
    output reg o = 1'b0;
    parameter t1 = 0;
    parameter t2 = 100000000;
    parameter t3 = 0;
    parameter t4 = 100000000;
    always @ (posedge clk)
    begin
    switch <= resync[2] & !resync[3];
    switch <= resync[3] & !resync[2];
    resync <= {async, resync[1:2]};
    end
    //^^I'm pretty sure this makes the 'switch' register switch very quickly when 'async' changes
    //I've included this always block because I wanted to sync my input signal to the clock, because I read that FPGAs don't do well with asynchronous stuff
    always @ (posedge switch)
    if (counter == 1) begin
    counter = 0;
    #t1 o <= ~o;
    #t2 o <= ~o;
    end else begin
    counter = 1;
    #t3 o <= ~o;
    #t4 o <= ~o;
    end
    //^^ When the 'switch' register changes, start the the short blip
    endmodule
    and my constraints file:
    NET "clk" TNM_NET = "clk";
    TIMESPEC TS_clk = PERIOD "clk" 20 ns HIGH 50 %;
    NET "switch" TNM_NET = "switch";
    TIMESPEC TS_switch = PERIOD "switch" TS_clk HIGH 50 %;
    NET "async" LOC = A2;
    NET "o" LOC = C1;
    INST "clk_BUFGP" LOC = F1;
    NET "clk" LOC = F1;
    NET "o" SLEW = FAST;
    The code works in the synthesizer, but when I try to test the code using a 1 Hz square wave for the "async" signal and monitoring the "o" using a oscilloscope, nothing happens.
    Other details: using a Xilinx XEM 6001 FPGA, and ISE Design Suite 14.4 The way I've tested is to hook up a function generator to pin A2 and a oscilloscope to pin C1, and all I see is noise. Is there any obvious problem here, maybe something like I am not actually connecting to the physical pins properly or something?

    There are several things wrong for your code to synthesize properly, but I would still expect that your "o" output would toggle at one edge of the input signal if your clock is really running, and your async input from the signal generator is driving the correct logic levels.  I would try a couple tests to make sure this isn't a hardware issue:
    1) Change "o" to simply follow the async input.  This will verify that your input and output pins are correct and your input waveform has good logic levels.
    2) Build a counter that counts up on evey posedge of clk and run its MSB to the "o" output.  See if this toggles at the expected frequency.  This will show if your clock input is really hooked up correctly and running.
    Errors in the code:
    switch <= resync[2] & !resync[3];
    switch <= resync[3] & !resync[2];
    These two lines run in parallel, so switch will really only sense one edge of the input signal.  That's because the second assignment statement "wins" over the first, so it's the same as just writing:
    switch <= resync[3] & !resync[2];
    If you really wanted to detect both edges, you could OR the two conditions together like:
    switch <= resync[2] & !resync[3] | resync[3] & !resync[2];
    You could also do this using "if" statements like:
    if (resync[2] & !resync[3]) switch = 1;
    else if (resync[3] & !resync[2]) switch = 1;
    else switch = 0;
    There are probably other ways to do this.
    Then in the second process you use "switch" as a clock, which is a bad practice.  It's better to use
    it as a clock enable like:
    always @ (posedge clk)
      if (switch)
        begin
        end
    Finally those time delays are ignored for synthesis, so these lines:
    #t1 o <= ~o;
    #t2 o <= ~o;
    are the same as:
    o <= ~o;
    o <= ~o;
    and again, they happen in parallel (non-blocking assignments), so it's the same as
    o <= ~o;
    Which is why I would assume the output would toggle once per input async period.  If you don't see that you need to verify your connections.
     

  • Thumbnail doesn't match actual photo

    Something very strange is going on with my iPhoto. I have just imported some photos but when you click on the thumbnail, it expands to a completely different photo! Its therefore impossible to see the full size photo of a particular thumbnail/preview. Any ideas what has happened? help!

    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Include the option to rebuild the thumbnails. It can take 3 or 4 goes for this to work

  • Disconnected iPod remains in iTunes sourc list

    This happens with both my 4G nano and my 40GB 4G iPods. Sometimes, removing the iPod after sync leaves the iPod in the source list. Doesn't seem to hurt anything, just a bit odd.
    Ideas?

    Anthony,
    Only shuffles have this "feature"...since regular iPods can sync against any number of selected playlists, one really doesn't need this capability as it less powerful than what is provided.
    Tom

  • Doesn't Stay in Source List

    The nano doesn't stay in the iTunes source list, so I can only mess around with the settings while it's connected. With previous iPods the icon and options remained even when the iPod was disconnected. Am I missing an option box, or did they change something in iTunes 5?

    I remember this feature being available only for the iPod Shuffle, and not any of the other iPods.

  • Why doesn't my apple tv show up in my source list on itunes?

    I purchased a movie and then realized it didnt sync on my apple tv. So I go to my computer to see that the apple tv isn't listed in the sources. So far I have unplugged the apple tv, restarted it, restarted my computer, made sure all available updates have been downloaded, and also factory restored my apple tv.....still it doesn't show up.
    So how do I get my apple tv to show up in my source list?

    Troy McMeans wrote:
    how do I get my apple tv to show up in my source list?
    try the suggestions in this article.
    JGG

  • How to restore iPod when it doesn't appear in the Source List?

    About 6 months ago I stupidly wiped my iPod Nano (5th Gen) and reformatted it as fat32. I assumed that when I formatted it back to Mac OS Journaled it would work normally as an iPod again but it doesn't. When it is plugged into my Mac running 10.5.8, it appears on the desktop/mac harddrive (without its individualised nano icon) and it fails to appear in the source list in iTunes (10.2.2).
    I have tried everything I know how to do, including the steps outlined in this support document:
    http://support.apple.com/kb/TS1410
    I need to restore the iPod to factory settings, but need a way to do this not through iTunes seeing as the iPod is not recognised. Specifically, in the following support document I cannot complete step 4:
    http://support.apple.com/kb/HT1339
    One last thing I have tried is duplicating the files (including hidden ones) from a 5th gen nano that does appear in my source list, and placing those files into my apparently invisible nano but this has not made any difference.
    Does anyone have any suggestions? I have basically been left with a bricked paperweight (due mostly to my own stupidity!) but would love to be able to use it again.
    Thanks for any help offered

    Hello kismet_kracker,
    What happens if you place the iPod into Disk Mode with it still connected to your Mac?  Does it then show up in Finder as a mounted drive?  Here are instructions for putting your iPod into Disk Mode.
    http://support.apple.com/kb/ht1363
    B-rock

  • HT1758 Are all Intel 24" iMacs w/Snow Leopard OK for Mountain Lion?  My serial number doesn't match any of the one in the iMac ID list; they all start with "MA" or "MB", mine starts with a "W." Purchased direct from Apple August 2007.

    Are all Intel 24" iMacs w/Snow Leopard OK for Mountain Lion?  My serial number doesn't match any of the one in the iMac ID list; they all start with "MA" or "MB" and mine starts with a "W." Purchased direct from Apple August 2007.

    Macs that can be upgraded to OS X Mountain Lion
    iMac (Mid 2007 or newer)
    MacBook (Late 2008 Aluminum, or Early 2009 or newer)
    MacBook Pro (Mid/Late 2007 or newer)
    MacBook Air (Late 2008 or newer)
    Mac mini (Early 2009 or newer)
    Mac Pro (Early 2008 or newer)
    Xserve (Early 2009)
    Open System Profiler and report what you find displayed for the Model Identifier.

  • Latest ep of my podcast doesn't show in iTunes. Subscribers CAN download it. Podcast page shows 'Total: 3 items' but lists only items 2 and 3. RSS feed is validated and fine.

    Latest ep of my podcast doesn't show in iTunes store. Subscribers CAN download it. Podcast page shows 'Total: 3 items' but lists only items 2 and 3. RSS feed is validated and fine. How do I get iTunes to display it?

    I've used Feedburner many times and never had such a problem. I am a bit confused, forgive me if I ask for questions already answerd. Have you tried updating the podcast in someone elses copy of iTunes? My guess is that the file is bad since it is working in other programs but not iTunes. I would try making a new .mp4 file and podcasting it and seeing if that works.
    Good luck!
    ~Ben

  • No error if source directory and package doesn't match

    Hello,
    I am using Sun's jdk1.5.0_09 "javac" compiler and the package name in my Test class is written as "com.hrishijoshi.asdf". This file compiles even if I put it in a directory called "com" (or anything else, as a matter of fact).
    javac doesn't throw error even if the source file's directory structure doesn't match the package name defined in that file! It creates a directory structure matching the package name (not the source tree) in the output "classes" directory.
    Is this a feature or a bug? ;-)
    - Hrishi Joshi.
    PS: Here is a log of my compilation attempt on Fedora Core 5 Linux:
    [hrishi@hrishi test]$
    [hrishi@hrishi test]$ rm -rf classes/com/
    [hrishi@hrishi test]$ cat src/com/Test.java
    package com.hrishi.asdf;
    public class Test {
    [hrishi@hrishi test]$ javac -Xlint:all -sourcepath src -d classes src/com/Test.java
    [hrishi@hrishi test]$
    [hrishi@hrishi test]$ tree classes
    classes
    `-- com
        `-- hrishi
            `-- asdf
                `-- Test.class
    3 directories, 1 file
    [hrishi@hrishi test]$ 

    There is no requirement that source code files are in the correct directory structure. If you want javac to be able to automatically compile dependent files, then the source code must be in an appropriate structure and find-able from the classpath.
    Also, when you use the -d option, javac will create an appropriate directory relative to the directory specified in the -d option. That's how it is supposed to work.
    So it is working as designed and specified.

  • List of Highlighted phrases (in Bookmarks) doesn't match highlight.

    The problem is with the list of Bookmarks (that also includes my list of highlights and notes).
    If I highlight a word or phrase within a sentence what I highlight is not guaranteed to display in the list unless what I've highlighted is the first sentence in a paragraph. For instance, below is a sample paragraph from Nassim Nicholas Taleb's "The Black Swan: Second Edition":
    "Silent evidence pervades everything connected to the notion of history. By history, I don't just mean those learned-but-dull books in the history section (with Renaissance paintings on their cover to attract buyers). History, I will repeat, is any succession of events seen with the effect of posteriority."
    In this example I highlighted the last sentence, "History, I will repeat, is any succession of events seen with the effect of posteriority." But what is displayed in the list of Bookmarks is "By history, I don't just mean those learned-but-dull books in the history section (with Renaissance pai...".
    As you can see in the example above, what is listed does not match the phrase I highlighted, making it difficult to use the list to find a particular highlight. And that's the point I'm making - the list of highlights, in my opinion, is built to provide quick access to areas of the book I want to return to. But if the list doesn't match or contain what I've highlighted I can't recognize the passage I'm looking for.
    I've tried this with several books in the iBook app and all of them exhibit the same behavior.

    Never mind my question. For those of you who have the same problem, you need to change the rule to 'Playlist is Music', so it still selects songs from the whole library in itunes. The rule 'Media kine is Music' seems to tell iphone to pick music on the device into this smart playlist, that is what I understand.

  • Cannot subscribe to podcasts; no podcast icon under source list

    Hi, all. I scanned the first couple of pages of threads under this forum and didn't read any threads that helped me. I downloaded my first couple of podcasts ever last week, going directly through npr.org. I wanted to try subscribing through the itunes store, but I can't click on subscribe (I tried several different podcasts). When I double click on the podcast at the bottom, it won't play. I read a bit in the help section on itunes, and I thought it said I should look for a podcast icon under my source list. I don't have such an icon. I just clicked on itunes store and then clicked on podcasts. I double-checked and I do have the most recent itunes. Also, I have wireless internet and I'm always connected to it when my laptop is on.
    Any advice appreciated; thank you!

    I'm not sure I totally understand what your problem is, but a couple of things to note...
    1. To get Podcasts to show in your Source list, go to iTunes Preferences, General and put a check next to Podcasts.
    2. Did you download the podcasts from the iTunes Store or from NPR's Web site? Podcasts downloaded from sources other iTunes will usually go into your Music library along with all your music tracks.
    Does that help at all? Not sure what you mean when you say: "When I double click on the podcast at the bottom, it won't play." What window are you in? The bottom of what? Please explain further.

  • Games and podcasts are showing up in my source list but won't transfer

    My son just upgraded from an ipod shuffle to a nano 2nd gen. I have downloaded the latest version of itunes. He bought a game and got some podcasts. They show up in the source list but won't transfer to the nano. I have tried restoring the nano but that did not help. Any suggestions?

    Make sure to enable podcasts on the iPod nano. When you plug it in pick the iPod nano in the source list and then click on the podcasts tab. Then enable the transfer of the ones you want. I believe that the games are only playable on the 5th gen iPod not the nano. Sorry about that

  • Why doesn't the dvd show up in my source list?!?

    i putt a dvd into my cd/rom drive cause i wanted to download it onto my ipod, but it doesn't show up. i tried another dvd and it didn't show up in my source list either. why doesn't it show up? what can i do to make it show up? please help.

    Can I transfer my DVDs into iTunes and sync to my iPod?
    iTunes and QuickTime Pro do not support importing content from DVD videos.
    Heres the Apple link if you can understand it.
    http://docs.info.apple.com/article.html?artnum=302758#5A
    "i putt a dvd into my cd/rom drive "
    A Cd Rom Drive will not read or play a DVD anyway..sorry.

  • My iPod doesn't appear on the iTunes source List!! Help!!

    I'm havin' a problem with my iPod, doesn't appear on the iTunes source list. And I have to update the iPod software cause I need to fix a problem: my iPod seems to be empty when turn it on but in the iPod's hard disk still the mp3 files, I already made a backup of this mp3 files. I know I have to restore my iPod to fix the problem, but I can't do it , cuz it doesn't appear on the source list. Can anyone please help me with these problem? Thanks!!

    I've checked a few help pages that I've seen other people post that appeared to be of some relevance to my problem but still nothing. Can anybody out there provide any help?

Maybe you are looking for

  • How to delete the requests in DTP?

    hi all, here i am unable to delete the requests in DTP... when i am going to delete the request in DTP it simply showing the error: *cannot lock request DTPR_488BDVJVHQPUUTT3R383DJ55Q OF TABLE 0MATERIAL for deletion* could you plz help me on this....

  • Final Cut Studio 2 (Academic Version)

    I am a teacher and we have ordered and received 4 Final Cut Studio 2 packages. It came to us as the academic version. I know you cannot get upgrade to future Final Cut Studio packages, but is that the only difference? Does it have all of the other fe

  • How to import java library file to forms 6i

    Hi all, Is it possible to import java library file to forms 6i. Please help me.

  • Classification System for Storage location

    Hello, I would like to know if you can apply the classification system (as we know it well from the material master), to classify the storage location configuration. I need this for a client who wants to analyze his information system with the possib

  • I want run Macro using other sheet when open the workbook in server,how do?

    HI ,    I save the workbook in BI server using one query.And I Insert a lot of sheet in the workbook.I want to change other sheet base "table"'s varient. I wirte some Visual Basic script (VBS) In the event of workbook's open . but it doesn't run . I