VOD resume play useless

The issue I'm having is with video on demands "resume play". When we stop a program part of the way through, and try to attempt to go back and watch the rest of it, it starts it over from the beginning most of the time. Every once in a while it will remember where we last stopped watching and resumes play correctly, but most of the time it does not. This is very annoying when we're watching a VOD show on a program that does not allow fast forwarding because we are forced to either start over and rewatch the whole show or just not waste our time with it any longer. Please fix this issue as it has become a major annoyance with our service with Verizon..

I have always disliked the term "VOD" because it really isn't. It is more like "what is on the menu". Just like a restaurant, you only get to choose what is on the menu, not anything at anytime. For a truer VOD experience, and one that is technically more reliable than the poor implementation of VZ, I have begun to use my laptop to stream to my TV, and I have purchased a ROKU device as well. Both provide a very satisfying experience with surprisingly good picture quality, even for standard definition fare. High definition is available depending on content and the provider. I have not yet gotten a subscription to Netflix or Hulu Plus, but they have a lot of HD material. There is a lot to choose from many providers that is free, and the ROKU people are partnering with both free and subscription providers. As an Amazon Prime member, I also get a lot of free movies and TV shows from that source. This is a whole new adventure in entertainment options, with lots of choices and a level of satisfaction not provided by VZ. I am not affiliated with Amazon or ROKU other than as a client.

