Video not found or access denied

Discussion in 'ASP.NET WebServices' started by evanzhou, May 23, 2011.

  1. ASP.NET4.0, MVW2.0, JW player. Local everything is fine. After upload, Chrome and Firefox work fine, but IE7, IE8,IE9 need use Internet Options to delete temporary internet files to make video play, otherwise show "video not found or access denied: /videos/flvplayer.flv." After Refresh(F5) , same problem. If someone know how to fix, help me please.

    Link: http://localhost:2320/Show1/Browse?Genre=10

    ASP.NET4.0, MVW2.0, JW player. Local everything is fine. After upload, Chrome and Firefox work fine, but IE7, IE8,IE9 need use Internet Options to delete temporary internet files to make video play, otherwise show "video not found or access denied: /videos/flvplayer.flv." After Refresh(F5) , same problem. If someone know how to fix, help me please.
    Before the video has been download completely, just Refresh(F5) the page or close IE and open it again the problem will appear. Also when I put several videos on the page, at best only one can work (before delete temporary internet files). I test on different computers and get same problem. Now I put 3 vides on the page, please try again.

    even download video completely, use Internet Options to delete temporary internet files and Refresh(F5) the page. Video cannot be plaied again and will show " video not found or access denied: /videos/flvplayer.flv "
    Link: http://go588.cz.cc/Show1/Browse?Genre=10
     
  2. Run a wire trace with IE and Chrome to the URL you provided. Chrome is making more requests / is getting many more valid 200 responses than IE. On the other hand, IE is getting 500 errors.

    I suspect there's something wrong with your script and I'd start with a JS debug.
     
  3. mjp

    mjp

    And please don't post your problem a dozen times in a dozen different threads. Once is enough. Thanks.
     
  4. thanks CrystalCMS
    I try other host, seem no this problem
    below is my script

    <script type='text/javascript' src='/jwplayer/jwplayer.js'></script>

    <div id='<%:i %>'></div>

    <script type="text/javascript">
    jwplayer('<%:i %>').setup({
    'flashplayer': '/jwplayer/player.swf',
    'id': 'playerID',
    'width': '480',
    'height': '270',
    'file': '<%:genre %>',
    'autostart': 'false',
    'bufferlength': '3'
    });
    </script>
     
  5. What are you using to create/publish the files?
    Camtasia for example will output two JS files and the wrapper swf for the flv.
    It does a good job creating the debug and error JS routines.
     
  6. Thanks wisemx

    I am sure something wrong between IE, my domain name, jwplayer or my host. Please try this way: use http://www.longtailvideo.com/support/jw-player-setup-wizard
    fill "File properties", "file" by http://go588.cz.cc/00000.flv . Click "Update preview & Code" . At first time it works. Before the video download completely, Refresh(F5) the page and fill "File properties", "file" by http://go588.cz.cc/00000.flv again. Play the video, message "video not found or access denied: http://go588.cz.cc/00000.flv" shows up. To make it play again, need to use Internet Options to delete temporary internet files. If waiting until the video download completely, everything will be fine. But if using Internet Options to delete temporary internet files and then Refresh(F5) the page and fill "File properties", "file" by http://go588.cz.cc/00000.flv The problem will come again. This time I did nothing except upload one file 00000.flv in there.
     
  7. I use Visual Studio 2010 to creat and publish the files.
     
  8. Email me one of the flv files I can experiment with.
    ZIP it up, RAR or any other compression format is fine but don't Email the raw flv.
    [email protected]
     
  9. Got your files...
    Well this came as a surprise but nothing I have can import the raw flv.
    I thought for sure either Camtasia or Expression Encoder 4 would, but nope.

    Do you need to work with that file format?
     
  10. Thanks wisemx
    I am starting to learn how Camtasia or Expression Encoder 4 can help me.

    I am really want to know why I get this problem and how to fix it
     
  11. I uploaded videos at YouTube and use below script. Now everything is fine
    <div id='a1'>This text will be replaced</div>
    <script type='text/javascript'>
    jwplayer('a1').setup({
    'flashplayer': 'http://go588.cz.cc/jwplayer/player.swf',
    'file': 'http://www.youtube.com/watch?v=6QEgpWEDz5I',
    'controlbar': 'bottom',
    'width': '470',
    'height': '320'
    });
    </script>

    Link: http://go588.cz.cc/Show1/Browse?Genre=10

    wisemx can I say this problem is because JWPlayer is not compatible well with DiscountASP.NET when using IE?
     
  12. I'm not sure but possibly yes.
     
  13. Thanks wisemx
     

Share This Page