Related to youtube

look sir i have recently upgraded my firefox to 7 version..previously i was using the version 4 and my youtube website was working finely..lately after upgrading none of the videos play and no icon of play or pause can be seen where as the same plays in an IE 8 and the videos play there and so for that reason i tried even clearing my clear recent history and also update all my addons and just that my addon of microsoft .net framework assistance 1.2.1 says it is disabled....and also shows as microsoft .net framework assistance 1.2.1 is incompatible with firefox 4.0.1

https://itunes.apple.com/us/app/skyfire-web-browser-your-path/id384941497?mt=8
http://www.guidingtech.com/16698/play-flash-videos-iphone-ipad-ipod-touch/

Similar Messages

  • Why won't any videos load from safari that are not related to YouTube work?

    I'm trying to load video replies from ask fm but they are not loading, and it's the same with all other videos that aren't related to YouTube. Is there some sort of software or programme that I need to download?

    https://itunes.apple.com/us/app/skyfire-web-browser-your-path/id384941497?mt=8
    http://www.guidingtech.com/16698/play-flash-videos-iphone-ipad-ipod-touch/

  • Built In application "YouTube" Is Way too slow!

    Hey guys, I'm new here btw, so hi to all.
    When i watch videos on youtube built in app IT TAKES FOREVER! to buffer the videos, I'm using WI-FI and my net connection is 20mb, I would love to use it but it just takes toooooo long to buffer it would take me 4-5 minute to watch a one minute clip, Any help you'll be my new idol!
    The strange this is though, on my computer they load in literally seconds if not instantly are are completely buffered in under 5 seconds for almost any video, yet i could hardly watch a 2 minute youtube video, it buffers then 20 seconds later it stops and it won't supering buffer, i press play nothing happens, it just like it either WAYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY too slow or it stops buffering completely, all i know is with youtube being such a big feature, it is almost useless by the terrible coding, or what ever the problem is to make it soo slow, i hear so much people talking about youtube and there iphone but mine is just too painfully slow to watch(and no 100% not my connection)

    Is there any youtube settings??? Can any setting be changed which relate to youtube? And is it possible to watch youtube through safari and not through the standard application?
    NO, there are no settings. Flash will not play in Safari yet, but there is a workaround using VideoHamster.
    Here are a couple of Flash YouTube videos on my server that I converted to QT with CosmoPod. How do they load for you? I have a 1M up cable connection. They should start loading and playing after a few seconds. YouTube videos start playing after about 5 seconds on mine.
    http://bmer.servemp3.com/test/
    Dave M.
    MacOSG Founder/Ambassador  An Apple User Group  iTunes: MacOSG Podcast
    Creator of 'Mac611 - Mobile Mac Support' (designed exclusively for an iPhone/iPod touch)

  • Youtube's video layout does not appear properly when using Firefox.

    [http://img.photobucket.com/albums/v344/Hoofbeats/Picture1-2-1-1.png]
    This is what Youtube videos look like when I watch them; the option buttons normally under the video are now hidden by the video. They are still clickable, but pretty much unviewable. This only appears when I'm using Firefox.
    I'm on Firefox 3.6.12, and on Mac 10.5.8. My plugins for flash and such are all up to date, and I disabled any add-ons relating to Youtube to see if they were effecting it. No results.

    this is caused by kwiclick. disable that addon and it's fixed.
    kwiclick adds the little icons on top of the video that pushes it down, covering the lower buttons and viewcount. you can see the icons in OPs picture.

  • Play a YouTube video in JavaFX?

    Moderator action: deleted rant and cleaned up what remains.
    I am trying to make this code play an FLV video, and it doesn't show any video. Only Music. How can I convert, for instance, a YouTube video, to play in JavaFX? If I download a YouTube video, how can i encode it?
    package musica;
    import javafx.application.Application;
    import javafx.beans.property.ObjectProperty;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.layout.GridPane;
    import javafx.scene.layout.StackPane;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaErrorEvent;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaView;
    import javafx.scene.text.Font;
    import javafx.scene.text.FontPosture;
    import javafx.stage.Stage;
    import javafx.util.Duration;
    import javax.swing.Action;
    import javax.swing.JFileChooser;
    import javax.swing.JOptionPane;
    //import javafx.io.http;
    * @author André Lopes
    public class Musica extends Application {
        public MediaPlayer MP;
        public Media Media;
        public static String URL;
        public static JFileChooser JFC;
        public static Duration currentTime;
        public MediaView mediaView;
        //Main
        public static void main(String[] args) {
            launch(args);
        public Musica()
         currentTime = Duration.ZERO;
         mediaView= new MediaView(MP);
           URL = "";
         //URL = "http://download.oracle.com/otndocs/products/javafx/oow2010-2.flv";
        @Override
        public void start(Stage primaryStage) {
            primaryStage.setTitle("Hello! This is Yours Music Player!");
            //Botão Play
            Button Play = new Button();
            Play.setText("Play");
            Play.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent event1) {
                    Media = new Media(URL);
                    MP = new MediaPlayer(Media);
                    MP.setStartTime(currentTime);
                    mediaView.setMediaPlayer(MP);
                    MP.play();
                    System.out.println("?"+ MP.getStatus());
                    mediaView.setOnError(new EventHandler<MediaErrorEvent>() {
                    @Override
                    public void handle(MediaErrorEvent arg0) {
                                System.out.println("MP.getStatus: " + MP.getStatus());
            //Botão Hello World
            //Botão pra escolher Musica
            Button SelctFileButton = new Button();
            SelctFileButton.setText("Music Chooser/Finder:");
            SelctFileButton.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                  public void handle(ActionEvent arg0) {
                    System.out.println("Java File Chooser Opened");
                    JFileChooser search = new JFileChooser();
                    search.showDialog(search,URL);
                    URL = search.getSelectedFile().toURI().toString();
                    System.out.println("URL:"+URL);
           //Botão para pausar;
           Button Pause = new Button();
           Pause.setText("Pause");
           Pause.setFont(Font.font(null, FontPosture.ITALIC,15));
           Pause.setOnAction(new EventHandler<ActionEvent>() {
           @Override
                public void handle(ActionEvent arg0) {
                try {
                    currentTime = MP.getCurrentTime();
                    MP.pause();  
                    }catch(java.lang.NullPointerException e)
                     System.out.println("java.lang.NullPointerException \n");  
                     System.out.println("Error: Unable To pause! May happens if you didnt have a music Playing!");  
           //Botão Para Continuar;
           Button Continue = new Button();
           Continue.setText("Continue/UnPause");
           Continue.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent arg0) {
                   //MP.setStartTime(currentTime);
                   MP.pause();
            //Grid ! Layout
            GridPane grid = new GridPane();
            StackPane root = new StackPane();
            grid.setHgap(2);
            grid.setHgap(2);
            grid.setVgap(2);
            Scene Scene = new Scene(root,500,500);
            root.getChildren().add(grid);
            root.getChildren().add(mediaView);
            //Scene.getStylesheets().add(Musica.class.getResource("Musica.css").toExternalForm());
            //grid.getStyleClass().add(Musica.class.getResource("Musica.css").toExternalForm());
            primaryStage.setScene(Scene);
            primaryStage.show();
            //Adicionando Botoes no Grid
            grid.add(Play,10,10);
            grid.add(SelctFileButton,11,10);
            grid.add(Pause,10,11);
    }Edited by: 932269 on 06/05/2012 20:36
    Edited by: 932269 on 06/05/2012 20:37
    Edited by: EJP on 8/05/2012 12:02

    After the question title has been cleaned up, I can see now that it relates to youtube video playback.
    Just embed the youtube html5 video player in a webview and stream video from youtube.
    This will work for videos that youtube has made compatible with their html5 player (about 30% it seems).
    Here is a sample embedding a youtube hosted trailer uploaded by sony pictures.
    import javafx.application.Application;
    import javafx.scene.*;
    import javafx.scene.web.WebView;
    import javafx.stage.Stage;
    public class YouTubePlayer extends Application {
      public static void main(String[] args) throws Exception { launch(args); }
      @Override public void start(final Stage stage) throws Exception {
        final WebView webView = new WebView();
        webView.getEngine().loadContent(
          "<iframe width=\"640\" height=\"390\" src=\"http://www.youtube.com/embed/IyaFEBI_L24\" frameborder=\"0\" allowfullscreen></iframe>"
        stage.setScene(new Scene(webView, 660, 410));
        stage.show();
    }If you have any questions, you can read more about youtube embedding here: https://developers.google.com/youtube/player_parameters

  • Since May 9th 2012, youtube video download in Safari doesn't work

    Anyone else found that downloading music and video files in Safari by right clicking the file in the activity pane in Safari now doesn't work?
    The downloader add-ons in Firefox still fine...

    Yes, I am also having this problem but it seems to be just related to YouTube.
    Other video sites e.g. Vimeo is fine.
    Any thoughts?

  • Flash and YouTube Issue - fullscreen 1080p freezes computer

    Here's what's happening. If I go on YouTube and try to watch a video in 1080p in full screen, it will play fine for about 5-10 seconds or so, but then the video slows for half a second and then freezes, while the audio plays for a few seconds after the video freezes. Then, a few seconds after the video freezes, the audio stops playing as well. At this point, I go to a terminal by hitting Ctrl+Alt+F1 and issue a "pkill x" command, which "restarts" the computer and brings me back to the login screen.
    I've tried disabling hardware acceleration and adding "OverrideGPUValidation=1" to /etc/adobe/mms.cfg, but they doesn't work. The freezing still happens.
    I am on Arch 64-bit, with flashplugin 64-bit latest version (11.2.202.238-1).
    Also, another issue relating to YouTube's flash player: How can I keep the font on the player the same? It alternates from time to time between an ugly wider font and a much nicer-looking narrower font.

    Bump? This is still happening.

  • Safari 3 - after latest YouTube update, safari crashes when rolling over...

    ...a video thumbnail. Everything else works perfectly.
    Before anyone starts recommending I upgrade, I am aware of this, I just literally can't stand Safari 4's UI. It's appalling.
    I was just wondering does anyone know exactly why this is happening? It's specifically related to video thumbnails - as soon as you move your mouse off a thumbnail the browser crashes. I can paste the code here if you like. I have the latest security updates and the latest flash, this problem is specifically related to YouTube's April 1 layout changes.
    The error I get is EXCBADACCESS. I won't post the big block of text in here unless someone asks me to.
    BTW, I am also aware that this may not be fixable, it's curiosity as much as anything else. I'd love to know how something as simple as a video thumbnail with a little hover "arrow" on it can crash the entire browser...

    Apologies, thought that was the lot!
    First of all, there's no problem whatsoever with streaming flash. The browser ONLY crashes when I hover over a video thumbnail - a little arrow appears in the bottom right hand corner, as it's supposed to - and when I roll the mouse off the thumbnail again (the arrow is meant to revert back to showing the video time) safari just exits suddenly and immediately.
    Crash log:
    Host Name: Macbook1337
    Date/Time: 2010-05-11 03:32:58.087 +0100
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [58]
    Version: 3.2.3 (4525.28.3)
    PID: 462
    Thread: Unknown
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x59e97bbd
    Backtrace not available
    Unknown thread crashed with X86 Thread State (32-bit):
    eax: 0x167a1eef ebx: 0x903350e2 ecx: 0x17bc5200 edx: 0x00010001
    edi: 0x005ca910 esi: 0x15f05aa0 ebp: 0xbfffd5d8 esp: 0xbfffd5c0
    ss: 0x0000001f efl: 0x00010212 eip: 0x90335142 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    Host Name: Macbook1337
    Date/Time: 2010-05-11 04:57:15.752 +0100
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [58]
    Version: 3.2.3 (4525.28.3)
    Build Version: 3
    Project Name: WebBrowser
    Source Version: 45252803
    PID: 468
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0xa18bb2bd
    Thread 0 Crashed:
    0 com.apple.CoreGraphics 0x90335142 CGGStackRestore + 108
    1 com.apple.CoreGraphics 0x9033509a CGContextRestoreGState + 67
    2 com.apple.AppKit 0x932cb5e0 PSgrestore + 145
    3 com.apple.WebKit 0x94d7f348 -[WebHTMLView drawSingleRect:] + 500
    4 com.apple.WebKit 0x94d7f118 -[WebHTMLView drawRect:] + 366
    5 com.apple.AppKit 0x93305e91 -[NSView _drawRect:clip:] + 3228
    6 com.apple.AppKit 0x93304373 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1273
    7 com.apple.WebKit 0x94d9f7b0 -[WebHTMLView(WebPrivate) _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 334
    8 com.apple.AppKit 0x93304b21 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    9 com.apple.AppKit 0x93304b21 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    10 com.apple.AppKit 0x93304b21 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    11 com.apple.AppKit 0x93304b21 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    12 com.apple.AppKit 0x93304b21 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    13 com.apple.AppKit 0x93304b21 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    14 com.apple.AppKit 0x93304b21 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    15 com.apple.AppKit 0x93304b21 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    16 com.apple.AppKit 0x93303658 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 290
    17 com.apple.AppKit 0x93302e42 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 523
    18 com.apple.AppKit 0x9330276e -[NSView displayIfNeeded] + 439
    19 com.apple.AppKit 0x93302512 -[NSWindow displayIfNeeded] + 168
    20 com.apple.Safari 0x0001edc1 0x1000 + 122305
    21 com.apple.AppKit 0x93352798 _handleWindowNeedsDisplay + 206
    22 com.apple.CoreFoundation 0x9082dce2 __CFRunLoopDoObservers + 342
    23 com.apple.CoreFoundation 0x9082cd84 CFRunLoopRunSpecific + 827
    24 com.apple.CoreFoundation 0x9082ca42 CFRunLoopRunInMode + 61
    25 com.apple.HIToolbox 0x92e01878 RunCurrentEventLoopInMode + 285
    26 com.apple.HIToolbox 0x92e00eb9 ReceiveNextEventCommon + 184
    27 com.apple.HIToolbox 0x92e00dd9 BlockUntilNextEventMatchingListInMode + 81
    28 com.apple.AppKit 0x93286f45 _DPSNextEvent + 572
    29 com.apple.AppKit 0x93286b37 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
    30 com.apple.Safari 0x00007507 0x1000 + 25863
    31 com.apple.AppKit 0x932808c4 -[NSApplication run] + 512
    32 com.apple.AppKit 0x93274820 NSApplicationMain + 573
    33 com.apple.Safari 0x000a97b2 0x1000 + 690098
    34 com.apple.Safari 0x000a96d9 0x1000 + 689881
    Thread 1:
    0 libSystem.B.dylib 0x90009817 machmsgtrap + 7
    1 com.unsanity.ape 0xc0001d48 _apeagent + 307
    2 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90009817 machmsgtrap + 7
    1 ...lagutin.audio_hijack.server 0x004083ca ahservloop + 108
    2 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x90024407 semaphorewait_signaltrap + 7
    1 com.apple.WebCore 0x94fd7fbc WebCore::ThreadCondition::wait(WebCore::Mutex&) + 24
    2 com.apple.WebCore 0x94fd2f59 WebCore::IconDatabase::syncThreadMainLoop() + 243
    3 com.apple.WebCore 0x94f8d7da WebCore::IconDatabase::iconDatabaseSyncThread() + 180
    4 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 4:
    0 libSystem.B.dylib 0x90009817 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d227 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082ca42 CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x928585da +[NSURLCache _diskCacheSyncLoop:] + 206
    4 com.apple.Foundation 0x927fbcfc forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 5:
    0 libSystem.B.dylib 0x90009817 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d227 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082ca42 CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x9283139c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 259
    4 com.apple.Foundation 0x927fbcfc forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 6:
    0 libSystem.B.dylib 0x90019d0c select + 12
    1 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 7:
    0 libSystem.B.dylib 0x90024407 semaphorewait_signaltrap + 7
    1 com.apple.Foundation 0x92851c60 -[NSConditionLock lockWhenCondition:] + 39
    2 com.apple.Syndication 0x9a43079e -[AsyncDB _run:] + 181
    3 com.apple.Foundation 0x927fbcfc forkThreadForFunction + 123
    4 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 8:
    0 libSystem.B.dylib 0x90047927 semaphoretimedwait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x90ce1e60 TSWaitOnSemaphoreCommon + 163
    2 ...ple.CoreServices.CarbonCore 0x90ce8e40 TimerThread + 87
    3 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 9:
    0 libSystem.B.dylib 0x90009817 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d227 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082ca42 CFRunLoopRunInMode + 61
    3 com.apple.audio.CoreAudio 0x91469356 HALRunLoop::OwnThread(void*) + 158
    4 com.apple.audio.CoreAudio 0x91469171 CAPThread::Entry(CAPThread*) + 93
    5 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 10:
    0 libSystem.B.dylib 0x90009817 machmsgtrap + 7
    1 ...romedia.Flash Player.plugin 0x1b23dbc4 FlashPlayer10_0_45_2FlashPlayer + 2207972
    2 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 11:
    0 libSystem.B.dylib 0x90024407 semaphorewait_signaltrap + 7
    1 ...romedia.Flash Player.plugin 0x1b01444f 0x1ad36000 + 3007567
    2 ...romedia.Flash Player.plugin 0x1b02dccf FlashPlayer10_0_45_2FlashPlayer + 45551
    3 ...romedia.Flash Player.plugin 0x1b0148ff 0x1ad36000 + 3008767
    4 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 12:
    0 libSystem.B.dylib 0x90024407 semaphorewait_signaltrap + 7
    1 ...romedia.Flash Player.plugin 0x1b01444f 0x1ad36000 + 3007567
    2 ...romedia.Flash Player.plugin 0x1b02dccf FlashPlayer10_0_45_2FlashPlayer + 45551
    3 ...romedia.Flash Player.plugin 0x1b0148ff 0x1ad36000 + 3008767
    4 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 13:
    0 libSystem.B.dylib 0x90047927 semaphoretimedwait_signaltrap + 7
    1 com.apple.audio.CoreAudio 0x914765a4 CAGuard::WaitFor(unsigned long long) + 212
    2 com.apple.audio.CoreAudio 0x914764c6 CAGuard::WaitUntil(unsigned long long) + 66
    3 com.apple.audio.CoreAudio 0x91474e42 HP_IOThread::WorkLoop() + 690
    4 com.apple.audio.CoreAudio 0x91474b8b HPIOThread::ThreadEntry(HPIOThread*) + 17
    5 com.apple.audio.CoreAudio 0x91469171 CAPThread::Entry(CAPThread*) + 93
    6 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 14:
    0 libSystem.B.dylib 0x90047927 semaphoretimedwait_signaltrap + 7
    1 ...romedia.Flash Player.plugin 0x1b014381 0x1ad36000 + 3007361
    2 ...romedia.Flash Player.plugin 0x1b06994b FlashPlayer10_0_45_2FlashPlayer + 290411
    3 ...romedia.Flash Player.plugin 0x1b0148ff 0x1ad36000 + 3008767
    4 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 15:
    0 libSystem.B.dylib 0x90024407 semaphorewait_signaltrap + 7
    1 ...romedia.Flash Player.plugin 0x1b1ab39f FlashPlayer10_0_45_2FlashPlayer + 1607871
    2 ...romedia.Flash Player.plugin 0x1b174cdb FlashPlayer10_0_45_2FlashPlayer + 1384955
    3 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 16:
    0 libSystem.B.dylib 0x90024407 semaphorewait_signaltrap + 7
    1 ...romedia.Flash Player.plugin 0x1b1ab39f FlashPlayer10_0_45_2FlashPlayer + 1607871
    2 ...romedia.Flash Player.plugin 0x1b174cdb FlashPlayer10_0_45_2FlashPlayer + 1384955
    3 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x2862acaf ebx: 0x903350e2 ecx: 0x15fbacd0 edx: 0x00010001
    edi: 0x005c9f20 esi: 0x15f96640 ebp: 0xbfffd5d8 esp: 0xbfffd5c0
    ss: 0x0000001f efl: 0x00010216 eip: 0x90335142 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0x1c1fff com.apple.Safari 3.2.3 (4525.28.3) /Applications/Safari.app/Contents/MacOS/Safari
    0x405000 - 0x40ffff alexlagutin.audiohijack.server 1.4.0 /Library/Application Enhancers/Instant Hijack Server.ape/Contents/MacOS/Instant Hijack Server
    0x15e6a000 - 0x15e6afff com.apple.SpotLightCM 1.0 (121.36) /System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
    0x1761c000 - 0x1761ffff com.apple.Tokenizer_ja 1.0.2 /System/Library/CoreServices/Tokenizers/ja.tokenizer/Contents/MacOS/ja
    0x1ab16000 - 0x1ab1bfff com.apple.audio.AppleHDAHALPlugIn 1.3.7 (1.3.7a23) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1ad36000 - 0x1b370fff com.macromedia.Flash Player.plugin 10.0.45.2 (1.0.4f458472) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x1c4b0000 - 0x1c51dfff com.DivXInc.DivXDecoder 6.6.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x232f3000 - 0x232f7fff com.apple.locale.textbreak.thai 1.0.2 /System/Library/LocalePlugins/ThaiTextBreak.localePlugin/Contents/MacOS/ThaiTex tBreak
    0x25fb2000 - 0x25fb4fff com.apple.AutomatorCMM 1.0.1 (88.2) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x25fb8000 - 0x25fbcfff com.apple.FolderActionsMenu 1.3.1 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x70000000 - 0x700fafff com.apple.audio.units.Components 1.4.7 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4afff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.85 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.11 (368.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.31 (682.32) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91008000 - 0x91047fff com.apple.CFNetwork 129.24 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9105a000 - 0x9106afff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91075000 - 0x910f4fff com.apple.SearchKit 1.0.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112e000 - 0x9114cfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91158000 - 0x91166fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91169000 - 0x91308fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91406000 - 0x9140efff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91415000 - 0x9141cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x91420000 - 0x91446fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91458000 - 0x914cefff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151f000 - 0x9151ffff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91521000 - 0x9154dfff com.apple.AE 316.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91560000 - 0x91634fff com.apple.ColorSync 4.4.13 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166f000 - 0x916e2fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91710000 - 0x917b9fff com.apple.QD 3.10.28 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917df000 - 0x9182afff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91849000 - 0x9185ffff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9186b000 - 0x91886fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91891000 - 0x918cefff com.apple.LaunchServices 183.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918e2000 - 0x918eefff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f5000 - 0x91935fff com.apple.ImageIO.framework 1.5.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91948000 - 0x919fafff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a40000 - 0x91a56fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a5b000 - 0x91a79fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7e000 - 0x91addfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aef000 - 0x91af3fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af5000 - 0x91b7dfff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b81000 - 0x91b9cfff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91ba1000 - 0x91ba3fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91ba5000 - 0x91c83fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91ca0000 - 0x91cdffff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91ce5000 - 0x91ce5fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91ce7000 - 0x91d75fff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d7c000 - 0x91d7cfff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d7e000 - 0x91dd7fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91de0000 - 0x91e04fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e0c000 - 0x92215fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9224f000 - 0x92603fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92630000 - 0x9271dfff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x9271f000 - 0x9279dfff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927de000 - 0x92a16fff com.apple.Foundation 6.4.12 (567.42) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b36000 - 0x92b4dfff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b58000 - 0x92bb0fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92bc4000 - 0x92bc4fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bc6000 - 0x92bd6fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92be5000 - 0x92bedfff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bf3000 - 0x92bf9fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bff000 - 0x92c90fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92ca4000 - 0x92ca8fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92cab000 - 0x92cc9fff com.apple.openscripting 1.2.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cdb000 - 0x92ce1fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92ce7000 - 0x92d4afff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d71000 - 0x92db2fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dd9000 - 0x92de7fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dee000 - 0x92df3fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92df8000 - 0x930edfff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931f3000 - 0x931fefff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93203000 - 0x9321efff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9326e000 - 0x9326efff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93270000 - 0x93926fff com.apple.AppKit 6.4.10 (824.48) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93ca7000 - 0x93d22fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d5b000 - 0x93e14fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e57000 - 0x93e57fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e59000 - 0x9401afff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94060000 - 0x940a1fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x940a9000 - 0x940e3fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940e8000 - 0x940fefff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94198000 - 0x941d6fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x9421a000 - 0x9422bfff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94239000 - 0x94277fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94293000 - 0x942a2fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x942a9000 - 0x942b4fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94300000 - 0x9431afff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94320000 - 0x9463ffff com.apple.QuickTime 7.6.4 (1327.73) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x947c7000 - 0x9490dfff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94999000 - 0x949a8fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x949af000 - 0x949d8fff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x949de000 - 0x949edfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x949f1000 - 0x94a16fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94a22000 - 0x94a3ffff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94d6b000 - 0x94e1dfff com.apple.WebKit 4525.28 (4525.28.3) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94e88000 - 0x94f4ffff com.apple.JavaScriptCore 4525.26 (4525.26.2) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x94f8b000 - 0x9557efff com.apple.WebCore 4525.28 (4525.28.4) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95fbb000 - 0x95fd1fff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x95fd3000 - 0x95ff4fff libKoreanConverter.dylib /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x96001000 - 0x9600ffff libSimplifiedChineseConverter.dylib /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x96017000 - 0x96029fff libTraditionalChineseConverter.dylib /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x960eb000 - 0x960effff com.apple.LanguageAnalysisCore 1.0.3 /System/Library/PrivateFrameworks/LanguageAnalysisCore.framework/Versions/A/Lan guageAnalysisCore
    0x969d4000 - 0x969d4fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x970af000 - 0x970b4fff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x97451000 - 0x97465fff com.apple.audio.CoreAudioKit 1.0.1 /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x983ff000 - 0x992f6fff com.apple.QuickTimeComponents.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9a42d000 - 0x9a464fff com.apple.Syndication 1.0.8 (56.1) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9a480000 - 0x9a492fff com.apple.SyndicationUI 1.0.8 (56.1) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x9ff45000 - 0x9ffe5fff com.apple.QuickTimeImporters.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0xc0000000 - 0xc000efff com.unsanity.ape 2.0.3 /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r

  • Safari and youtube problems

    Ok...so i've had this problem before and i ended up uninstalling safari which turned out to be a bigger mistake until someone helped me to find the right download to restore it...but anyway since restoring the problem i'm about to describe hadn't come up until the last few days...so i'll describe it again here....
    The problem seems to be directly related to youtube...but only with safari, as i've started using firefox (my back up browser) again when the problem comes up and i simply don't have the problem then....only with safari...so hopefully someone can help me troubleshoot and resolve the issue.
    The problem starts with a general freezing of safari, but only when i'm watching a youtube video...and directly on youtube....in other words, embeded youtube videos at other sites don't seem to be an issue, but sometimes, not always and not on every video if i pull it up on youtube.com, the video screen remains a stagnant black...not thinking wheel or sound or static or anything, just a dead black window with no  volume or any other controls.
    So when i go to my subscriptions for excample, there are certain videos that that happens when i go to the vid page....i back out and retry and have tried to reload the page, etc, but to no avail....just a dead black screen.  But then i can try the next video and it will work fine.....and the issue seems consistent with the same videos, tho those videos collectively are random...meaning not from the same poster, or not under a certain resolution setting or anything like that...so as an example, if video A and B and C play fine, then i get to video D and it doesn't work.....then A and B and C always work, and D always does not.....  that's after shutting down safari  and reopening it...after shutting down the computer and restarting it....the issue is persistent on whichever vids had th problem to begin with...so then i thought let's test with another browser and see what happens....it almost seems like those video's flash is not working...but only those specific videos and only on Safari...
    So then i pull up firefox and they all play fine, noooo problem...period....no problem on firefox....so i've determined it somethin to do with Safari...but the what and the how to fix are my problem....has anyone else experienced this and maybe know how i can at least find an error log or something that i can post here it will help someone to help me fix it?
    running safari 5.1.7 on os 10.6.8
    Any help thqt isn't telling me to retry the things i've already tried here is greatly welcome and will get the Helpful button and hopefully teh problem solved button.  Thanks!

    sorry, did a search and nothting came up for some reason, but as i posted i see posts on the right that sound like my problems so i'm tryin them as i see them and updating my question accordingly.....said to turn off extensions...and that was my first solution the last time this happened, and they have never since been turned on....so they are already off....so that's not helping either...

  • Youtube videos stalling

    Over the past several weeks I've been getting horrible performance from youtube videos on my MacBook Pro running 10.6.8.   The videos will stall after a short time and they may or may not resume on their own.   I have observed this when using Safari, Firefox, Chrome, and Opera browsers.   I have also observed the same stalling when running a browser within a Parallels virtual machine.   I have reinstalled Chrome with no improvement.   I have switched from wireless to wired network connections with no difference.   I observe that the network transfers displayed on Activity Monitor show received data going to zero and just hanging there.   Sometimes if I change the quality of the youtube video then playback may resume.   Sometimes if I click my cursor just prior to the current youtube playback indicator the video may also start up again for a while.
    I also have a Mac Mini on my network and it doesn't seem to have these same stalling problems with youtube videos.
    I've searched and found that others are having similar problems but I haven't found any solutions that seem to work for me.   It seems to me that if the same stalling is observed across all browsers then there should be a problem more fundamental than just something with the browser.
    I'd appreciate suggestions for things to try other than reinstalling a browser or clearing caches.
    Thanks.

    Well, I took the suggestion to try another network and the results looked promising for a while.  But then I started to get the same stalling of youtube video streams that I had on my home network.  So, I started my search for solutions again.  After numerous google searches with keywords related to youtube and slow connections I came across several discussion threads dealing with Verizon throttling youtube streams.  The investigation was done by folks with  much more networking experience than me.  If  you'd like to read one of these threads you can find it at http://www.reddit.com/r/technology/comments/13kmvd/have_time_warner_internet_but _can_barely_stream/
    The gist of this thread was that it was possible to block some IP addresses that supplied youtube video from cache sites on the Internet, and restore the source of the youtube video stream to google servers.  I tried blocking the two IP address ranges discussed (206.111.0.0 - 206.111.255.255 and 173.194.55.0 - 173.194.55.255) on my Verizon wireless router and my video streaming quality improved a fair amount.  I was able to stream videos at 720p and 1080p - which I wasn't able to do previously.   I wasn't sure how the addresses to block were determined but they seemed to work.  I did a bit more searching and found another post related to Verizon throttling at http://treworld.com/thoughts/youtube-slow-verizon-fios-may-fix-it/.    This last problem description added another address range to block (173.194.7.0 - 173.194.7.255) so I thought I'd give it a try.   This last change made a huge difference in the streaming rate that I was getting.  The new rates were easily over 2Mbps, much higher than I had before.
    I'll have to keep an eye on the connection speeds to see if they remain high, but for now I'm very pleased with the results.   I have seen some reports that the IP addresses of the youtube cache sites seemed to change.   If this is the case then it would make this IP blocking technique a constant guessing game.   I'd like to hear if others get any benefit in streaming performance from youtube using this technique.  I’d also like to find out if there is some way to determine the specific IP addresses that need blocking for specific areas of the country.

  • Getting error message when trying to access video on my iPad

    Hi this is my first time on this site so bear with me if I do the wrong thing.
    Here goes  I have read through some of the answers to the question but mostly they seem to related to YouTube.  My question relates to my iPad.  I get an error message when trying to view a video which I synced from my macbook pro.  The message reads "You do not have permission to access the requested resource"  The question is how do I get permission. Has anyone got an answer would be much appreciated.

    Hi this is my first time on this site so bear with me if I do the wrong thing.
    Here goes  I have read through some of the answers to the question but mostly they seem to related to YouTube.  My question relates to my iPad.  I get an error message when trying to view a video which I synced from my macbook pro.  The message reads "You do not have permission to access the requested resource"  The question is how do I get permission. Has anyone got an answer would be much appreciated.

  • Best practices re: video - external or embedded?

    I am in the process of creating my second volume of a multimedia iPad book "Play Piano For Kids" and was wondering if it would make sense to have my video be external.  As more and more people buy multimedia books that are quite large, I wouldn't want my 1GB book to be a deterrent to purchase.  Also, as I plan on having a third volume as well, these would take up too much space on even my own iPad 2.
    Has anyone published with external video?  What was your experience?  Does Apple have restrictions on where you host it?
    I'm thinking of hosting the video on Amazon S3 as the pricing seems reasonable.
    Thoughts?
    thanks in advance
    Andrew Ingkavet

    There are a few older threads dealing  with this question..
    Although you mention Amazon, (amazed Apple let it through! because they  usually dont accept a book till links to  Amazon and others are removed) ,  most  questions relate to YouTube...  this thread may help you.
    https://discussions.apple.com/message/22882313#22882313
    Let us know how you get on... it helps others to know.

  • DMZ not working for EA6300

    Hello, my linksys router EA6300 seems not to be working for the DMZ function even though I set it to target 192.168.2.199 it is also set in reserved DHCP for that ipadd/mac device, the device in regard is a linksys WRT54G.
    And I think I got banned in Live Chat before I could even ask about this question :/
    Please don't ban my this account, I'm just looking as what could I have done wrong in the EA6300 DMZ settings, I can attach a screenshot of its DMZ configuration and others if you need them but please let me know first, I don't want to get banned again thinking I'm some kinda spam or advertising bot, thank you.
    WRT54G 192.168.3.1
    ===================
    Port is forward to the IPadd of the computer in question that is hosting a file server, I have checked its port while connected to the router and it is open, my fserv client detects the connection as well when the check was ran by a 3rd party website.
    It is set to Automatic Configuration - DHCP and it is on a different network than the EA6300
    TLDR ports open on file server OK
    ===================
    EA6300 192.168.2.1
    ===================
    I did the same as above but WITHOUT DMZ and NOT connected to WRT54G, result ports open on file server OK
    Next I connected my computer(hosting file server) to WRT54G and WRT54G to EA6300 and EA6300 to my internet modem (isp-issued, unable to configure, gateway = isp), from here on, everything is OK, able to access both the WRT54G and EA6300 on my computer(hosting the file server) and is able to connect to the internet and watch youtube videos fine (testing internet connectivity), afterwards I decided to activate DMZ on my EA6300 to destination MACadd of my WRT54G to expose/route connections to WRT54G for my file server since when checking at the same 3rd party website, the mentioned open port it reported is closed, and I am stuck at this point now, not sure how to open the file server's port.

    I followed the instructions for LAN-to-LAN and it worked, the 3rd party website now sees the port of my fserv as opened, however when I am following the instructions of LAN-to-WAN, it is reported as the port is closed, when I tested them individually as in modem+wrt54g OR modem+ea6300, both is reported as open, but when set as access point->ea6300->wrt54g->my computer, internet connectivity OK, can browse and do internet-related tasks, youtube/google etc etc but my fserv port is reported as closed, hence I decided to try and use DMZ on my EA6300 192.168.2.1, within its device listing appears my WRT54G (192.168.2.199).
    EA6300 gateway 192.168.2.1 (to access its config page)
    WRT54G gateway 192.168.3.1 (to access its config page, when seen using the EA6300, its IP add is 192.168.2.199)
    computer with fserv 192.168.3.200 (is able to access both WRT54G and EA6300 config pages without using DMZ, able to access and browse the internet, able to do internet-related tasks, youtube/google/etc but fserv port is reported as close)
    access point->EA6300 (gateway 192.168.2.1) DMZ to WRT54G 192.168.2.199 (gateway 192.168.3.1)->computer with fserv(192.168.3.200)
    But what is wrong? I still don't understand why port for my fserv is closed when using LAN-to-WAN, on a different router it worked (not the EA6300 but a competitor ISP router/modem(its a 2-in-1 both router and modem) was using DMZ to destination WRT54G and it worked but I can't use it anymore since I switched ISPs).
    competitor ISP router/modem(its a 2-in-1) (gateway 192.168.1.254) DMZ to->WRT54G 192.168.1.199 (gateway 192.168.2.1)->my computer with fserv (192.168.2.200) and port is reported OPEN using the same 3rd party website to check, google yougetsignal.

  • Videos are not buffering properly...way too slow, then buffering stops without finishing.

    This is not only with YouTube...it's ALL videos..I've updated all plugins.
    Also, I cannot enlarge any of the small photos on Facebook...I only get the black rectangle background...My account works fine from another computer (not my own at all), so I assume it's a Firefox setting issue somehow and not a FB setting issue.

    Is there any youtube settings??? Can any setting be changed which relate to youtube? And is it possible to watch youtube through safari and not through the standard application?
    NO, there are no settings. Flash will not play in Safari yet, but there is a workaround using VideoHamster.
    Here are a couple of Flash YouTube videos on my server that I converted to QT with CosmoPod. How do they load for you? I have a 1M up cable connection. They should start loading and playing after a few seconds. YouTube videos start playing after about 5 seconds on mine.
    http://bmer.servemp3.com/test/
    Dave M.
    MacOSG Founder/Ambassador  An Apple User Group  iTunes: MacOSG Podcast
    Creator of 'Mac611 - Mobile Mac Support' (designed exclusively for an iPhone/iPod touch)

  • HT4623 Why did the update of my phone to the IOS 6, lose my UTube icon, and was replaced with a Passbook app.

    Why did the update of my iphone4 to the IOS 6, lose my UTube icon, and was replaced with a Passbook app.

    Apple is no longer supporting YouTube with a native application starting with iOS 6.0.  The "old" YouTube application was automatically removed when you upgraded, and it no longer exists in the new iOS.  There are however, numerous third-party apps in the App Store which will allow you to view YouTube, including one from Google, which is the parent company for YouTube.  Passbook is a new application to iOS 6.0 and is not at all related to YouTube.

Maybe you are looking for

  • How to get the last value edited by users from JTable?

    Hi. I have a JDialog that includes an editable JTable. This table is used to set up field caption and font for a report program. I found only when cursor is moved to another cell, the value in current cell being edited will be transferred to Table Mo

  • SD document flow line items

    Hi all, Can we exclude some line items to appear in the subsequent documents of sales order? Like if I had 5 items in a sales order, I only want three of them to appear in the delivery doc or Advanced ship notice. The other two are filtered using ite

  • Some problems in TCP/IP communication between PC&DSP

    I have programmed a VI for TCP/IP communication between PC (Client) and DSP (Server), which could be downloaded at below link. It just achieves some basic features, like send commands to DSP to set some registers, and receive data or status from DSP.

  • Can't convert date correctly

    Hi, I have a date in the format ddddd, which represents the number of days since December 28,1800. I want to be able to convert this to a java date and also be able to convert back to this format. I've tried calculating the offset and adding it to a

  • I Have a DW CS4 php question???

    I completed this tutorial.  > http://www.adobe.com/devnet/dreamweaver/articles/first_dynamic_site_pt3.html GREAT Tut if you have not tried it. A big thank you to Ms. Dumitrascu. My question is I put together this site while doing the tutorial. > http