Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6546007
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T11:39:22+00:00 2026-05-25T11:39:22+00:00

I am trying to play the Video file on IE8 using quick time but

  • 0

I am trying to play the Video file on IE8 using quick time but i am getting some kind of wierd message on the window

RñQªÿ1ŠS×Wü5Å'*žã|Š—RÜ_qKq·âxæËŽ ÅK«ëË(þ¢â!ŠWP¼¢âaŠ«üâxI[Eq•w*ï8TÞq¨¼ãPyÇ¡òŽCå‡Ê;•w*ï8"T\å‡Ê;•w*ï8TÞq¨¼ãPyÇ¡òŽCåGŒâ=”|z*ÞK]ß[ñ~Š÷WRq•_c§økŠOT|²âSŸ¦øtÅg)>[ñ¹ŠÏS|¡â‹ÏU|‰âË_¡øJÅW)¾FñµŠoP|£â›ß¢øvÅw(¾KñÝŠïS|¿â‡?¬øQÅßQü]ÅßSü„â*~Jñ?­øgŠÿKñ/?§øWŠ_TükÅ/+þ­âß)þ½â׿¡ø-Åo+~WñŸ ø/Š?TüwÅÿ|΃?¢ýû€|xRè ø6*£¨æ³¥«Q©Oë/Kû†Ò´»tÓq1ÿã´MøÍÅš ¸Þ s­èÜÔÊÒï&ô›bŽûuj´>Ù¼‹ôíj%-„ù·«5Š¡.²qõë¢ë­¿é›|ÊEspQÞp‘¹Þ¢ ÇC]ÙÔ"¨Qìp- V“ÅDW}é“äÚ¡Ò×2÷ñ6ÍüÍE¹ÅEëueÊ1ÅCå!å7ë™×$éw™ŒAr°HŽ®vÔȶ]”o¬/d®keî<>ÅíÏ\¨•2}Y7d>uÍœ¬·¤o“äeQ>wõ—yð\ãåw3޽fžÇ¹†eוZi<&ëƒlÜõ5ÚZ$‹|ÊMöje‹ù>ÒS ÅLWOé7^æV_Æk%ý ãY3Ëšr¸ÕDô@yÃ]^äTCÖFcX$ 7ÝcÑyWª¹¯ÎN’;ͻ̧ôûcY‹‡ÈçKù×Iº°† ÿ‰Za#7ër¸±5×"™ã*ùÍk¢xè¤Ømí6}»Y

if i copy the url and play in a new Tab i am able to play the video. any suggestion appreciated.

Fiddler Data

> HTTP/1.1 200 OK Cache-Control: private Content-Length: 12172289
> Content-Type: video/quicktime Last-Modified: Mon, 15 Aug 2011 18:07:10
> GMT Accept-Ranges: bytes ETag: 0x8CE298D49679541 Server:
> Microsoft-IIS/7.0 x-ms-request-id:
> 9aa58ee1-e74e-4a42-ac76-2a90e4d05d33 x-ms-meta-Source:
> thepoint.contentconfiguration x-ms-meta-CreatedOn: 8/15/2011 6:06:21
> PM x-ms-meta-UpdatedOn: 4/28/2010 8:38:04 PM x-ms-meta-FileSize:
> 12172289 Server: Blob Service Version 1.0 Microsoft-HTTPAPI/2.0
> X-AspNet-Version: 4.0.30319 X-Powered-By: ASP.NET Date: Wed, 07 Sep
> 2011 13:15:24 GMT
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T11:39:22+00:00Added an answer on May 25, 2026 at 11:39 am

    Have you specified the MIME type mappings for quicktime in the IIS config (web.config)? Depending on the extension of your file and/or the URL, IIS would need to understand how to serve up the MIME type properly.

    Something like

    <configuration>
        <system.webServer>
            <staticContent>
                <mimeMap fileExtension=".mp4" mimeType="video/mp4" />
                <mimeMap fileExtension=".m4v" mimeType="video/m4v" />
         </staticContent>
        </system.webServer>
    </configuration> 
    

    may be required.

    Using a web debug such as Firebug or Fiddler would also enable you to see the Content-type header coming back. That may provide you some clue as to what the server things its serving.

    For example, if it believes that this url is a “text/plain”, its going to give you the text version of the file’s binary, which looks like what you are seeing.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi I am trying to play a video (wmv) file using MediaElement. I have
I'm trying to play a video (MP4/H.263) on iOS, but getting really fuzzy results.
I'm trying to load an intent to play a video file on my phone's
I have been trying to play a video that was converted using http://www.mirovideoconverter.com/ to
I'm trying to play a video file with this code: MediaController mc = new
I'm trying to play an HTTP live streaming video using a MPMoviePlayerController object, inside
I'm trying to play a video file during a call with asterisk 1.4 for
I'm trying to play video stored on the SD card and I'm getting an
I am trying to play .avi file in video lightbox by over riding it's
So, I'm trying to get a video to play from an HTTP url. To

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.