Issue with streaming on Samsung plasma TV

Recently I watched a live stream from ustreamtv for a motorsports event on my desktop.  (ustream.tv/ultra4) While trying to switch to the tv (samsung 8000series plasma, hard wired via cat5) and getting to the stream site it asked for a Flashplayer update.  This I cannot do and when asked, Samsung says they only have version 10.0 and do not intend to update with future firmware or software updates to the TV.  now what?  I was able to watch the same event last year with no issues.  I have also contacted ustreamtv asking if they intend to come up with an app for samsung tvs that can then be added to set...no response so far.

Unfortunately, SmartTVs use Android OS and Google (Android) has ended all support for Flash (as of June 2012). There is no more Flash Player for Android, and being as it's now incompatible, there won't be another.
The latest versions that will run on Android are Flash Player 11.1 for Android 2.x and 3.x (11.1.111.73)  and Flash Player 11.1 for Android 4.0 (11.1.115.81).
Those ARE more recent than what you have (10) but they will still most likely get you a "You need the latest Flash Player to view this content" message from most sites.

Similar Messages

  • I have a ipad 1. I seem to be having a lot of connectivity issues. It takes a long time to load and sometimes will not load a page at all. I seem to be having issues with streaming in that it will play a song and just stop.

    I seem to be having a lot of connectivity issues my iPad. It takes a long time to load and sometimes will not load a page at all. I seem to be having issues with streaming in that it will play a song and just stop. It seems I have to turn it completely off and restart.
    Anyone had these issues?

    Settings > General > Reset > Reset network settings

  • I am having issues with streaming music from iTunes on my MacBook Pro to my audio system through AirPlay.  Works perfectly with my iPod Touch.  The AirPlay icon appears irregularly in iTunes and when selected doesn't connect.  Running latest IOS software.

    I am having issues with streaming music from iTunes on my MacBook Pro to my audio system through AirPlay.  Works perfectly with my iPod Touch.  The AirPlay icon appears irregularly in iTunes and when selected doesn't connect.  Running latest IOS software.

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsync all music and resync
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar          
    You said:
    No, I do not want to "factory reset" my iPod. No I do not wish to do anything crazy long or hard to fix this. 
    That may be necessary, It is not what you want to do/not do but what is required to resolve your problem.

  • Is there an issue with streaming videos direct from itunes? I

    Is there an issue with streaming videos direct from itunes? I have good wifi but films just buffer , doesn't happen on flixster on netflix , wonder if there is any tweak to watch a film uninterrupted , because it is very frustrating? Thanks

    Apple appears to be having trouble with the iTunes Store servers right now.
    (81070)

  • Issues With Using a 50" Plasma as a Monitor.

    Hi there,
    I'm using a brand new Mac Mini (just bought less than 3 hours ago) with my 50 inch plasma (th-50pz80u here are the specs: http://reviews.cnet.com/flat-panel-tvs/panasonic-viera-th-50pz80u/4507-6482_7-32 887126.html ) but when I connect it via a mini DVI adapter to DVI-to-HDMI cable to my TV, I get a image that's too big (menu bar and lower dock are missing) with overscan, or too small (I get black bars on the sides, and the top) without overscan.
    I would like the output to be 1080p and completely fit my display. Can anybody help me with that?
    Thank you.
    -Jai

    This issue is being discussed at this link:
    http://discussions.apple.com/thread.jspa?threadID=1971252&tstart=0

  • Buffer Issue with streaming 10 MB file

    Hi there,
    Having a bit of a nightmare, essentially I have this code:
      private void streamBinaryData(String urlstr,String format,HttpServletResponse response)
            String ErrorStr = null;
            try{
             if(urlstr==null)           
                 urlstr = "c:\\video\\hoff.flv";
             File f = new File(urlstr);             
             response.setContentType("video/x-flv");
            response.setHeader ("Content-Disposition", "filename=\"hoff.flv\"");
            Long fileSize = Long.valueOf(f.length());
            response.setContentLength(fileSize.intValue());
            InputStream in = new FileInputStream(f);
            ServletOutputStream outs = response.getOutputStream();
            int bit = 0;
            System.out.println("VIDEO STREAMER: start streaming data");
                while ((bit) != -1) {
                    bit = in.read();
                    outs.write(bit);
                in.close();
            System.out.println("STREAMER: Finished streaming data");
            outs.flush();
            outs.close();
            catch(Exception e){
                    System.out.println("DEBUG: "+ e.toString());
      }which works just fine, but as the server that will be using this code essentially just (90%) will be the use of this servlet to stream .flv files I want to make it more productive by buffering all or some of the file in order to stream.
    so essentially I have tried many times and variations around the following sub code:
            InputStream in = new FileInputStream(f);
            ServletOutputStream outs = response.getOutputStream();
            int bit = 0;
            System.out.println("VIDEO STREAMER: start streaming data");
            byte buffer = new byte[fileSize.intValue()];
            outs.write(buffer);
                in.close();
            System.out.println("STREAMER: Finished streaming data");The above pump about 1MB of a 10MB fine, but the hangs and no exception is received, or:
            InputStream in = new FileInputStream(f);
            ServletOutputStream outs = response.getOutputStream();
            System.out.println("VIDEO STREAMER: start streaming data");
            byte buffer = new byte[fileSize.intValue()];
            for(int i=0; i<buffer.length; i++)  {
                 outs.write(buffer);
    outs.write(buffer);
    in.close();
    System.out.println("STREAMER: Finished streaming data");
    which will pump out around 2-6 MB of the file, with both of the code changes above I can see the file being pumped at a much faster rate, but obviously no good as it does not deliver the whole file.
    I know that content length is fine, I have also tried varying the response.setBuffer(int) to larger than 8192 up to fileSize.intValue to allow a buffer to handle the whole file before outputing, all to no avail.
    I have also increased the runtime RAM via '-Xmx64m'.
    I am developing on a windows tomcat (with netbeans) and the production version is unix based.
    Any help that anyone can offer will be greatly appreciated.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Thanks for the reply.
    Hi, yes sorry has missed that (typed the other 2 variations by hand), I have tried buffering part of the file & tried using a BufferedOutputStream.
    Neither worked either.
    so for example, I used (done before, but hell tried again anyway):
            InputStream in = new FileInputStream(f);
            ServletOutputStream outs = response.getOutputStream();
            System.out.println("VIDEO STREAMER: start streaming data");
            BufferedOutputStream bout = new BufferedOutputStream(outs);
            byte [] buffer = new byte[1024];
            int length=0;
            while( (length = in.read(buffer,0,buffer.length)) > 0)  {
                bout.write(buffer,0,length);
            }this actually does worse as I only receive around 500KB.
    Checked the link you provided, useful but the implemented solution is still reading 1 byte at a time, hense far too many reads going on for when the server will be (hopefully) sending out a few files per min..
    essentially it seems like the outputstream (whether raw or bufferedOutputStream) is having issues with pumping data that quickly to it !???!?!?
    or it's not liking raw bytes and only really working with the bout.write(int) method, the best solution so far has been this use when I mentioned above that I would receive between 4-6 odd MB of the file, this was nice and fast, just never complete.

  • Issues with data usage Samsung S5

    Over the past few months I have been paying outrageous bills due to one of my lines eating all my data when there is no one even touching the phone. I have 3 phones and a tablet on my plan and I am paying 288.00 a month and last month they charged me 15.00 for overage usages because it went over on the last day of the billing cycle. Once again that one line ate up all the data even though it's connected to our wifi or just sitting dormant. I am getting sick of paying these outrageous prices and am about to go somewhere else. I was tricked into the 10.00 a month tablet fee when I signed two phones up under the verizon edge plan. the sales clerk did not tell me I could not cancel the 10.00 a month fee because it would be under a year contract nor did I sign anything saying that, but when I went back in to change the 3rd line over to the Edge plan they told me it would be a $300 or so disconnect charge. So of course I am still paying 10.00 a month for no reason because I have wifi in my home and I only use the tablet in my home. so i need help with trying to figure out the data issues with just one of my lines. I do not have bluetooth on or location. I have went to the play store and uninstalled everything I could. I constantly close out of my applications and clear history etc.,,

    So you thought they would just give you a free tablet at $10 a month and it didn't need to be in a contract like phones?  I took the free tablet too but common sense told me it was locked into a contract, I didn't even ask as I just knew that would be the case but I didn't care.  Mary

  • Oracle 11.1.0.7.0 Issue with Streams when using NULL value in a key field

    Hi,
    we have an issue in our replicated environment using Streams.
    We have a replicated table using the following index:
    UK_S01_TEXT_FORMAT_TBL01 SOGID
    UK_S01_TEXT_FORMAT_TBL01 INDEX_TEXT_FORMAT_ID
    UK_S01_TEXT_FORMAT_TBL01 INDEX_LANGUAGE_LABEL
    UK_S01_TEXT_FORMAT_TBL01 INDEX_TEXT_FORMAT_COUNTER
    UK_S01_TEXT_FORMAT_TBL01 INDEX_PROVIDER_ID
    UK_S01_TEXT_FORMAT_TBL01 INDEX_TARIFF_PLAN_COSP_ID
    with field INDEX_PROVIDER_ID allowing NULL values. Actually we insert empty strings in there, but as far as I understand Oracle will convert it sliently in a NULL value, which is fine to our application.
    When we apply a change on that table (either update or delete) we get errors at streams level and the transaction is not propagated.
    Local Transaction ID: 6.28.11170
    Source Commit SCN: 25397175
    Source Commit Time: Dec-03-2012 12:21:30
    Error in Message: 1
    Error Message: ORA-26787: The row with key ("INDEX_LANGUAGE_LABEL", "INDEX_PROVIDER_ID", "INDEX_TARIFF_PLAN_COSP_ID", "INDEX_TEXT_FORMAT_COUNTER", "INDEX_TEXT_FORMAT_ID", "SOGID") = (ITALIAN, , , 0, MIKE, 124) does not exist in table
    SMS.S01_TEXT_FORMAT_TBL
    ORA-01403: no data found
    message: 1
    TableName: S01_TEXT_FORMAT_TBL
    Operation Type: DELETE
    _____ Old Data _____
    SOID : 1010000008
    SOGID : 124
    INDEX_TEXT_FORMAT_ID : MIKE
    INDEX_LANGUAGE_LABEL : ITALIAN
    INDEX_TEXT_FORMAT_COUNTER : 0
    TEXT_FORMAT : Hai raggiunto i 100MB di traffico incluso nello scatto
    APPLICA_PERIOD_CRI_ID :
    INDEX_TARIFF_PLAN_COSP_ID :
    INDEX_PROVIDER_ID :
    If I force the set of primary keys to be only the NOT NULL fields, I can successfully apply the error, but since we may have them storing both NULL and NOT NULL values, this is not a solution.
    I'm wondering why the DB on one hand converts the empty string in a NULL while inserting, but it looks the Apply process onStandby is not able to do the same when looking for the record before applying the transaction.
    Thanks in advance!
    Cheers,
    Mike

    Its showing all objects the user has permission to see- why does that need to be restricted?

  • Server 2012 SMB 3.0 file cluster issues with Streaming media services 2008 R2

    So I have a file server setup with the always available feature turned off on this brand new cluster. Everything seems to function normally and I can hit files from the shares no problem.
    My issue I built a brand new 2008 R2 machine and created an on-demand publishing point to point to my 2012 file share cluster. I created a windows account for my windows media service to run as and applied read only to my video share. Media services see
    the video files on the server in the GUI so I know its got connectivity, but when I go to test locally or externally it will not play the stream at all. It complains of access even know I know that is not the issue. I have verified the setup and the ACL
    stuff is turned off on both the root and the publishing point. I can login to the Media server as my service account and play files from the share no problem. IIS media services can stream the files with no problem and yeah everything seems more like something
    possibly with SMB 3.0 and something in media services.
    I have a country rule where my data is not allowed in other countries so I have multiple video services on a domain with tunnels and what not my US Streaming services is working great but has a server 2008 R2 file cluster server. If I take that one to my
    out of the country publishing point to test it streams great as they use the same services account. If I take my out of the country file share to the US I get the same result just will not work. I have poke prodded and banged my head and since I get this result
    I have concluded it must be something with the new security of SMB 3.0.
    Does anyone have this working or tested? Also I am using the exact same video file to test all of this. Or is there secret I missed to either make smb 3.0 even more compatible or make streaming services play nice.
    Anything helps please let me know.
    Thanks,
    Adam

    I'd recommend calling in for support on this one.  Things aren't adding up.  Probably the most useful thing to do would be to do a network trace of the WMS server connecting to the remote server over SMB.

  • Issues with streaming wireless video from any source

    all of a sudden I'm having issues streaming any type of video to my iPad. every few seconds I get a lag for about 20 seconds. never have I had this problem with any apple device all the way back to my iPad 1 which my wife uses and hers it working fine with video streaming. any suggestions would be great
    thanks
    applesinafton
    I have the latest iOS installed.

    here's an update. all YouTube, Netflix, Vimeo and YouTube links no web pages do not play. All my subscriptions from apple podcasts don't play either. . I've never had this issue in the 4 years I've been using apple iOS devices. the same is a problem with my iPod touch. the brandy new one.
    I did a reset on my iPad and nothing has changed. problem still exists. any help would be a great gratitude !
    thanks
    applesinafton

  • SBH50 issue with streaming audio (sec white noise)

    After some test, with 2 device, and after having resetted the SBH50 as suggested in another thread related to stutter audio, i realize that the issue comes when "multipoint" in sbh50 is activated.
    i did some exercise:
    - no multipoint activated (only one device: sgs3) music streaming from sgs to sbh works perfectly.
    - multipoint acivated
    second device not connected: as soon as multipoint is activated sbh starts being disturbed by "white noise" for 1 second and it happens really often, more times during a single song
    second device connected: same situation as point 1
    i solved not using multipoint.. that is not the right solution 
    hope for a solution, i got still 20 days before time limit for give it back with no fee, and i wonder to understand if i should buy a BT clip that cost less considering at this point the added values is the little scrren (nice) and nfc (nice but.. after the first pairing i do not need it anymore)
    thank you for your support

    does this silence in suppport means that there is no solution ?

  • Issues with streaming flv in Captivate 4

    I'm trying to view a streaming video in Captivate 4.
    The video server is an in-house web server.
    Nothing shows in Preview mode. When CP project is published, I get a dialogue box asking if I want to open or save:
    If I open, Adobe Media Player opens. I don't want to view it in Adobe Media Player. I want the flv file to run in Captivate.
    I have scoured the forums, but haven't seen an answer except maybe the Windows 2003 server issue (which I'm checking on.)
    What am I missing?

    Hi, Ed. You might want to review these things:
    1. I often need to inject Metadata into the FLV. This is important because Captivate needs to know things like how long the Video plays etc. and this data is provided by the metadata. The free Buraks FLV Metadata Injector does exactly that.
    Because it is a little cryptic to use, I created a narrated Captivate demo to show you exactly how to use it. The demo is very short.
    http://www.showmethedemo.com/Resources.htm
    When you get to that page, click on the link, Using           FLV MetaData Injector to see the demo.
    2. Please have your web admin  folks look at this link.
    http://kb2.adobe.com/cps/194/tn_19439.html
    My own web  server is Windows Server 2003 and I had to use this tech note article myself (and it worked!)
    John Daigle
    Adobe Certified Captivate and RoboHelp Instructor
    www.showmethedemo.com

  • Apple tv....house is wifi. issue with streaming as thrown off during movies

    I have wifi in my house. My desk top is upstairs and the apple tv box is downstairs. We can not seem to be able to watch a complete movie or tv show. It shows buffering before it starts and then 1/3 of the way through we are thrown off.
    Should we get a second modem that is not wifi for the tv and apple tv box? Will a second modem interfere with the wifi system that we have in our house? We are with BELL CANADA for our internet and Rogers for our TV. Our goal is to get rid of cable all together.
    Thanks

    Welcome to the Apple Community.
    How far away from the router are both devices. Your issue might be distance but could also be interference.

  • Annoying little issue with streaming and syncing.

    My Macbook is connected to two external hard drives which are hosts to all my movie and tv show files. These files make up my iTunes library so when I sync content the files are copied from my external HD's to my ATV. Some are copied and some I stream. I therefore have a massive library on the ATV selection under "My Movies" and "My TV Shows".
    However, when I shutdown iTunes. All the content still shows up in the menus. Those that are synced can obviously be played but those that are not synced and played by streaming, still appear on the menu but obviously can't be played.
    This is very annoying. I can't keep track of how many of the hundreds of movie files have been synced and which ones haven't. Before the latest update, the files that were not synced would disappear from the many once iTunes was shut down but now it appears they still remain there.
    Any fix for this issue? And no, I don't want to tick "Show only synced items on my Apple TV" because then I can't stream anymore.
    Message was edited by: MacFormula

    Ian Parkinson wrote:
    When I quit iTunes the streamed content disappears from the Apple TV lists and only the synced content is visible.
    can confirm that this is also still the case for me, and i stream everything.

  • Spark VideoPlayer issue with streaming in iOS Devices

    Hi,
    I’m working in a mobile application using Flex which needs playing remote videos.
    So, we are having some problems with the streaming of FLV videos in iOS devices. When we play a streaming video on iPhone or iPad, after some time (about 1 minute), the application just crashes and closes.
    We are using:
    - FLV video format;
    - Flex 4.5.1;
    - Flash Media Server 3;
    - Spark VideoPlayer component.
    It doesn’t occur when we are using Android devices neither when we are accessing medias located in our local network (including in iOS devices). The problem occurs only when we are accessing medias located in an external FMS server through iOS devices.
    I would really appreciate if someone could give any help about this problem.
    Thanks,
    Luis Vasquez

    FMLE Settings as follow:
    Video:
    Format H.264
    Frame Rate: 29.97
    Input Size: 320x240
    Bitrate: 200 kbps
    Profile: Main
    Level: 3.0
    Keyframe Frequency: 3 Sec
    Audio:
    Format: AAC
    Channels: Stereo
    Sample Rate: 44100
    Bitrate:56 kbps
    FMS URL: rtmp:server/livepkgr
    Stream: livestream?adbe-live-event=liveevent
    I try to access the web using http://server:8134/index.html and no luck and also try IP address and no luck eather.
    The modules are enable, the one you mention in the link provided (4a).

Maybe you are looking for

  • Help with system upgrade for CS6

    Hello. I am hoping you can give me some advice on what to do (or buy) to improve my video editing system.  I am a bit of novice when it comes to the technical/hardware end of things and I’m having some issues with my current system.  I working in Ado

  • How do I create a start/stop button for each separate while loop within my program, when each of them does a different task?

    I have a multimeter VI with separate while loops to accomplish the different tasks of reading  voltage, current, etc. Each while loop has a stop button, but I need a button that will have to be pressed in order for the while loop to even start. I tri

  • EasyLink Advisor for WRT54GS

    I am using the Linksys WRT54GS  EasyLink Advisor software that came with my router.  My computer is running XP windows. But I can not get the Adsvisor software to work, it is loaded into my system but when go to the program all my options are grey, I

  • Where can I get an old-school style keyboard (one that CLICKS)

    I cannot stand the soft keyboard that came with my Mac Pro and I want to go old school and get a keyboard that gives a loud CLICK every time you press a key, one that you actually feel when the key is depressed. Any suggestions?

  • Hub Connection to Ipad

    Hello, I have a new ipadmini. It connects anywhere and everywhere except to my BT Hub(2). I've tried everything. Rang India, they just blamed it on the Apple product. This is wrong - we have four other Apple products that connect OK. Can you help? Bo