Play URI disregards Priority

When pushing text to a phone and also using the Play: URI to activate a ringer, it appears that the Play: occurs as if the Priority is always 0, even if set otherwise.
Here's the execute:
<CiscoIPPhoneExecute>
<ExecuteItem Priority="1" URL="Play:Chime.raw"/>
<ExecuteItem Priority="1" URL="http://server/xmlpage"/>
</CiscoIPPhoneExecute>
Here's what happens:
If the phone is idle, the Chime is played and the xml page is displayed correctly.
If the phone is active, the Chime is played immediately, but the xml page is not displayed until the phone goes idle (correct behavior for the latter, but not the former).
I've seen the behavior on 7940/60/70.
Phone load P00307020200 for 7940/60.
Phone load TERM70.7-0-1-0s for 7970.
Have I missed something? A bug perhaps?
Thanks!
Craig

I am running into the same problem. I have tried various phone loads and found that "Priority" attribute is disregarded by Play and RTPTx URIs. I thought this was going to be fixed. I have tried loads as latest as 8.0.2. However, I have not tried 8.0.3 loads - which were released very recently.

Similar Messages

  • AXL Play Uri

    If there anyway to play raw files that aren't in the TFTP path??
    Thanks in advance

    I am running into the same problem. I have tried various phone loads and found that "Priority" attribute is disregarded by Play and RTPTx URIs. I thought this was going to be fixed. I have tried loads as latest as 8.0.2. However, I have not tried 8.0.3 loads - which were released very recently.

  • Solaris9 x86 problem with network cards, ACPI, IRQs

    Hello!
    For the last two days I've been trying to solve the problem of Solaris9 x86 not being able to use my network card. I have tried with 3c905CX-TX-M, RealTek 8139 and Realtek 8029 and none of them works. The problem is the following:
    Everything is properly configured, networking etc., but the cards can only send and cannot receive packets. When trying to ping, the packets leave the NIC but none of the reponses are detected by NIC. When I check with 'kstat elxl' I can see that 'intr' is zero, and out_packets is increasing as it's sending packets.
    From the discussion forum I can see that this same problem has been known for several years. One of the conclusions is that Solaris x86 sucks at dealing with IRQ setup and that the best thing is to disable ACPI and 'PnP OS' option in BIOS. However, I've tried all releases of AMI bios and none them has neither of those options. I have played with various priority levels in BIOS but all that has accomplished is that the card, when first started, captures a few interrupts/packets but then stops again. This is usually just enough to finish the ARP exchange (arp -a shows the remote host).
    And of course, all the cards work just fine in WindowsXP and Linux. And all the cards work nice in another PC which runs the same Solaris 9 x86.
    My motherboard is Gigabyte 7VTXE. (The other one in which it works is ASUS P2B-DS).
    I would really appreciate help!
    Josip

    I had almost identical problem today on an HP Kayak - which happened to be dual CPU one. The fix
    set pcplusmp:apic_forceload = -1
    in /etc/system worked for me. The only drawback is that it also leaves the machine single CPU. AFAIK this (downloadable) S9x86 kit is licensed only for one CPU anyway, so I wonder if something has been fixed in the code to make sure it is not run on multi-CPU systems. Before the fix, mpstat showed thousands of interrupts on CPU0, both CPUs were constantly busy at about 70% and there was no network connection on a number of cards I tried (3Com 90x - elxl, Intel iprb, another one with Realtek 8139 was never recognized, so I did not bother too much to find if there is a fix for this); pinging out resulted in the hub port light blinking, nothing comes back.
    Anyway, the fix is good enough to test s9 for now; everything else seemed to be OK. If it may be of some use for somebody, don't go into the disk option of the Solaris Management Console; the machine in question had Windows 2003 server (RC2) installed before Solaris9, the disk tool decided that there was no label on the disk and asked to write it on; I clicked the 'cancel' button, but the partition table was irreversibly damaged, so I had to start from installing W2k3. My guess is that tool has been tested only with Sparc, so there is no issue with BIOS level partitioning there. BTW, system info of the SMC insists that the CPUs are Sparcs...

  • Application freezing while in foreground sporadically

    Greetings. Occasionally my application's front panel will freeze, and not update any of the indicators or notice commands from controls, but only while it is in the foreground. As soon as I click on the desktop or another application, it recovers and works as expected. If I let it stay frozen, one of my two threads (the one that doesn't do any work with the front panel) times out, flags an error, and the thread that does work with the front panel inexplicably catches it and throws up a dialog box, after which things work normally. If I turn off the background thread's timeout, then after a long while (30-60 seconds) it will recover, sometimes just for a second and then going back to being frozen. Any ideas as
    to why this might be happening, and what I can do about it? Thanks!

    This may help some....
    On Wed, 26 Nov 2003 23:50:22 +0100, robert_s wrote on Re:
    Multithreading issue:
    A couple of days ago, I wrote about a goal I need to achieve
    in programming a rack for radar transponders:
    >I have built a simplified version of what I want to do, but
    >it does not work as expected: full screen VI A has an
    >indicator that displays global variable V, and a button that
    >launches modal VI B. In VI B, a command modifies global
    >variable V. VI B's window is centered on the screen, but the
    >indicator in VI A is visible. When modifying variable V from
    >VI B, nothing happens on VI A' indicator until after I close
    >VI B. Obviously this is not what I want to do...
    >
    >I tried to remove VI B's "modality" but this does make the
    >problem disappear.
    After carefully reading the docs, I ran many tests in order
    to have two VIs, one caled by the other, to multitask
    gracefully. As I said above, I never could make this happen,
    particurlarly by enabling multithreading, affecting
    different threads of execution to each VIs, playing on
    execution priority, etc.
    A friend who by profession is much more proficient with LV
    than I am gave me the solution, and here it is:
    VI A the caller should have two While loops, with a "WAit"
    function of say 100ms; one loop is in charge of continuously
    displaying global variable V on the indicator, the other of
    calling VI B.
    VI B itself consists of a while loop where a command feeds
    and modifies global variable V. B is modal and centered, so
    it won't hide the indicator on A.
    This indicator is correctly updated on A when V is modified
    on B.
    There is a problem, though: in VI A, the two loops cannot be
    exited under the action of an "armed" button (VI won't
    compile). One must use a simpler button type.
    One things to be noted is that *this architecture works even
    with multithreading disabled in LV!!!*.
    Why this works at al is beyond me, but I would appreciate
    explanations however.
    For now I can go back to programming my stuff the way I like
    (well, the way the client said it should be programmed 8-)
    Many thanks to the two persons that tried to help me.

  • N91 great phone with GREAT problems!!!!

    hello to all N91 users !
    first of all i`d like to say that N91 is probably the best music player ever (the quality of sound is amazeing---i have an iPOD and it`s a little kid in front of N91)
    so here are my problems:
    -- THE music player gets paused in the middle of the trak many times ...i tried to format and still same problem
    -- applications like task manager ,IM+..etc don`t work (i`m talkin about 3rd generation applications ,not old s60 softwares)
    -- if i set an mp3 as a ringtone,when is ringing, after few seconds it gets to the default nokia tone
    i`ve allready updated my firmware at nokia service center and today reinstall it with online support
    my firmware is :
    v 2.00.052
    25-07-06
    rm 43
    n91(05.01)
    thxz in advance
    darhan

    Hi
    The pausing music is likely due to file corruption in the song file. Even though the file may play on the PC in musicplayer if the MP3 has enough lost data the N91 will sometimes just pause. I suggest identifying the songs that pause, try removing them and see if the problem stops
    Apps: Just because an application is advertised as "S60 3rd edition" you need to ensure it explicitly says for the N91. Alot companies state something that is not always valid for all S60 3rd editions (ie they test it on an N80 and say "its ok for all devices)
    MP3 ringtone that drops back to default. That should not happen. I used to see it sometimes if the vibra was on at the exact same time the song was about to play (vibra gets priority i think).
    Music101

  • GotoAnd Play Priority

    I hope someone can help but please take it easy on a novice.
    In the broadest terms I have a Flash movie with 3 buttons
    activating a simple gotoAndPlay action. Each button activates a new
    sequence which involves a bar moving across the screen ad different
    part of the movie playing, all buttons function correctly but when
    one function has been actioned I find that some buttons no longer
    action a gotoAndPlay command. I haven't got any error messages but
    it seems that once an action has been performed the other buttons
    stop working. The gotoAndPlay actions not involving a mouse event
    all function correctly.
    My action scripts for the buttons are each on a seperate
    layer, all gotoAnd Play actions for repeating a sequence or moving
    to a new frame are on seperate layers. It's just a guess but I
    suspect that there is a priority question concerning gotoAndPlay
    depending on what layer it's on and where that layer is.
    Many thanks in advance.

    Thanks a lot for your help. You may not have directly solved
    the problem but you did make me think differently about the
    problem. Essentially the problem occurred because two of my
    gotoAndPlay actions returned to a frame that was after the action
    script frames, which obviously meant that although the button was
    still clickable there was no code available to action. Pretty
    stupid mistake but it's thanks to people like yourself that makes
    it highly unlikely I will make the same mistake again. Hopefully
    you won't think I have wasted your time.
    Mnay Thanks

  • How do i make it so iTunes plays the music files from where i have chosen to store them?

    how do i make it so iTunes plays the music files from where i have chosen to store them as opposed to it scattering copies of my files into a myriad different folders based on the albums they came from when i'm not even interested in keeping whole albums?
    I recently converted myself to mac after having been a windows formatted person since the beginning of time. I use last.fm and the client scrobbler only supports iTunes on the mac (scobbling since Nov 06 and i'm now heavily dependant upon it as a means of discovering new music) - if you don't know what that means then take it for granted i have no option other than to use iTunes as my media player whn using the mac. And almost immediately upon using iTunes i was filled with horror.
    My tale of woe as follows: I copy all my mp3 files to folder X on my new mac. I copy my simple playlist in to that same folder X. The simple playlist simply lists all the files in folder X in the order i want to hear them in... simple right? And what happens the moment i start playing my simple list? Well you probably all ready know; itunes throws copies of all those files in to the air, scatters them to the four winds so each of them fall into a little folder of their own representing the album they might once have come from. I don't keep whole albums. For me the 'album experience' is a ruse to trick one into listening to weaker material. I only keep the concentrated goodness. I only put up with albums in a previous lifetime because in the days of vinyl i had no other choice apart from spending hours compiling mix tapes. Now i am liberated from these restrictions and have been for the 15 or so years i've been using a computer to listen to music. Until along comes iTunes forcing me backwards in time, frog marching me back into the past.
    That simple list i mentioned is my one and only playlist. This single playlist has been evolving for 15 years as tracks are added and removed and their position in the list changes because that song sounds amazing when heard after that other song whereas hearing this song after that song would be like pouring custard over your sausages (for me shuffling is an abomination). And so here is how i've managed this list and managed synchronization of said list and listed files with my mp3 player (currently a Zen).
    Adding a new file: After deciding that song is a keeper i will copy it into that simple folder that holds all my music and drop it in to a position on the list i deem most suited for it. Incidentally over this entire 15 year (i'm pretty sure it's been around that long) my media player has been winamp but for the reason previously mentioned i am unable to use winamp in mac world.
    Removing a file: fortunately winamp has an option to simultaneously remove a file from the list and the hard drive. And naturally so because after all if i no longer like a song then i want it expunged completely from life or at least from my hard drive and playlist. In the brave new world of iTunes i have to remove from the list there then delete the file from where iTunes copied it from and then the place iTunes copied it to.
    Editing the list: drag an item in the list to it's preferred location and select to save it as i would for any other file using any other application... well desktop type application as opposed to one that uses a database as its primary means of storage.
    Syncing with the mp3 player: copy drag drop playlist file from the simple folder on the hard drive to the simple folder on the mp3 player as i would for any other file. And then also copy drag drop the most recently created files from simple folder on hard drive to simple folder on player after having ordered them by creation date so as to make it easier to select the most recently created. After a while the mp3 player will fill up with the files no longer on the list so i will delete all files from player then re-copy all flies from simple folder on hard drive to simple folder on mp3 player.
    I do not make changes to the list on the mp3 player so synchronization needs only to go one way: from laptop to player.
    So all very simple. Apart from editing the positions of files in the list everything is managed by copy drag dropping and deleting files using windows explorer.
    But i'm in a mac and circumstances have forced me in to the corner of using iTunes. And this whole iTunes situation is terrifying for me as over the years i've heard horror stories about it deleting all of someone's music files. Perhaps this may have been by using the software incorrectly but even so, the very fact that it appears possible for this to happen simply by using the software incorrectly and the fact that it happens with some degree of frequency given the number of reports of this happening that i have heard of over the years on music discussion forums fills me with dread that i have to now use this software. And given the software's blatant disregard for the user's choice as to where to store his/her files it's no surprise that this happens. The software is pointlessly doing dangerous things with my data. Please make it stop.
    Please can i just at the very least make iTunes play the music from the folder i have chosen to put my files in and not copy those files here there and everywhere without my say so? Thankyou.

    option discovered in preferences. Really this and any feature that moves deletes or edits a users data should as far as possible be OFF BY DEFAULT. It shouldn't by default and without the users specific say do this dangerous and unnecessary thing without even letting the user know what it's doing!!! And then cause me a few hours (as i'm new to mac) searching for the option so as to switch it off. If i hadn't noticed the status cage declaring that it was copying files then i might never have twigged that this insane thing was occurring. And if i hadn't of noticed i would have been left maintaining the contents of the folder i copied the files to, the folder which as far as i was informed and so believed was also the location of the music files i was playing. How does Apple justify this 'genius' piece of software non-design? Surely it will hurt no one if this was off by default for new users - overall at least i dare say it would cause a lot less distress in the future for the unsuspecting public at large. Thanks for the support.

  • ITunes takes a few seconds to start playing MP3 files

    I just started using this new MacBook Pro and transfered my music library to the new laptop. I'm having a problem with iTunes playing MP3 files: when I double click on a MP3 track iTunes seems to freeze for like 3 - 4 seconds before the track starts playing and then it plays normally without a hitch. This is happening with each and every MP3 track that I have in the library as well as new MP3 tracks that I'm adding. Th short delay/freeze also occurs when I try to view or alter the info of an MP3 track in the library, so that when I right click on a track and click Get Info, the 'Get Info' screen will take about 3 - 4 seconds to show up and the same freeze happens when I click OK to close the 'Get Info' screen.
    Note that this happens only with MP3 tracks. Tracks purchased from the iTunes store (AAC) do not have this problem and start playing without any delay/freeze.
    Another weird tidbit: When MP3 tracks are in the same playlist (or album) and I let them play one after another (without me skipping to the next/previous song) then the delay/freeze does not occur at all. This delay seems to just happen when I start playing a song or when I click the fast forward/Rewind buttons to skip to the next/previous track.
    Does anyone know what might be causing this? And if a fix is available somewhere? Thanks in advance!

    It only happens on mp3s not on AAC's to me too! Just so you all know. I thought an EXTERNAL DRIVE was my problem but after hours of research I found it's probably an intentional bug (just kidding Apple you don't hate other companies that much....geesh! ) It might not be this...but you never know.
    I thought maybe it was the TAG but it seems this has nothing to do with it. Point is either Apple left a bug on the last update of itunes MP3s because to them it's less of a priority or it's being messed up by Amazon folders (still looking in to), or maybe there was a problem with the install.
    So far my options are to get an MP3 to AAC convertor and dump my 3000 songs into a program for converting, wait for an update, reinstall, or keep looking for a missed solution.
    Any help would be appreciated!!
    [email protected]

  • Bought album and it downloaded in iTunes but it only plays partial of first song and then skips to next song in album, help?

    Well I bought the Bring Me The Horizon album There Is A **** Believe Me I've Seen It, There Is A Heaven Let's Keep It A Secret on my iPhone and it synced to iTunes on my laptop. The entire album was downloading however when the first song was starting download it displayed an error message and I quickly pressed okay and disregarded it. The rest of the album resumed download and completed. I then went up to the download button next to the search input in the upper right hand corner and finished download for the rest of the song. When I went to listen to the album I was in a minute into the first song, "Crucify Me," and it skipped to the second song in the album, "It Never Ends." I tried playing it over and opening and re-opening iTunes but it still persists to skip the first song a minute in... so it appears to be a partial download. I mean, I have the album downloaded on my iPhone (this was the original site of purchase and download) but currently I am not in a state to do anything with that because my USB cable broke so my phone's been dead for the past few days and I'm waiting until tomorrow to get one with my father, I'm just a 14 year old girl afterall. I need a quick fix for this error and soon, preferably one without needing my iPhone because I want to listen to this album tonight and make sure it's all in order (and so I know what to do for future reference in case this happens again.) Please let me know your suggestions on resolving this issue. - Taylor
    P.S. I've inserted a picture of what my iTunes looks like just in case it might help, which I doubt, but it might. Also please don't judge the Blood On The Dance Floor albums... I went through a phase that involved **** music.

    Hi cruzansingerboi,
    Welcome to Apple Support Communities.
    It sounds like you've downloaded tracks on your iPhone and you want to download those same tracks on your PC. The article linked below will walk you through downloading previously purchased tracks on another device.
    Download past purchases
    http://support.apple.com/kb/HT2519
    You can also transfer the purchased content from your iOS device to your computer, as shown here:
    iTunes Store: Transfer purchases from your iOS device or iPod to a computer
    http://support.apple.com/kb/HT1848
    And, you may be interested in enabling Automatic Downloads of purchased content on your devices.
    iTunes Store: How to enable Automatic Downloads
    http://support.apple.com/kb/HT4539
    I hope this helps.
    -Jason

  • Satellite L50-A-19N can't play audio from multiple sources

    I can't play audio from multiple sources. This is very annoying when I have 2 youtube videos playing, if I start playing something on the media player, there is no sound on media player, it's the same when I have 2 media players open and 1 youtube video playing, youtube video doesn't have sound..
    It goes away when I plug out my headphones..
    I already have all the latest drivers, last DTS driver update was in 2014, sound update this year's february..
    25/02/14
    DTS Studio Sound
    DTS Inc.
    Windows 8.1 - 64 Bit
    1.01.2700
    I don't know if this makes sense, but I got newer DTS sound driver which I found, It's not my laptop model, but they all seem to be the same - v1.1.88.0
    I uninstalled DTS software and still had the same problem, so it's not affecting sound driver in any way..
    10/02/15
    Sound Driver
    Integrated Device Technology Inc.
    Windows 8.1 - 64 Bit
    6.10.6491.0
    IDT audio driver has newer release date, but the driver version is the same as the 2013 one..
    Why are toshiba releaseing old driver as 'NEW' ?
    2nd is my speakers advanced settings, nothing changed when I disabled "Allow applications to take exclusive control of this device"

    I see that the option called “give exclusive mode applications priority” has been checked.
    Usually different applications and programs can access the sound card simultaneously.
    For example: you can hear the sound in game, while you can run your own music via an external player.
    This is prevented with these options “give exclusive mode applications priority”.
    Maybe you should disable (uncheck) this option to prevent the different applications for using this exclusive mode stream.
    I did it for my DAC. I set the DAC for exclusive mode. Once my audio playback software starts to play music, no other software is able to share the DAC.
    However, I use Win 7 and Realtek sound driver… It’s another configuration.
    So it’s not known to me if your issue is related Win 8.1 system or maybe limitation of sound driver… it could be also possible that one of your sound applications don’t allow multiple sound streaming.

  • Sony Docking station will no longer play audio on Alarm after ios 7 upgrade

    I have read through many of the community postings and hate to have to start a new question when there are over 90,000 that have viewed or commented on this same type issue, but I have tried all the suggestions from community users and they work for a test, but then when you set the alarm for the next day, it flashes and no audio. Why is it that Apple is ignoring this huge customer dissatifaction and why is it that they can do this to the users? I read in one stream that they inserted a software to block any "Non-Apple" product from working with their new software. I have 3 phones in this house that have not been upgraded and they work fine. The two that I upgraded will NOT play the audio. The light will flash as if it triggered the alarm, but nothing triggers the iTunes to play. Originally Apple said it was my Sony device. Wrong! So then they said it was iTunes because they iTunes Radio was in the first/primary slot now and I had not signed up or created a Radio station. They did show me how to go into More options and change the priority to place my own music and playlist in the primary and get rid of the iTunes radio and it worked. Next day it didn't. Then I read that if you plug into an Apple peripherial and then a Non-Apple device, it will again shutdown. So I have started doing the Shutdown step every night when placing it on the docking station, never knowing if the Alarm will play/sound at 4:50 or not. Needless to say, I am NOT getting any sleep as I watch the minutes tick towards the waking hour anxiously waiting to see if the phone Will or Will not wake me. I have also seen people mention removing the "SoundCloud" What the heck is that and how do you do it?

    In my Sync vehicle, I had to "forget" the SYnc connection in the iPhone Bluetooth settings, then go into the car menu and delete the bluetooth device from the vehicle's system. Once I re-paired from scratch, it has been working fine. Give that a try. If not, try removing the connection from both sides again, then Reset Network Settings from the General Settings before re-pairing.

  • Sync play count, last played, and rating with iOS 5

    From other threads (https://discussions.apple.com/message/16563011#16563011 and https://discussions.apple.com/message/16505730#16505730 for example) it is clear that there are some problems with play count, last played, and rating information updating and syncing under iOS 5. I have at least a partial solution. I am posting it here instead of under one of the existing threads because 1) some discussions seem to be confusing the difference between updating the iOS 5 device data and syncing the updated data to the computer, and 2) some of the discussions are focused iPhone, and though the problem appears similar I only have an iPod touch to test the solution on.
    First of all, this is not a new problem. Prior to iOS 5, I would plug my iPod Touch into the computer and not see any play count or last played data for songs I knew I had just listened to. I discovered that if I clicked (in my computer's iTunes display of the iPod) on one song that I had recently listened to, it would suddenly display play count and last played for all the songs played since the last update. I could then transfer this playlist data (more on this in a minute) to the corresponding songs on the computer. Under iOS 5, this no longer works, and in fact causes the new play count and last played data on the iPod to be lost. However, under iOS 5 there is a way to get this information to update, even though you don't see it when you first connect to the computer.
    To make this work, you have your iPod set on Manually manage music and videos under the Summary tab of the iPod settings in iTunes. I have messed around with this for hours, including several restores and resets of my iPod touch, and have found no way to get this to work under various Sync Music options. I have been using the Manually manage mode for years because I use my iPod with numerous different iTunes Libraries on several different external hard drives.
    Here's the trick: Manually manage must be in effect before you connect the iPod to the computer. After your iPod shows up in the iTunes interface on your computer, in the main view (where it shows the different tabs at the top and capacity at the bottom) there is a Sync button at the very bottom right. Click on this and wait for it to go through the Sync steps (don't worry, you're not losing anything), and, voila, when you go to the songs (on the iPod) you have listened to since the last time you connected to the computer, the play count and last played data will be there.
    Unfortunately, it's not a simple matter to get this data synced to the computer, but it can be done. At first I thought that once I got the data to show up on the iPod I could go to the Music tab and Sync Music to get the playlist data to the computer, but this does not work. It will sync the play count and last played data that are on the computer to the iPod, overriding the newer data. The way I have been getting my playlist data from my iPod to my computer without ever changing the Manually manage setting is by using the Copy Tag Info Tracks To Tracks script from Doug's AppleScripts for iTunes <http://dougscripts.com/itunes/scripts/ss.php?sp=copytinforackstotracks>. This isn't hard to download or install or use and copies playlist information very quickly.
    I have never had a problem with play count or last played on my 2nd generation nano, which still works beautifully. As far as I can tell, play count and last played have never worked well on the iPod touch; there are threads in discussions complaining about this from years ago. It would be nice if Apple would recognize that these are extremely important features to many users and make it a priority to make these basics work before (or while) adding a lot of other fancy features.

    Just for posterity in case anyone else ever has a similar problem.
    I found out I can work around my problem, but I have limitations. The only time it'll update the correct songs is after I restore it and then add the initial songs on to the Shuffle. The key is to not ever have a situation where I reshuffle the order of those songs. If I ever shuffle to better alphebatize or categorize things, the sync updating screws everything up. If say Song #3 on my Shuffle's playlist after the intitial transfer gets moved around to being anything other than the third song played, my Shuffle/iTunes will still think that song has been played although the Song #3 I actually listened to after the sync update will be different. Now I have to carefully compose and place what songs I want loaded on since I can't mess around with the playlist setup at all.
    I know Apple support would likely blame my Shuffle for the problem (it's over 6 years old now). But it's funny how this only happened right after I installed 11.0. The update to 11.0.2 did nothing.

  • Problem Please Help - Itunes freezes when trying to play a tv show/movie

    The other day I downloaded a couple movies I had rented. Something I had not done before on itunes. The three movies downloaded with no problems and then when I was on my flight I tried to start one of them. Itunes went black as if to start playing and then froze. I disregarded it at the time thinking it was just my computer being buggy. Which was odd because I hadn't an issue with itunes really. However since those downloads I cannot play anything I downloaded. The moment I try Itunes goes black as if to play and just freezes. I have now lost money in this because I was unable to watch that one rental, and am now trying to watch tv series that have already paid for but am having no luck. So what do I do? I've reinstalled several times, I've tried the little fixes that they suggest online but nothing is working! Also if you can tell me how to contact someone that would be a great help too because this just isn't working.

    I have the same problem. I  purchased several episodes of a television program and they will not play either in iTunes or in Quicktime without stuttering, jerky video, choppy audio, and the video and audio being out of sync. As a new iTunes user, this experience has completely soured me and unless I find a solution.
    I have absolutely no problem with playing video from any other source through any other player. I can stream videos fine from Amazon, YouTube, and everything in between, and videos downloaded from Amazon and elsewhere play just fine whether I'm using VLC, RealPlayer, or WMP. DVDs also play with absolutely no trouble whatsoever. It is only iTunes videos that have any trouble.
    I have already consulted the page that was suggested here (and on other threads I've read), and nothing on that page was useful. (Troubleshooting iTunes for Windows Vista or Windows 7 video playback performance issues
    http://support.apple.com/kb/TS1718)
    This is extremely frustrating. I have Win7 Premium with 4 GB RAM and an AMD dual core 1.65 GHz processor. It may not be the ultimate gaming machine, but it's performed really well up until it encountered iTunes.
    I also tried using QuickTime, thinking that might work better, so I downloaded the most up-to-date version, and playback was marginally better but still unwatchable.
    Considering that this is paid content, it is unacceptable that it cannot be played on my computer -- and I have watched trailers for the episodes on YouTube (it's newly released), and they play perfectly, so I know it's not the episodes themselves.
    Is there a codec that I should install? Is there any fix at all for this issue?
    It seems that a large number of people experience this, which means that a lot of people are paying for something and then getting nothing -- and it's not a problem that can be discovered before the content is purchased. This is a very frustrating situation!

  • Totem won't play any video, despite of working GStreamer

    Hi,
    I have a problem with Totem, that I can't solve, because the program won't give any useful output. Below is the list of relevant, installed packages:
    pacman -Qs totem
    local/totem 3.12.1-2 (gnome)
    GNOME3 movie player based on GStreamer
    local/totem-plparser 3.10.2-1
    Totem playlist parser library
    ~ pacman -Qs gstreamer
    local/clutter-gst 2.0.12-1
    GStreamer bindings for clutter
    local/gnome-video-effects 0.4.1-1
    A collection of GStreamer effects
    local/gst-libav 1.4.1-1
    Gstreamer libav Plugin
    local/gst-plugins-bad 1.4.1-1
    GStreamer Multimedia Framework Bad Plugins
    local/gst-plugins-base 1.4.1-1
    GStreamer Multimedia Framework Base Plugins
    local/gst-plugins-base-libs 1.4.1-1
    GStreamer Multimedia Framework Base Plugin libraries
    local/gst-plugins-good 1.4.1-1
    GStreamer Multimedia Framework Good Plugins
    local/gst-plugins-ugly 1.4.1-1
    GStreamer Multimedia Framework Ugly Plugins
    local/gst-vaapi 0.5.9-1
    GStreamer Multimedia Framework VA Plugins
    local/gstreamer 1.4.1-1
    GStreamer Multimedia Framework
    local/totem 3.12.1-2 (gnome)
    GNOME3 movie player based on GStreamer
    ~ pacman -Qs libva
    local/libva 1.3.1-2
    Video Acceleration (VA) API for Linux
    local/libva-intel-driver 1.3.2-1
    VA-API implementation for Intel G45 and HD Graphics family
    Now, whenever I play h264 file with Totem, all I get is white screen:
    and following output in terminal:
    run/media/piotr/luggage totem 0001.mp4
    libva info: VA-API version 0.35.1
    libva info: va_getDriverName() returns 0
    libva info: Trying to open /usr/lib/dri/i965_drv_video.so
    libva info: Found init function __vaDriverInit_0_35
    libva info: va_openDriver() returns 0
    /run/media/piotr/luggage
    I can't see anything wrong here. The strange part is, that the same video plays correctly with gst-launch-1.0 playbin:
    /run/media/piotr/luggage gst-launch-1.0 playbin uri=file:///run/media/piotr/luggage/0001.mp4
    Setting pipeline to PAUSED ...
    Pipeline is PREROLLING ...
    libva info: VA-API version 0.35.1
    libva info: va_getDriverName() returns 0
    libva info: Trying to open /usr/lib/dri/i965_drv_video.so
    libva info: Found init function __vaDriverInit_0_35
    libva info: va_openDriver() returns 0
    Got context from element 'vaapidecode0': gst.vaapi.Display=context, display=(GstVaapiDisplay)NULL;
    Pipeline is PREROLLED ...
    Setting pipeline to PLAYING ...
    New clock: GstPulseSinkClock
    How can I determine, where lays the problem?
    Last edited by PiotrPyclik (2014-09-02 20:09:43)

    Well, I use mpv and it's great. But beacuse Totem integrates with GNOME so nicely, I thought, I would use it from time to time.
    With GST_DEBUG=1 and gst-vaapi installed, there is something informative:
    /run/media/piotr/luggage totem 0001.mp4
    libva info: VA-API version 0.35.1
    libva info: va_getDriverName() returns 0
    libva info: Trying to open /usr/lib/dri/i965_drv_video.so
    libva info: Found init function __vaDriverInit_0_35
    libva info: va_openDriver() returns 0
    0:00:01.191829975 2225 0x7f7b700a9b20 ERROR vaapidecode ../../../gstreamer-vaapi-0.5.9/gst/vaapi/gstvaapidecode.c:397:gst_vaapidecode_push_decoded_frame: video sink rejected the video buffer (error -1)
    And with GST_DEBUG=3:
    /run/media/piotr/luggage totem 0001.mp4
    0:00:00.778999773 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:00.779146545 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:00.835112343 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:00.835241110 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:00.867064804 2446 0x16920f0 WARN basesrc gstbasesrc.c:3460:gst_base_src_start_complete:<source> pad not activated yet
    0:00:00.868267302 2446 0x16920f0 WARN basesrc gstbasesrc.c:3460:gst_base_src_start_complete:<source> pad not activated yet
    0:00:00.868667831 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:00.868723978 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:00.871518146 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:00.872650718 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:00.937628693 2446 0x7f014c0dd230 WARN qtdemux qtdemux_types.c:200:qtdemux_type_get: unknown QuickTime node type TIM
    0:00:00.938205614 2446 0x7f014c0dd230 WARN qtdemux qtdemux_types.c:200:qtdemux_type_get: unknown QuickTime node type TSC
    0:00:00.938253232 2446 0x7f014c0dd230 WARN qtdemux qtdemux_types.c:200:qtdemux_type_get: unknown QuickTime node type TSZ
    0:00:00.938696437 2446 0x7f014c0dd230 WARN qtdemux qtdemux.c:8243:qtdemux_parse_trak:<qtdemux0> unknown version 00000000
    libva info: VA-API version 0.35.1
    libva info: va_getDriverName() returns 0
    libva info: Trying to open /usr/lib/dri/i965_drv_video.so
    libva info: Found init function __vaDriverInit_0_35
    libva info: va_openDriver() returns 0
    0:00:01.041873965 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:01.041954877 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:01.053938639 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:01.054114550 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:01.054859181 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:01.054918181 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:01.055540992 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:01.055597791 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:01.148430809 2446 0x7f0148070a80 WARN GST_PADS gstpad.c:3742:gst_pad_peer_query:<sink:proxypad10> could not send sticky events
    0:00:01.246108505 2446 0x7f01480a9b20 ERROR vaapidecode ../../../gstreamer-vaapi-0.5.9/gst/vaapi/gstvaapidecode.c:397:gst_vaapidecode_push_decoded_frame: video sink rejected the video buffer (error -1)
    0:00:01.296521994 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:01.296674163 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:01.296741011 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:01.296784167 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:01.296819473 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    0:00:01.297095664 2446 0x16920f0 FIXME bin gstbin.c:4023:gst_bin_query: implement duration caching in GstBin again
    /run/media/piotr/luggage
    On higher levels output gets really long and I don't know, if it useful.

  • Mplayer doesn't play video in text console

    I am trying to use mplayer in my text-based console/terminal without the X window system. When I play a video, the sound is fine but the video output just shows a few text characters moving and that's it, no video. Is there something I must type after the mplayer command or set a certain preference for graphics/video?
    My xorg.conf file has:
    Driver "intel"
    VendorName "Intel Corporation"
    BoardName "82810E DC-133 (CGC) Chipset Graphics Controller"
    And the output for mplayer -vo help is:
    MPlayer SVN-r30526-4.4.3 (C) 2000-2010 MPlayer Team
    Available video output drivers:
    vdpau VDPAU with X11
    xv X11/Xv
    x11 X11 ( XImage/Shm )
    xover General X11 driver for overlay capable video output drivers
    gl X11 (OpenGL)
    gl2 X11 (OpenGL) - multiple textures version
    matrixview MatrixView (OpenGL)
    dga DGA ( Direct Graphic Access V2.0 )
    sdl SDL YUV/RGB/BGR renderer (SDL v1.1.7+ only!)
    fbdev Framebuffer Device
    fbdev2 Framebuffer Device
    aa AAlib
    caca libcaca
    v4l2 V4L2 MPEG Video Decoder Output
    xvidix X11 (VIDIX)
    cvidix console VIDIX
    null Null video output
    xvmc XVideo Motion Compensation
    mpegpes MPEG-PES to DVB card
    yuv4mpeg yuv4mpeg output for mjpegtools
    png PNG file
    jpeg JPEG file
    gif89a animated GIF output
    tga Targa output
    pnm PPM/PGM/PGMYUV file
    md5sum md5sum of each frame
    142 audio & 332 video codecs
    Does anyone know what I should do?
    Last edited by ih23 (2010-02-13 17:39:38)

    Here is the output for "mplayer -v -vo fbdev":
    CPU vendor name: GenuineIntel max cpuid level: 2
    CPU: Intel(R) Celeron(TM) CPU 1400MHz (Family: 6, Model: 11, Stepping: 1)
    extended cpuid-level: 4
    Detected cache-line size is 32 bytes
    Testing OS support for SSE... yes.
    Tests of OS support for SSE passed.
    CPUflags: MMX: 1 MMX2: 1 3DNow: 0 3DNowExt: 0 SSE: 1 SSE2: 0 SSSE3: 0
    Compiled with runtime CPU detection.
    get_path('codecs.conf') -> '/home/isaias/.mplayer/codecs.conf'
    Reading /home/isaias/.mplayer/codecs.conf: Can't open '/home/isaias/.mplayer/codecs.conf': No such file or directory
    Reading /etc/mplayer/codecs.conf: 142 audio & 332 video codecs
    Configuration: --prefix=/usr --enable-runtime-cpudetection --disable-gui --disable-arts --disable-liblzo --disable-speex --disable-openal --disable-fribidi --disable-libdv --disable-musepack --disable-esd --disable-mga --enable-xvmc --language=all --confdir=/etc/mplayer --extra-cflags=-fno-strict-aliasing
    CommandLine: '-v' '-vo' 'fbdev' 'Gods and Generals CD 01 of 02.avi'
    init_freetype
    Using MMX (with tiny bit MMX2) Optimized OnScreenDisplay
    get_path('fonts') -> '/home/isaias/.mplayer/fonts'
    Using nanosleep() timing
    get_path('input.conf') -> '/home/isaias/.mplayer/input.conf'
    Can't open input config file /home/isaias/.mplayer/input.conf: No such file or directory
    Parsing input config file /etc/mplayer/input.conf
    Input config file /etc/mplayer/input.conf parsed: 90 binds
    Setting up LIRC support...
    mplayer: could not connect to socket
    mplayer: No such file or directory
    Failed to open LIRC support. You will not be able to use your remote control.
    get_path('Gods and Generals CD 01 of 02.avi.conf') -> '/home/isaias/.mplayer/Gods and Generals CD 01 of 02.avi.conf'
    Playing Gods and Generals CD 01 of 02.avi.
    get_path('sub/') -> '/home/isaias/.mplayer/sub/'
    [file] File size is 1342103508 bytes
    STREAM: [file] Gods and Generals CD 01 of 02.avi
    STREAM: Description: File
    STREAM: Author: Albeu
    STREAM: Comment: based on the code from ??? (probably Arpi)
    LAVF_check: AVI format
    AVI file format detected.
    list_end=0x228A
    ======= AVI Header =======
    us/frame: 33366 (fps=29.971)
    max bytes/sec: 0
    padding: 0
    MainAVIHeader.dwFlags: (2320) HAS_INDEX IS_INTERLEAVED TRUST_CKTYPE
    frames total: 202520 initial: 0
    streams: 2
    Suggested BufferSize: 1048576
    Size: 640 x 360
    ==========================
    list_end=0x10F0
    ==> Found video stream: 0
    [aviheader] Video stream found, -vid 0
    ====== STREAM Header =====
    Type: vids FCC: XVID (44495658)
    Flags: 0
    Priority: 0 Language: 0
    InitialFrames: 0
    Rate: 30000/1001 = 29.970
    Start: 0 Len: 202520
    Suggested BufferSize: 1048576
    Quality -1
    Sample size: 0
    ==========================
    Found 'bih', 40 bytes of 40
    ======= VIDEO Format ======
    biSize 40
    biWidth 640
    biHeight 360
    biPlanes 1
    biBitCount 24
    biCompression 1145656920='XVID'
    biSizeImage 691200
    ===========================
    Regenerating keyframe table for MPEG-4 video.
    list_end=0x217E
    ==> Found audio stream: 1
    [aviheader] Audio stream found, -aid 1
    ====== STREAM Header =====
    Type: auds FCC: (1)
    Flags: 0
    Priority: 0 Language: 0
    InitialFrames: 0
    Rate: 1225/32 = 38.281
    Start: 0 Len: 258684
    Suggested BufferSize: 12288
    Quality -1
    Sample size: 0
    ==========================
    Found 'wf', 30 bytes of 18
    ======= WAVE Format =======
    Format Tag: 85 (0x55)
    Channels: 2
    Samplerate: 44100
    avg byte/sec: 16000
    Block align: 1152
    bits/sample: 0
    cbSize: 12
    mp3.wID=1
    mp3.fdwFlags=0x2
    mp3.nBlockSize=1152
    mp3.nFramesPerBlock=1
    mp3.nCodecDelay=1393
    ==========================================================================
    list_end=0x4F8E468C
    Found movie at 0x2296 - 0x4F8E468C
    Reading INDEX block, 461204 chunks for 202520 frames (fpos=1334724244).
    AVI index offset: 0x2292 (movi=0x2296 idx0=0x4 idx1=0xA22)
    Auto-selected AVI video ID = 0
    Auto-selected AVI audio ID = 1
    AVI: Searching for audio stream (id:1)
    XXX initial v_pts=0.100 a_pos=0 (0.000)
    AVI video size=1222794219 (202520) audio size=108119353 (258684)
    VIDEO: [XVID] 640x360 24bpp 29.970 fps 1447.6 kbps (176.7 kbyte/s)
    Auto-selected AVI audio ID = 1
    [V] filefmt:3 fourcc:0x44495658 size:640x360 fps:29.970 ftime:=0.0334
    get_path('sub/') -> '/home/isaias/.mplayer/sub/'
    using /dev/fb0
    Can't open /dev/fb0: No such file or directory
    Error opening/initializing the selected video_out (-vo) device.
    ==========================================================================
    Opening audio decoder: [mp3lib] MPEG layer-2, layer-3
    dec_audio: Allocating 4608 + 65536 = 70144 bytes for output buffer.
    mp3lib: using SSE optimized decore!
    MP3lib: init layer2&3 finished, tables done
    MPEG 1.0, Layer III, 44100 Hz 128 kbit Joint-Stereo, BPF: 417
    Channels: 2, copyright: No, original: Yes, CRC: No, emphasis: 0
    AUDIO: 44100 Hz, 2 ch, s16le, 128.0 kbit/9.07% (ratio: 16000->176400)
    Selected audio codec: [mp3] afm: mp3lib (mp3lib MPEG layer-2, layer-3)
    ==========================================================================
    Building audio filter chain for 44100Hz/2ch/s16le -> 0Hz/0ch/??...
    [libaf] Adding filter dummy
    [dummy] Was reinitialized: 44100Hz/2ch/s16le
    [dummy] Was reinitialized: 44100Hz/2ch/s16le
    Trying every known audio driver...
    ao2: 44100 Hz 2 chans s16le
    audio_setup: using '/dev/dsp' dsp device
    audio_setup: using '/dev/mixer' mixer device
    audio_setup: using 'pcm' mixer device
    audio_setup: sample format: s16le (requested: s16le)
    audio_setup: using 2 channels (requested: 2)
    audio_setup: using 44100 Hz samplerate (requested: 44100)
    audio_setup: frags: 16/16 (4096 bytes/frag) free: 65536
    AO: [oss] 44100Hz 2ch s16le (2 bytes per sample)
    AO: Description: OSS/ioctl audio output
    AO: Author: A'rpi
    Building audio filter chain for 44100Hz/2ch/s16le -> 44100Hz/2ch/s16le...
    [dummy] Was reinitialized: 44100Hz/2ch/s16le
    [dummy] Was reinitialized: 44100Hz/2ch/s16le
    Video: no video
    Freeing 3 unused video chunks.
    Starting playback...
    Increasing filtered audio buffer size from 0 to 65536
    Uninit audio filters...9.7 (23:10:19.7) 1.0%
    [libaf] Removing filter dummy
    Uninit audio: mp3lib
    vo: x11 uninit called but X11 not initialized..

Maybe you are looking for

  • Wicd connects to Wired fine but is unable to connect to wireless

    I don't think I have changed anything, but now wicd will not connect to any wireless network (Stuck at optaining IP address, or Verifying association if I use static ip, and then, without saying a specific error, quits connecting and goes back to not

  • Images from SD card not showing on OS X

    I am in an issue that is a bit of a pain for my workflow. I explain first what I do so I will avoid questions about the origin of the cause (if I can). I am using CHDK (a firmware hack for P&S Canon cameras) to shoot time lapses over several days. So

  • I cant buy gems on coc

    I Cant buy gems on clash of clans. It said "your purchase could not be completed,please contact your itunes support." i'm still waiting response from apple. can you guys tell me what should i do and whats wrong with my account? I have the balance but

  • Apple TV remote (left button) switches the TV input mode

    Often when I click the left button on my Apple TV remote while using the Apple TV, the TV (LED 1080p 60hz) switches to the analogue mode. I've tried to alter the settings, however I'm unable to remedy the problem. Any suggestions would be gladly acce

  • Interactive lists from ALV

    Hi experts, Please tell me how to generate Interactive list from ALV. I have already created interactive list without ALV ( using AT LINE SELECTION)