Playback position error

Okay so this error is driving me nuts!
I used to see this occasionaly on my old iPod Nano (3g), and I thought I'd seen the last of it until it started happening consistently on my iPhone with one of my podcasts (http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=215055576 , so far I've seen it happen on episodes 26, 27 & 28). I've tested it on iTunes and they play back fine on my computer.
So what happens is that after an arbitrary point in the podcast (usually 20 to 40 minutes left), if I try to move the play head or resume after pausing, it will jump backwards to that arbitrary point. So for example, after something like -47:15 it will always jump back to -47:15 no matter what position I try to move it to after that time. The only way to properly listen to anything after that point is to play it non-stop until the end.
If I pause then resume after a few seconds it doesn't seem to cause the error, only after pausing and then trying to resume later, It only seems to happen when it has to re-open the file. I can only assume there's an error in the way Apple's iPod code handles certain MP3 files.
Please help! This has completely ruined by ability to listen to the end of a podcast, because I need to pause playback occasionally.

@khan82imran 
Try the following.
Open windows Control Panel, open Windows Update, select 'View update history' in the left hand pane and then select 'Installed updates' link in the following window.
Locate update KB2962407, right click it and select Uninstall.  When done, restart the notebook, open windows Control Panel, open Windows Update and select 'Check for updates'.  You'll see the update you just uninstalled being offered again - right click and select 'Hide Update'.
When windows has reloaded, use recovery manager to reinstall your original IDT HD Audio driver as detailed in the document on the link below.
Recovery Manager - Windows 8.
Regards,
DP-K
****Click the White thumb to say thanks****
****Please mark Accept As Solution if it solves your problem****
****I don't work for HP****
Microsoft MVP - Windows Experience