Similar Messages

  • Why does my VOD movie, after pause timeout, never Resume Play but always starts over?

    Two years, if I have to go to the bathroom and pause, I've been experiencing the issue that my VOD movie NEVER! resumes.  It always starts over.
    Any fixes Verizon?  
    Can't pause your 16 bucks a month HD DVR for VOD or Resume Play after pause timeout.  How is there even a pause timeout?  
    I know this is a flame but I'm tired of the **bleep** and if anyone has a fix I'd love to hear it.

    Oops, Brian - I accidentally clicked the "this solved my question" button. No offense, but it didn't - not yet.
    By "reset," mean it played for literally a few seconds, then dumped out of the movie and went back to the selection screen (in Netflix, this would be the screen with the movie description and Play button; in just the AppleTV interface, that would refer to the movie list with the chosen film highlighted, ready to hit SELECT to start it).
    Sometimes, if I selected again (or hit Play), the movie would return where it left off (or within a few seconds to a few minutes of the scene). But other times, it would just jump back to the start of the movie, regardless of where I'd been when it dumped back to the menu.
    Tonight, I tried something else, just to see if my wireless router is to blame: I patched a CAT-5 cable directly to the AppleTV from the router (same one that's doing the WiFi routing; it has four ethernet ports on the back). Netflix played flawlessly. HD all the way, no downressing to SD (or worse), no audio dropouts, no returns-to-menu. Since I don't have a long enough CAT-5 to reach the iMac, I have no easy way to test whether that would solve the iTunes Home Sharing issues I've been having. But just getting clean playback from Netflix tells me the wireless router is suspect here.
    The hunt for answers continues.

  • HBO VOD not resuming play

    If we pause while watching HBO video on demand for more than 5 minutes, it returns to the selection screen - which is fine. One of the options is to "Resume Play", but when we select that, it does not resume play from where we paused. Instead, it just goes back to the very beginning (including the advertisements/previews of other shows)....and it only allows 2x fast forward speed to get back to where you left off.
    I called tech support, and after resetting my box, and discussing whether a new DVR box would help, I was told that this is a "known issue" with "no fix". The only  hope is that the technology will some day allow this.
    This is annoying, but I can accept this...except:
    1) why have a "resume play" button when you can't actually "resume"?
    2) given this technological limitation, why not at least enable 8x fast forward?
    3) this is not an issue when we watch live tv and pause for long periods of time - nor is it an issue when we watch any streaming things through Roku - so obviously the technology is available and in use, even with Fios (unless there is some difference between streaming live TV versus on-demand shows).
    We subscribed to HBO just so we could watch some of the older shows and series that we can access on demand. However, the frustration at not being able to pause/play makes this much less attractive and we are reconsidering our HBO subscription.

    If you search the forums for VOD resume you'll find a number of threads about this issue.  In at least one of those threads a Verizon employee announced a new software roll-out to correct the issue and then announced the new software didn't fix the problem after all.
    This is indeed a known problem.  Personally, I use VOD to rent movies but I've stopped doing that until the resume issue is correct.  It ruins the experience if you can't answer a phone call, or take a potty break, etc. etc., without having to start a movie from the beginning.
    It can't hurt to reboot/reset your STB but I'll be very (and pleasantly) surprised if it helps in this situation.

  • IPod no longer resumes play where last paused

    After the 3.0 update, I've noticed that after pausing the iPod and then using the phone for other things, it will no longer resume play where I last paused. For example, I shuffle almost 100% of the time I play music. If I pause the music to surf the internet or otherwise do other things on the iPhone, when I go back to play music, it is no longer paused on the last song it was playing ("Now Playing" should be displayed on upper right corner), but now starts a new shuffle; i.e., no previous songs played.
    Has anybody else noticed this?

    Hi!
    I can confirm, that the playback problem, where iPod starts at the beginning of the first song on your iPhone, still exists with OS3.1. I have written my second feedback to Apple regarding this issue, one for 3.0 and one for 3.1.
    I do have playlists in use, but I dont believe, that they have something to do with this issue.
    If you also have the same problem, please leave a feedbac on http://www.apple.com/feedback.
    Thanks, bye
    Michael

  • Is it possible to resume play from any point on the progress bar in FLV player

    Is there a way to allow a user to move playhead to any point on the progress bar (including much ahead of the loaded portion of the movie) and resume play from there?
    Presently a user can skip ahead only as far as the download happened.
    Just in case there is no conflict with my set up, here is the code I have:
    import fl.video.VideoProgressEvent;
    stop();
    close_btn.addEventListener(MouseEvent.CLICK, onClick_GoBackToHowTo2);
    function onClick_GoBackToHowTo2(event:MouseEvent) :void {
              gotoAndPlay("howto");
    SWF_flv2.addEventListener(Event.REMOVED_FROM_STAGE,stopF2);
    function stopF2(e:Event):void{
    SWF_flv2.stop();
    SWF_flv2.closeVideoPlayer(1);  // actually, you can execute this after the stream completes, too so there's no need to check.
              play_btn.addEventListener(MouseEvent.CLICK, onClick_Play);
              function onClick_Play(event:MouseEvent) :void {
                        SWF_flv2.play();
    SWF_flv2.addEventListener(VideoProgressEvent.PROGRESS,progressF);
    function progressF(e:VideoProgressEvent):void{
    if(e.bytesLoaded == e.bytesTotal){
    trace(e.bytesLoaded,e.bytesTotal);
    SWF_flv2.play();
    SWF_flv2.activeVideoPlayerIndex=1;  //this assigns the player index
    SWF_flv2.visibleVideoPlayerIndex=1; //this assigns the player index
    SWF_flv2.source = sourceVar;  //source must come after assigning the index/s
    SWF_flv2.play(); //starts buffering the sourceVar
    SWF_flv2.stop(); //starts buffering the sourceVar

    Besides kglad's excellant response, there is also the option to use "http pseudostreaming".
    This will also give you the ability to "seek" to sections of a video file which are not yet downloaded. It is typically cheaper than using FMS or RED5, but still may require that you have a dedicated server account (which is much more expensive than a shared server account). But check with your Web host, some offer pretty good options for enabling http pseudostreaming:
    http://flowplayer.org/plugins/streaming/pseudostreaming.html
    Best wishes,
    Adninjastrator

  • No resume play function in Netflix and other issues

    1. No "resume play" function in Netflix?
    2. Music playlists in alpha order only
    3. Netflix hangs on loading when trying to play second video in a row; have to go out completely
    4. Long list of music playlists takes 2-3 minutes to load; sometimes list flashes then disappears; when backtracking from song, complete list of playlists will not appear; keeps reverting to song selection
    5. Am able to play Netflix movie at 720p, unlike with my PS3

    PS. pardon the typos, i meant:
    So apparently everyone but me has a resume play button in netflix. how come i'm missing it, and how do i get it? please help!

  • Music resuming play with on/off button

    Hi,
    Im only new to flash and am creating a website. I have an
    on/off music button which is a record turning. I have figured out
    how to make the record and music stop and start when the record is
    clicked. ie. the record stops turning when the music is off and the
    record starts moving again when the music starts. The only problem
    is that the music starts from the beginning again, is does not
    start where it was stopped.
    In order to do this I created three layers in the main
    timeline. One titled music, one titled turntableBTN and the other
    titled actions.
    I called frames 1-10 of the actions layer "on" and frames
    11-21 "off. I put a stop(); action on frame 1 and frame 11.
    On the music layer, frames 1-10 the music was imported with a
    sync of start, and at frame 11-21 I wrote the sync to be stop.
    The turntableBTN layer was also split from frame 1-10 and
    frames 11-21.
    The scripting for the turntableBTN frames 1-10 is
    on (release) {
    gotoAndStop("off");
    on (release) {
    _root.soundstatus="off"
    record.gotoAndPlay("stop_record");
    and the scripting from frame11-21 is
    on (release) {
    gotoAndStop("on");
    on (release) {
    _root.soundstatus="on"
    record.gotoAndPlay("start_record");
    I hope this makes sense to someone. I just need to know how
    to make the music resume play where it left off and not go back to
    the beginning again. Any help would be greatly appreciated.
    Thanx

    Hello Frederic,
    I think I can see what is going wrong.
    In the bottom loop, you keep writing 'Filtered Signal' to your file regardless of whether it has changed value. This is why when you play it back you get looping sound.
    If I was you, I wouldn't worry about saving to file in a separate loop. If you did want to do this, you would have to implement some kind of queue based producer/consumer architecture. (this may still be necessary if writing to file takes too long)
    That aside, see that attached example for how you could go about it. (I haven't connected everything up just shown the idea). You need to be careful to not to create the file on every loop iteration - I think I have avoided this but you will need to check it!
    Let me know if this helps
    Regards,
    Nick C.
    Cardiff University
    Attachments:
    Audio-1.vi ‏74 KB

  • Why has the "resume play" feature never worked on rented on demand movies.

    I've had Fios for over 2 years now and have been generally happy, but there is one feature that is driving me and my family crazy! The resume play on rented movies does not work, has never worked, and from reading these forums Verizon has no fix for it. It's been a known issue and it boggles my mind that it can't be fixed. When will there be a fix?

    This problem seems to have been known to Verizon for several years.  I just completed a Live Chat with a Verizon representative and was told "This should be resolve in few days.".    Is this the standard response Verizon has been providing their customers over the past few years when questioned about the problem?  When I questioned why it's taken so long, I was told "It was resolved in between but there were few settings that were still suppose to be changed and they are working on it. "  If Verizon spent as much time actually fixing the problem as they have in addressing all the inquiries that have been made about the problem, this issue, most likely, could have been resolved a long time ago.  Enough excuses.  Let's have a solution!

  • My iPod nano screen is frozen and will not respond. It shows the song which was playing is paused, but will not resume playing. I have held down all controls, and changed the slide switch, but nothing happens

    my iPod nano screen is frozen and will not respond. It shows the song which was playing is paused, but will not resume playing. I have held down all controls, and changed the slide switch, but nothing happens

    Hi Goofy Goat,
    Welcome to the Apple Support Communities!
    It sounds like you have done some great troubleshooting for your iPod nano that is not responding. In this situation, if resetting it did not resolve, I would suggest restoring the iPod back to its factory settings and then sync your content back onto it from iTunes. Please use the following article as a resource for restoring.
    Restoring iPod to factory settings
    http://support.apple.com/kb/HT1339
    Have a great day,
    Joe

  • Missing "resume play" option in Netflix (apple tv)

    Sp apparently everyone bu me has a resume play button in netflix?? how vome i'm missing it, and how do i get it? pleas help!

    PS. pardon the typos, i meant:
    So apparently everyone but me has a resume play button in netflix. how come i'm missing it, and how do i get it? please help!

  • I lose audio viewing a show and have go to resume play to get audio back

    i lose audio viewing a show and have to go resume play to get audio back on

    Hey gmurphy,
    The following article includes steps to troubleshoot the issue:
    Apple TV (2nd and 3rd generation): Troubleshooting audio issues
    http://support.apple.com/kb/TS5150
    I would check it out and see if any of the suggestions resolve the issue.
    Welcome to Apple Support Communities!
    All the best,
    Delgadoh

  • Netflix/Apple TV should have a "resume play" option...let's make it happen!

    Netflix's Roku Box is cheaper and has a "resume playback" button which holds your place when you watch a movie and want to revisit at a later time. With apple tv, you have to start allllll the way from the beginning and fast forward to where you left off (if you even remember where you left off). I am beginning to regret buying apple tv and think the apple team should update the software to include a resume play option so that it holds your place where you left off.
    If anyone else agrees, let's tell the feedback peeps we want it added, otherwise why not just buy a cheaper roku box??!!!
    Here's a link, if enough of us write, they WILL listen:
    http://www.apple.com/feedback/appletv.html

    lexiben wrote:
    Netflix's Roku Box is cheaper and has a "resume playback" button which holds your place when you watch a movie and want to revisit at a later time. With apple tv, you have to start allllll the way from the beginning and fast forward to where you left off (if you even remember where you left off). I am beginning to regret buying apple tv and think the apple team should update the software to include a resume play option so that it holds your place where you left off.
    If anyone else agrees, let's tell the feedback peeps we want it added, otherwise why not just buy a cheaper roku box??!!!
    Here's a link, if enough of us write, they WILL listen:
    http://www.apple.com/feedback/appletv.html
    Netflix on Apple TV definitively has resume playback option. Actually the same "resume playing / start from beginning" than the renting from iTunes store on the Apple TV. Don't know why you haven't seen it.

  • How do I turn off the resume play spot on my ipod

    Hello,
    Can anybody help me with this. I use my ipod for our multimedia/band shows for running the backing track and video stuff. I need to turn off the resume play spot... I need the songs/videos to always start at the beggining and not where it was last stopped. Is there a preference function that can be accessed to turn this feature off?
    Many thanks,
    Nick.

    Songs should not be doing it. I am not sure about videos since I don't play them.
    In iTunes select the song or video. Choose Get Info from the File menu. Click on the Options tab. Make sure Remember Playback Position is unchecked.

  • Resume Play with Mu

    I purchased a MuVo 28 MB yesterday online (it is marked USB 2.0 on the outside of the package). I misunderstood that it was different than the NX model. Before I open the package, I would like to know if, with the firmware upgrade that I see is available, or in its nati've configuration, the player resumes play after you stop during a long MP3 file. I want to use it for radio programs, podcasts and audiobooks. I see that the NX and TX models can do that.
    It appears from what I see online that before the firmware upgrade the model that I bought did not work that way. But I cannot tell if that applies to the model I purchased, or if the behavior changes after the upgrade. I do not see an answer in the online forums.
    Thanks.

    <SPAN>
    <SPAN>I saw your post, and though I have a Muvo N200, I think I have the same doubt. When switching between folders (for example audiobook to music album) I'd like that the player remembers where I was in that folder. For music it's OK (even though I always hear the beginning of an album...), but for audiobooks, it's annoying having to forward through the files and inside the file to where I left off.
    <SPAN>I believe this is what you're asking about. So I can tell you that as far as I know, the Muvo N200 does not bookmark the place it stopped inside a folder. Perhaps someone else can tell us if i'm overlooking anything.

  • [svn:osmf:] 14600: Fix for FM-463 (DVR: Video doesn' t resume playing after record is resume).

    Revision: 14600
    Revision: 14600
    Author:   [email protected]
    Date:     2010-03-05 08:02:05 -0800 (Fri, 05 Mar 2010)
    Log Message:
    Fix for FM-463 (DVR: Video doesn't resume playing after record is resume).
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-463
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/net/dvr/DVRCastTimeTrait.as

    Hey Igor, Welcome to the Nokia Forums!
    Sorry that you have been experiencing problems with the video playback, have you tried performing a soft reset yet? This will not remove any data, only reset the device settings back to how they where when new.
    To perform a soft reset firstly create a backup using Nokia Suite, then type in *#7780# in your phone and the security code 12345 by default if prompted.
    If it does not work, you could also try and download a video playing app from Nokia Store to see if video playback functions better on it.
    I hope this has helped!
    Sheldrick 
    Press the 'Accept As Solution' icon if I have solved your problem, Kudos my post if my advice has helped you!

Maybe you are looking for

  • 5G iPod Crashes when it gets cool

    I was using my iPod outdoors in 40 degree weather. I had left it sitting on my deck for about half an hour, so it had time to get to ambient temp. I was able to go through the menus and choose a song, but when I hit play, the screen immediately went

  • No matching record found when creating Incoming Payment...

    Hi, I'm starting a transaction, creating a invoice and then creating a incoming payment. The invoice is created successfuly in memory I can see the next DocEntry and DocNum and passing it to the incoming payment as usual but I'm getting the error : N

  • Problem inserting audio track into timeline

    Sorry, I'm a newbie, and I'm sure this is a dumb question -- but I can't seem to answer it myself. Working with the latest Windows CS6 update and 1080/60p video from my Panasonic AVCHD camcorder, I find the only way I can move a clip from the Source

  • SAP Kernel update

    Hi all I updated my kernel from 160 to 175 When i log into SAP and execute SM51 it still shows 160 as the kernel patch level ???????? The SAR files are correct because i used the same files to update DEV and QA. and the same process. The serve is not

  • How to get macbook pro to work with a canon wft-e6 wireless file transmitter

    I recently purchased a Canon WFT-E6 wireless file transmitter for my 1DX Canon Camera. I can't find a way to set up my Notebook Pro to work with this device. Has anyone run into the same issue? and if so do you have a solution?