Video scrubbing iOS 8

http://youtu.be/ZKgRsZDUt8s
if u watch this video It is the same problem I have and It is annoying I've reported this to apple a few times before the updates Of 8.0.2 and 8.1 and still no fix

Hi, 
Thank you for visiting Apple Support Communities.  
I understand you are experiencing an issue with your iPhone restarting and a native app unexpectedly closing.  Here are the steps that I recommend for this issue.  
iOS: Not responding or does not turn on
http://support.apple.com/kb/TS3281
Cheers,
Jason H.

Similar Messages

  • Video Scrubbing in 5.1.4

    Hi All!
    I recently set up a Mac Pro, fully loaded with fast drives (4 internal 750GB sata drives + 2TB external fiber array) and plenty of Ram (4GB) and a Kona 3 card for a client of mine. Everything is working great - realtime playback of 720p footage at 60fps, fast renders, etc... Everything except for one tiny issue:
    Video scrubbing.
    When the client scrubs through the clips in the timeline it is a crap-shoot as to whether or not the canvas will show the video scrubbing. Half the time, approximately, it works - and then it doesn't work the other half of the time. I've never quite had a problem like this. The problem occurs independently of the resolution, framerate, or rendered status of the footage.
    Anyone else had this issue? Have a solution? I'd love to get to the bottom of this.
    Thanks!
    - Nick

    Hey All - Thanks for all the input, I'll be headed back to the client location to check out his setup on Monday and try out some of your suggestions. Just to rule some things out, the video is set to 100% magnification and it's not bigger than the canvas window, so I don't think that's the issue. There are no overlapping windows, I've set up a few custom window arrangements and they're all pretty basic. The client has two 23" displays, and one of them is just used primarily for the Canvas, the others are used for the timline, viewer and file browser. The client is very good about using window arrangements I've set up for him and the one time he showed the issue to me in person I can say for sure there was no overlapping. Also, I ran all available updates to the OS and software, but I don't think that AJA has released a new driver since FCP 5.1.4 came out - I'll check. I think the most likely candidate is the high quality scrubbing, I'll play arounf with that on Monday.
    Thanks for the great input everyone,
    - Nick

  • How to "trim original" video in iOS?

    When iOS first came out I remember there being an option to "trim original" video where the entire video would be replaced with only the part that you wanted to keep (the trimmed parts of the video would be deleted permanently). You also had the option to "save as new clip" which would keep both the original video and a new file with the trimmed parts removed.
    Where has the "trim original" feature gone? It does not show up in the latest version of iOS 8 but it is still referenced in the iPhone User Guide for iOS (see attached picture).
    The picture below shows the options I get when attempting to trim a video in iOS 8. You can see that the only option I get is to save as a new clip.

    I think I just figured out the answer... If iCloud Photo Library is turned on, I only get the option to save as a new clip. Thus, trimming video creates two files that take up cloud storage (for which Apple charges if you want more than 5 GB). If I disable iCloud Photo Library, the option to trim original returns. If this is intentional on Apple's part, it is very clever of them to try to get people to fill up their iCloud storage faster. Of course you just go back and delete the original if you don't want it, but this extra step seems unnecessary when Apple operating systems are supposed to be "intuitive" and "just work."
    Apple, please add the "trim original" feature for those who have enabled iCloud Photo Library. There is no reason this should be any different with iCloud Photo Library enabled other than to try to trick people into filling up their iCloud storage (and subsequently paying for more) faster.

  • Live Streaming H.264 Video on iOS using AIR

    We would like to build an AIR app that plays Streaming H.264 Live/VOD videos that would work through AIR on the iOS platform.
    I've seem some traffic on the forums that RTMP will work to iOS - but additionally heard that video applications that use RTMP streams will be rejected by the Apple App store.
    I have seen that progressive H.264 will work - but that's not streaming or live.
    HLS would work if we use the StageWebView object; however, that provides us little control/monitoring over the video inside of it; and it's not "really" integrated as a video player.
    For OSMF there seems to be a 3rd-Party plugin which will allow OSMF to read HLS streams - but (from what I've heard) is incomplete because it doesn't play adaptive nor is it completely updated for OSMF 1.6.1.
    I would love to be wrong here - but is there currently a way to play a Streamed H.264 Video to iOS that is non-RTMP?
    I've seem little information as to if F4M streamed files played via OSMF will work on iOS.
    Thanks for the info in advance.
    -Will

    I pasted a stripped down version of my test app below, that attempts to playback an m3u8 file. This works for me on an IPad2.
    Remember to test on the device itself otherwise wont work.
    Dependencies:
    1. Air 3.1
    2. OSMF 1.6.1
    3. Flex SDK 4.6.0
    renderMode="direct"
    HTH
    - Abey
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:mx="library://ns.adobe.com/flex/mx"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   backgroundAlpha="0"
                   backgroundColor="#000000"
                   addedToStage="onViewActivate(event)"
                   applicationDPI="160">
        <fx:Script>
            <![CDATA[
                private var nc:NetConnection;
                private var ns:NetStream;
                private var video:Video;
                private var currentVidUrl:String;
                protected function onViewActivate(event:Event):void
                    nc = new NetConnection();
                    nc.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus, false, 0, true);
                    nc.addEventListener(SecurityErrorEvent.SECURITY_ERROR, onSecurityErrorHandler, false, 0, true);
                    currentVidUrl = "http://fmsserver/hls-vod/sample.mp4.m3u8";
                    nc.connect(null);
                private function onNetStatus(evt:NetStatusEvent):void
                    switch (evt.info.code) {
                        case "NetConnection.Connect.Success":
                            ns = new NetStream(nc);
                            var client:Object = {};
                            client.onMetaData = onMetaData;
                            client.onCuePoint = onCuePoint;
                            client.onBWDone = onBWDone();
                            ns.client = client;
                            nc.client = client;
                            var v:Vector.<StageVideo> = stage.stageVideos;
                            if (v.length >= 1) {
                                var stageVideo:StageVideo = v[0];
                                stageVideo.viewPort = new Rectangle(0, 0, mediaContainer.width, mediaContainer.height);
                                stageVideo.attachNetStream(ns);
                            else {
                                video = new Video();
                                video.width = mediaContainer.width;
                                video.height = mediaContainer.height;
                                mediaContainer.addChildAt(video,0);
                                video.attachNetStream(ns);
                            if (currentVidUrl) {
                                ns.play(currentVidUrl);
                            break;
                        case "NetStream.Publish.BadName":
                            break;
                        default:
                            break;
                private function onSecurityErrorHandler(event:SecurityErrorEvent):void
                protected function onMetaData(item:Object):void
                protected function onCuePoint(item:Object):void
                protected function onBWDone():void
            ]]>
        </fx:Script>
        <mx:UIComponent id="mediaContainer"
                        height="100%"
                        width="100%"/>
    </s:Application>

  • HT201302 How to importing personal photos and videos from iOS devices to my computer with Windows 8?

    myHow to importing personal photos and videos from iOS devices to  computer with Windows 8?
    Nothing indicating iPhone 4s folder for images and videos in Win 8 anymore after plugged in USB cable to PC with the iPhone 4s. Nothing pop up anymore asking if I want to backup photos  / videos to my PC (used to pop up in Win 7).
    Where can I find this folder in iPhone 4s?
    Thks!!

    You can do it via your computer's iTunes. If you are on iTunes 11 on your computer then you may want to re-enable the left-hand sidebar via View > Show Sidebar (option-command-S on a Mac, control-S on a PC), which might make it easier to navigate and my instructions may make more sense.
    To sync photos, connect and select your iPad on the left-hand side of your computer's iTunes (if you've enabled the sidebar), and on the right-hand side there should be a series of tabs, one of which should be Photos - if you select that tab you can then select which photo folders to sync to the iPad. There is a bit more info on this page. You will need to sync all the photos that you want on the iPad together in one go as only the most recent photo sync remains on the iPad - synced photos can't be deleted directly on the iPad, instead they are deleted by not including them in the next photo sync.
    If you haven't enabled the sidebar, then from your library click 'iPad' at the top right of the screen and you should get a series of buttons along the top of the screen, including one for Photos

  • Ios 8 Video Scrubbing

    Running IOS 8.1. I have an issue when using safari. When a video plays, you cant see how much of the video has loaded. There no longer is a scrubbing bar. Once the video has reached the point of where it hasn't loaded to, the video is set into a loop. It will loop the last couple of seconds and never resume playing the video. This happens with all different sites. The frame freezes and never resumes. I end up having to stop the video and try restarting from the point that it stopped at. This is the most frustrating update on IOS 8. This needs to be fixed immediately.

    I Believe it's an iOS 8 problem. Didn't have that in iOS 7. It's super annoying. maybe apple is trying to help the service provider earn more money. Cause like in Singapore we only have 4gb data contract. So without the loading bar, u would think that the video is fully downloaded and play video. And u start using more data. Also another big problem, if u use safari, and u tab a link and go to another tab, when u return to the tab, it will refresh. What I notice, comparing previous safari settings, there was a cache but with iOS 8 safari did without the cache, so that u will need to refresh and use more data. this in turn would use alot more data thus helping service provider make more money. Starting to make me hate iphone. apple better fix it soon... It's starting to annoy me and i hope it starts to annoy everyone so that our voice could make a difference.

  • Video Scrubbing Issues

    I'm just wondering if anyone is experiencing issues with scrubbing through videos in iOS5. It doesn't work most of the time and it seems to want to pull down the notification center when I scrub back and forth. Seems to happen in both portrait and landscape though it's a lot more finicky in landscape. Maybe I just have fat fingers, but it's pretty much made it impossible to scrub through videos for me. Also, the bar disappears after I'm scrubbing for a few seconds. It lets me continue scrubbing, but I don't know exactly where I am since the bar disappears.

    I have the same problem. I'm not sure yet, but It seems to help if you use your fingernail or press quickly with your finger perpendicular to the screen (or nearly so). But I don't have the problem where the bar disappears after a few seconds. But I have iOS 5.0.1.
    So you and I and a friend of mine are the only ones who find the scrubbing control for video a lot harder to activate? And then there's the battery-drain issue. And you can't downgrade! And performance took a hit (not a biggie though, as video plays fine -- just rotating and switching and stuff sometimes sticks).
    Shopping for a smartphone now. I'll not be getting an iPhone.
    Can anyone out there help us?
    Bonus gripe: The search function for Apple discussion boards is bizarre. Why does it search everything when you've already focused on a particular board? You have to narrow down your search by re-running it and re-selecting the "community" you want. Illogical -- sort of.
    AEF

  • How can I prevent the Videos in iOS 8 from automatically playing the next episode of a TV Show?

    I noticed that, after updating my iOS device from iOS 7 to 8, that when it's finished playing a TV Show episode in the Videos app, it begins playing the next one. I like to fall asleep, listening to a single episode knowing that it'll stop and eventually let my iPad fall asleep, but with this change in iOS 8, it will play through the rest of season before doing so.

    Thanks.
    I noticed you bolded "Apple-branded apps" from the first sentence of section 2 (c).
    What is the definition of "Apple-branded" in this context?
    For example, "Apple Watch" is now a preinstalled app, and would seem to fit the definition of "Apple-branded", but I can't uninstall it.
    Ingo2711 wrote:
    Not all apps can be removed, for example Safari, iWatch, Weather,... they all come with the iOS software. Only some apps made by Apple that are available in the AppStore can be removed again, if preinstalled on your iPhone 6, for example Pages, Garageband and some others.
    You can remove those and install them later again by downloading them again for free.
    (c)To the extent that Apple has preinstalled Apple-branded apps from the App Store on your iOS Device at the time of purchase (“Preinstalled Apps”),

  • How to add a video on another video and make it as single video in ios ?(as if like skype)

    I have a new kind of requirement, I have two videos I want to add first video full screen and second video as thumbnail at some corner on that video.and make this as a single video.as like in skype.
    can any one please help me how to do that.thanks in advance

    For a limited time Apple will allow you to downgrade to 7.1.2.  Hurry do not wait.
    See brownox second post here:
    Are there known problems with hdmi screen display and iOS 8?
    and
    http://www.gottabemobile.com/2014/09/17/downgrade-ios-8-to-ios-7/

  • "Optimize video for IOS" in Keynote doesn't appear to work

    I am trying to add video clips (.mov files from my Aperture library) into a Keynote presentation for later use on an iPad.  When I do so by dragging from Aperture to Keynote, with the "Optimize for IOS" box in Keynote Preferences checked as is recommended in the article "HT6153: Keynote for Mac: Optimizing your presentation for iOS compatibility" a blank slide is added to Keynote. When I click on the slide & look at the file info under "Movie", it indicates that there is an .m4v file in the blank space. 
    If I do the same operation with the box unchecked, a slide with the .mov file is added & can be viewed both on my Mac mini & on my iPad (via iCloud).
    Am I missing something or is this a bug?

    My video files are in an Aperture library.  Looking at the file info provided in Aperture, it says that the video files are already H.264 format, but 1080p resolution not 720p as indicated is optimum in the Keynote Preferences>Generel>Adding Movies checkbox.  There is no CODEC info that I can find. 
    The thing that is confusing is that if I start with the box not checked & drag a video file into Keynote, a message pops up that says I should check the box.  When I do that, the file that I dragged in continues to display correctly, but subsequent files do not.  If I uncheck the box, any file that I drag in displays correctly.  Any file that displays correctly on my Mac mini also works on my iPad.
    Since things seem to work if I ignore the error message, I am inclined to leave well-enough alone & not to go thru the delete-reinstall process, unless you think that there is a good reason to do so.

  • Apple DRM video error iOS 8

    I upgraded my iPad to iOS 8.01. I am no longer able to view apple store purchased video via the Seagate Media application. https://itunes.apple.com/au/app/seagate-media/id431912202?mt=8
    Previously when I tapped on a store bought video it would switch to Safari and I could proceed to watch the video. Under iOS 8 I now get a Mobile Safari DRM error and a suggestion that I authorize the iPad. I can confirm that I can view apple video through the standard videos application and that the iPad is authorized.
    I have attempted to report the issue to Seagate however I note that on their app store details page of the Seagate Media application they have the following entry:
    What's New in Version 2.7.2.2 Posted sep 30, 2014
    Due to issues in iOS 8, iTunes purchased videos cannot be played. We have reported this issue to Apple. Please help us by contacting Apple to raise the priority.
    I am therefore, according to Seagate, at the mercy of Apple for this issue to be resolved. Is it possible for this issue to be addressed soon? I can only assume that other 3rd party providers have encountered similar issues.
    thanks,

    Ok I guess I should have realised that Apple doesn't moderate these forums.
    As far as Seagate is concerned they are clearly indicating that they believe that Apple has made a change to iOS which is not solvable within their application. The Seagate app exists because it links to their Wireless Plus Hard drive, this allows streaming of videos from the HDD to the iOS device and as indicated previously where it is an itunes video the seagate app would switch to Safari to play the file. Has anyone experienced similar issues with like applications? eg Corsair Voyager Air?

  • Problems when editing videos in IOS 8.02

    I recorded a slowmotion video with a moving train the other day; but when I wanted to edit it, I couldn't like I used to. I wanted to cut the first seconds out because of shaking image, but when I tried doing that, it also cut the ending; I couldn't pull it all the way to the end and play it. I have an iPhone 6 Plus, and don't know if it is a problem with the phone or IOS 8.02.

    contacts, photos and messages - yes (in fact I am able to send and receive messages without issue)
    music & apps - no
    The problem is when I try to access the iphone using iTunes on my pc, I am unable to drag and drop music or apps onto the iphone, and when I click on the iphone icon, I am greeted with the "welcome to your new iphone" screen, only giving me the option of registering it as a new iphone, or restoring from a backup!

  • Turning on/off the flash while is recording a video in iOS 6 with an iPhone 4?

    As the title says, from iOS 6 the turn on and turn off flash while I'm recording a video is gone.
    I have an iPhone 4, but I think the problem is with the iPhone 4S too.
    Could someone confirm that is a "new feature" of the magical and beautiful iOS 6? (sarcastic)
    Thanks

    Sorry for being insistent, but are you sure that you can turn it on and off WHILE you're recording the video??? Since I'm able to enable or disable it before start recording, after that, the opcion in the corner disappears.

  • Why does Safari refuse to play videos when iOS does

    Safari 6.01 on my iMac refuses to play videos. It will play Flash.
    Is it because of location although they play on iOS.

    Many web servers adapt the content they serve to the client that requests it. That's all I can tell you based on the information you've provided.

  • How to brighten video in IOS apps

    Hello,
    I am trying to brighten some video shot on an Iphone 5 and edit on an Ipad 3.  Is there an app that has this function in it.  IMovie does not nor does Filmic or Pinnacle.  Is this not possible in IOS apps?
    Thanks in advance.

    Hey Michael,
    Where i am going to find the correct third-party development tools forum for apple.

Maybe you are looking for

  • DTS and DD 5.1

    I just purchased a Yamaha 1500 a/v receiver and hooked it up to my dual G5 with a monster toslink cable. I can get audio if i play the dvd in DD 5.1 using DVD Player, but i get no sound when trying to use DTS.... what gives? I was hoping to be able t

  • Date Part or Format Date

    Hi, I have a datetime column in the universe. The format of the date is "mm/dd/yyyy hh:mm:ss when users run report they only want to see the format as MON-YYYY. what syntax shall I use can anybody help.

  • My new Macbook Pro 13 keeps minimizing full screen applications and sending me back to the desktop. Any Help?

    I can't stay in full screen applications without being returned to the desktop within 30 seconds. Is anyone else experiencing this problem or can assist I am testing it without running any applications other than safari in full screen. It act like it

  • Is XMP import/export for MOV/MTS/MP4 files not supported?

    I have been evalutating LR4 and am stuck on how to import my files from another DAM into LR4. I am able to write XMP into JPG files, and provide sidecar XMP files for RAW (CR2) and MOV/MP4/MTS files, writing my hierarchical keyword information into t

  • Safari quits suddenly

    I was enjoying my Mac for without crashes for a while. But recently, my Safari would just quit suddenly or unexpectedly. All the tabs and windows will be closed. Should I open safari, the tabs opened on the last window will still be there though. Any