Similar Messages

  • Invalid Cursor Position Error

    Help!
    I am using JRun3.1 and developing a web interface to a database. In this particular screen, I am using CachedRowSet (I downloaded this and added it to jrun classpath). I am getting "Invalid cursor position" error.
    I feel there is a problem with the usebean tag.
    This is my code:
    what is wrong with this?
    <%@ page language = "java" import="java.sql.*, java.util.*, javax.sql.*, sun.jdbc.rowset.*" %>
    <%
    String indSub = request.getParameter("indSub");
    String areaname = request.getParameter("selarea");
    %>
    <jsp:useBean id="crs" class="CachedRowSet" scope="session" >
    <%
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    crs.setUrl("jdbc:odbc:asphData");
    crs.setCommand("SELECT siccode, sicdesc from siccode where sictitle = '" + indSub + "'");
    crs.execute();
    %>
    </jsp:useBean>
    <%@ include file="header2.htm" %>
    <link rel="stylesheet" href="http://localhost:8100/empData/almis.css" type="text/css">
    <br>
    <br>
    <table align="center">
    <tr><td class="moduleDesign" align="center">Employers Database</td></tr>
    </table>
    <br><br>
    <font size="+2" face="verdana sans-serif">
    <form action="employerDetail.jsp" method="post">
    <p><center><font color="Blue">Employers in the �<%= indSub %>� Industry
    <br>
    SIC Code:�<%= crs.getString("siccode") %>
    <br>State: Utah<br>
    Region: �<%=areaname %><br>
    </font></center></p>
    <p>
    <b>Description:</b>�<%= crs.getString("sicdesc") %>
    </p>
    </form>
    <jsp:include page="footer2.htm" />
    </body>
    </html>
    srajaman2

    Never mind!
    I have to issue a next() command to get to the first line of the resultset!
    srajaman2

  • How can I get an audiobook's playback position synced between Mac and iPhone?

    I have several Audible audiobooks, both on my iMac and on my iPhone. I listen to the audiobook on either the computer or the phone, depending on the circumstances. Both the iMac and the iPhone will independently remember the playback position within the audiobook, but I cannot get them to sync those playback positions to each other. So if I'm on chapter 2 on the iMac, listen for a couple of hours, and end at chapter 4, then the Mac will remember the correct playback position when I return to the book, but if I sync the iPhone to the Mac, and check the audiobook on the phone, it is still at the playback position it was the last time I listened to the book on the phone. Should the playbook position in the audiobook sync when the phone is synced to the computer via iTunes? I've tried both wired and wireless syncs, and that doesn't seem to make a difference on my case. Should this work, and if so, is there a particular setting that I'm missing?

    I am tracking the movement of various objects by subtracting the current image from the previous image and displaying the result.  Anything that moves is white and anything that doesn't is black.  I then have vision assistant give me a list of particles and their pixel positions based on certain criteria.  I then use the data from my two cameras pointing at 45 degrees inward in order to triangulate the object's 3-D position in space (this takes a few steps).  Then I use the frame rate of the camera and the scalar distance between an object in multiple frames to determine its scalar and vector velocities.  All of this is done in real time.
    I  was originally having issues with the pixel positions but have since wrote a vi that interprets a matrix of the pixel positions which then feeds them into my position/velocity vi.
    The vi I attached is built to work with my "bitflow alta frame grabber" so feel free to ask questions if anything is not understood.
    My new task has been to develop a way to only track one object at a time, and have that object be the same object in both cameras. 
    Questions or comments welcomed 
    Attachments:
    continuous grab example_chad.vi ‏45 KB

  • Invalid Cursor Position Error on Windows XP using CachedRowSet

    Hello, I don't know if this question lies here, but I thought it would be the well suited place so please pardon me if it isn't. I am trying to access multiple pages from my database on my XP machine but I am getting an "invalid cursor position" error when trying to access the next page. I don't know how this error is coming about because it works well on a Vista machine with no errors. I don't know if it is my drivers or something that brings about the problem. I am using mysql connecter 5.1.10, JRE 1.6.0_02 and windows XP SP2
    Below is a simple code that brings the error.
    package Admin; import javax.sql.rowset.CachedRowSet; import com.sun.rowset.CachedRowSetImpl; public class test { public void table() { try { CachedRowSet crs=new CachedRowSetImpl(); crs.setUrl("jdbc:mysql://host:3306/database");         crs.setUsername("User");         crs.setPassword("password"); crs.setCommand("select * from myTable"); int[] keys = {1}; crs.setKeyColumns(keys); crs.execute(); crs.last(); if(crs.getRow()>500){ //new overLimit(); } crs.setPageSize(3); crs.execute(); while (crs.next()) { System.out.print("page one----"); System.out.println(crs.getString(1)); } while(crs.nextPage()){ System.out.println("page two---"); while (crs.next()) { System.out.println("in page two"); System.out.println(crs.getString(1)); } } } catch (Exception e) { e.printStackTrace(); } } public static void main(String []args){ new test().table(); } }

    Yes I am running the same code on both machines. The output I get on the XP machine is shown below. I modified the code I posted earlier and replaced the "page two" text with "page (then page number)" and also omitted the "in page two" text for better readability---------PAGE 0---------
    DB09140110
    DU35463010
    EX29201810
    ---------PAGE 1---------
    EX38341510
    EX40471810
    KZ280299
    ----------PAGE 2---------
    LA130299
    LC130299
    MC081009
    ----------PAGE 3---------
    RZ300502
    VA130299
    VI020209
    ----------PAGE 4---------
    YX101008
    ZE220299
    ZF231105and vista....
    ----------PAGE 0---------
    EX38341510
    EX40471810
    KZ280299
    ----------PAGE 1---------
    LA130299
    LC130299
    MC081009
    ----------PAGE 2---------
    RZ300502
    VA130299
    VI020209
    ----------PAGE 3---------
    YX101008
    ZE220299
    ZF231105

  • ITunes 7.0 ignoring "Remember playback position"

    I've been encountering an issue where iTunes 7.0 is ignoring last marked playback position on files with "Remember playback position" set. The files in question are on my iPod. I can't put my finger on it, but I have for certain encountered this anomaly more than three times, with different files (all are mp3 podcasts from different sources). Instead of resuming playback where I left off, it begins playback starting at the beginning of the file.
    Has anyone else been encountering this? If so, is there any workaround for this or should it be placed on top of the growing heap of iTunes 7.0 bugs?
    2 x 3 GHz Dual-Core Intel Xeon Mac Pro   Mac OS X (10.4.7)  

    So glad to at least find others that are having this problem. It's driving me crazy! I wish I had a fix, but even the Apple reps at MacWorld didn't have a solution.
    This happened when I upgraded to iTunes 7. My "Remember Playback Position" is checked but greyed out.
    Possibly related, when I first disconnect the iPod, the audiobooks show up inside the top level "Audiobooks" category. If I listen to one of them, then go listen to a song, then go back to the Audiobooks category, the books are now gone! I can get to them by browsing through Artists but it's definitely not the expected behavior.

  • Does Apple TV sync video playback positions?

    I'm considering an Apple TV, but see a deal breaker:
    Does the Apple TV sync movie playback positions to and from its host iTunes library? Does it also mark video podcasts as viewed?

    This is certainly true when content is streamed, I don't sync any content other than photos but I could see why playback position wouldn't necessarily get synced, can you confirm you are talking about syncing and not just streaming.

  • Can you make "Remember Playback Position" the default?

    I mostly listen to audiobooks. When I take a CD and rip it, I always have to change the Option to "Remember Playback Position." After a few thousand times, this becomes tiresome. Is there any way to make "Remember Playback Position" the default option in iTunes? I am using iTunes 11.0.2.

    Strongly recommend Context Search extension which will solve your problem
    - https://addons.mozilla.org/en-US/firefox/addon/context-search/?src=search

  • Is the iPod touch 4g supposed to remember playback positions reached in iTunes?

    Mine doesn't.
    Playback position appears to be one-way - iPod to iTunes.
    I've stopped listening to large files (long podcasts, audiobooks) in iTunes because I have to manually return to the same position after my iPod is disconnected from iTunes.
    My old iPod classic doesn't have the problem - so I'm assuming this is a software issue.
    Thanks

    The answer according to the local Apple Genius bar is - iTunes doesn't send last playback position to the iPod touch device.

  • How to set remembering playback position as default

    Hi everyone,
    I know how to manually set the "Remember Playback Position", however it doesn't remain set and keeps on dropping off.
    does anyone know how to set it as a default value? or is there a bug effecting this functionality?

    Hi Alessanrdo,
    Thanks for your reply.
    Actually the motive behing this option is to cover the "loop hole" of ARQ application. If you notice, we can "keep" adding the same role which is already assigned with different validity dates. ARQ does not control this!
    Eventually, what happens that in the back end system, the user master record is overwhelmed with the same role entry with different validity dates!
    Unfortunately, application does not have any control over this. Therefore, at least making "RETAIN" as the default provisioning action, we can have a "sort" of control over this. What happens is, if I add a role which is already assigned to a user and change the validity dates, there will not be any new entry in the back end system with the same role.
    Hope this will help you understand the requirement and advise me.
    Regards,
    Faisal

  • Position error

    I am having encoder position issues.
    I am using 3 Kollmorgen servos attached to 3 AKD Ethercat drives. I have a cRio running as the Ecat master. All of my Vis are running in scan mode on the cRio.
     I am building a capstan pulling system that will have a constantly changing velocity based upon position within a 3 meter repeating cycle. I change the velocity based upon sensor input every mm of the cycle and then start the 3 meter cycle over. The velocity various from 1 RVS to 10RVS.  I use the encoder position to determine my position within a cycle. The system runs great for around 5 minutes and then my encoder goes crazy. Even when I stop the servo the encoder continues to increase. In the help for the “Reset Position” command I noticed that encoder values higher than 2^52 can be unstable. Does this apply to user units or RAW encoder pulses?
      I have tried the following methods to try and fix the problem.
    Test and verified that the issue occurs in the Axis test panel.
    I just set a long move at a given speed. After a time the position error goes crazy as in 4.0 e +12 and the position continues to increase after the servo stops.
    I removed my units and used just encoder pulses and again after a few minutes the same thing occurred.
    Changed my VI so that after each 3 meter cycle the encoder was reset to zero. Again after roughly the same amount of time the issue occurred.
    One strange thing is that I can still control the servo accurately. If I tell it to go 100mm it goes 100mm, but once there I cannot read the position because it returns a very large and inaccurate number.
    A further observation is that I can recover by resetting the cRio. This makes me think that the encoder number is exceeding some register U32 or U64. If that were the case I would have thought that resetting it after each cycle would have fixed it. Unless when you reset the position you are just setting an offset that is subtracted for the actual encoder from that point forward.
     I am sure that I have confused you all but any and all help is greatly appreciated.
    Perpetual LabView noob…..
    Jeff Lee

    Hi Jeff,
    I have a few questions for you to help me get a better understanding of the issue:
    - What version of LabVIEW software is your application written in (2010? 2011 SP1?, 2012? etc)?
    - Have you tried swapping your motor with a different one?  Or your Drive?  Did you still observe the same behavior?  If possible, I think this would be a useful test to help narrow down the issue.
    - What does your motion system look like at a high level (What components are involved and how are they connected to eachother)?  Does the encoder feedback connect back to the drive or back to your cRIO controller?  
    Andrew T.
    National Instruments

  • Creating Multiple Playback Positions on a Track

    Hello,
    This should be quite simple and i'm trying to emulate a feature on youtube. Basically, i have some very long music tracks, mixes and so forth, that are about an hour long. What is the simplest way to create multiple playback positions in one track? This is sort of like how you can list multiple playback positions on youtube. I'm not sure if this is the same as remembering playback positions, as that is more about playing from when you left off. I'm talking more clickable playback positions for a single music track/mix.
    Thanks,

    I'm not an expert but I think that is only possible with video files which support chapter markers.  I have never heard of anybody doing it in iTunes or with music files.  The closest I have heard is iTunes allowing you to set a start and stop time for tracks, but I think that is saved in iTunes data and is not part of the file.

  • Files that "remember playback position" are not updating during sync

    I listen to long spoken word MP3 files that are not podcasts. I have the "remember playback position" option checked on these files. I will add it to my library, sync it to my 2nd gen iPod shuffle, then go play it. The shuffle will remember the playback position fine. When I plug it into the computer again, iTunes used to update the files on my computer with the new playback position from the shuffle. This is not the case anymore. The local files will stay at the spot where they were at the original sync (0:00 in most cases). The files on the shuffle will then go back to 0:00 as well. This is very annoying. Any ideas?
    P.S. I'm using the newest Shuffle that was released along with the 4th gen Nano (mine is the 2GB blue).
    I know this is supposed to work because I had a silver 1GB shuffle in 2007 that worked fine.
    Message was edited by: ajstahl

    ROFL I've named this thread "Shuffle Woes" in my favorites list. I seem to have fixed this strange and VERY elusive problem for now.
    I discovered a duplicate music file that had the same metadata as another music file. The only difference between the two files was the name of the physical file on the hard disk AKA the file name. The metadata (tags) were exactly the same. Now that I've deleted one of the two files everything seems to magically work again. Don't ask me!
    If the problem resurfaces again I'll be back. No more shuffle woes!

  • "Column Width should be positive" error

    I have a flash chart that has a fairly simple query (whic works fine when run via SQLPLUS etc), that when I run via Apex I get "Column Width should be positive" errors. What does this mean, and how do I debug it?

    I realise that I have to have a chart query to generate the chart. The query (see below) runs perfectly fine in SQLPLUS, TOAD, SQL Developer etc, with no negative values returned.
    select null, to_char(targcompdate , 'RRRR-IW'), count(*)
    from work_tab
    where worktype = 'RO'
    and integ_priority in ('2','3','4')
    and comp_person = 'Structural'
    and targcompdate >= sysdate
    and status = 'APPR'
    group by to_char(targcompdate , 'RRRR-IW')
    order by to_char(targcompdate , 'RRRR-IW')

  • Set playback position

    Hello,
    I have a Player created like this
    Player player = Manager.createPlayer(Manager.createDataSource(new URL("http://www.sample.com/movie.mpg")));I've tried to change the playback position like this
    player.setMediaTime(new Time(mediaNanoSeconds));
    player.start();but it seems that the player is freezing.
    Is it possible to change the playback position of a player with a http source?
    Thank you!

    Hello captfoss,
    Thank you for your advice. I looked on JMF API and saw that class Player doesn't implement interface Seekable. Still if the media is on your machine and you create a player you can skip some frames. Maybe I didn't understand your suggestion. I tried a different approach with FramePositioningControl but no success. I know that in JMStudio if you try to open a file from a url the seek bar doesn't appear but i thought that you can do this by code. I guess that if the media file is not on your local machine you can't change the playback position.

  • Remember Playback Position still broken in 3.1

    On a mac.
    Description of problem:
    1. Mark a song to 'Remember Playback Position'
    2. Connect iphone and sync song.
    3. Remove iphone from cable.
    4. Play song.
    5. While song is playing, connect cable.
    6. Sync iphone.
    7. Remove iphone from cable.
    8. Play song.
    It starts from the beginning.
    This worked in 2.0. I fail to understand how this was broken in 3.0 and was not fixed in 3.1. I have invested a lot of money in Apple products and this is just horrible.

    Works fine here, I fail to understand how you broke it.

Maybe you are looking for