Go Back   TechArena Community > Technical Support > Computer Help > MediaCenter
Become a Member!
Forgot your username/password?
Register Tags Active Topics RSS Search Mark Forums Read SiteMap

Tags: , , ,

Sponsored Links



Save As saves link to WMV instead of video file

MediaCenter


Reply
 
Thread Tools Search this Thread
  #1  
Old 20-05-2009
mlichtel
 
Posts: n/a
Save As saves link to WMV instead of video file

Hello,

I am new to Windows Media Services 9.5. We have set this up successfully,
and users are able to click a WMV link on a webpage and stream without any
issue to Windows Media Player on the desktop. But we would also like users
the ability to save the entire video to their hard disk for later viewing.
Right click and "Save Target As" in IE browser just saves a Windows Media wvx
playlist link, and if the video is streaming in WMP, the File > "Save As"
option is greyed out. I'm having a hard time finding anyone with a workaround
for this question in any online forums, technical documentation, or Google
searches. Any help is appreciated.
Reply With Quote
  #2  
Old 21-05-2009
Neil Smith [MVP Digital Media]
 
Posts: n/a
Re: Save As saves link to WMV instead of video file

On Wed, 20 May 2009 09:51:01 -0700, mlichtel
<mlichtel@discussions.microsoft.com> wrote:

>Hello,
>
>I am new to Windows Media Services 9.5. We have set this up successfully,
>and users are able to click a WMV link on a webpage and stream without any
>issue to Windows Media Player on the desktop. But we would also like users
>the ability to save the entire video to their hard disk for later viewing.
>Right click and "Save Target As" in IE browser just saves a Windows Media wvx
>playlist link, and if the video is streaming in WMP, the File > "Save As"
>option is greyed out. I'm having a hard time finding anyone with a workaround
>for this question in any online forums, technical documentation, or Google
>searches. Any help is appreciated.


Windows media services only does streaming, that is, seekable parts of
a video - there's not a (useful) way to save parts of that video.

Instead, you would need to *also* put the video file onto a web server
which can then send the user the complete file as a download.

In theory, IIS on the same server can do this, referencing the WMSRoot
directory, but you will find some juggling needs to be done with IP
addresses if you want to run IIS and WMS with HTTP streaming on the
same server.

HTH
Cheers - Neil
------------------------------------------------
Digital Media MVP : 2004-2009
http://mvp.support.microsoft.com/mvpfaqs
Reply With Quote
  #3  
Old 21-05-2009
mlichtel
 
Posts: n/a
Re: Save As saves link to WMV instead of video file

Neil,

Thanks, this is very helpful. I'm not sure what you mean by juggling IPs,
though, unless both services wanted to piggyback on Port 80? With different
ports, wouldn't this mitigate issue? I might not be seeing the total picture
in terms of configuration, since I didn't setup the existing WMS server, so
hopefully this is not a dumb question.

Thanks much,
MLichtel

> On Wed, 20 May 2009 09:51:01 -0700, mlichtel
> <mlichtel@discussions.microsoft.com> wrote:
>
> >Hello,
> >
> >I am new to Windows Media Services 9.5. We have set this up successfully,
> >and users are able to click a WMV link on a webpage and stream without any
> >issue to Windows Media Player on the desktop. But we would also like users
> >the ability to save the entire video to their hard disk for later viewing.
> >Right click and "Save Target As" in IE browser just saves a Windows Media wvx
> >playlist link, and if the video is streaming in WMP, the File > "Save As"
> >option is greyed out. I'm having a hard time finding anyone with a workaround
> >for this question in any online forums, technical documentation, or Google
> >searches. Any help is appreciated.

>
> Windows media services only does streaming, that is, seekable parts of
> a video - there's not a (useful) way to save parts of that video.
>
> Instead, you would need to *also* put the video file onto a web server
> which can then send the user the complete file as a download.
>
> In theory, IIS on the same server can do this, referencing the WMSRoot
> directory, but you will find some juggling needs to be done with IP
> addresses if you want to run IIS and WMS with HTTP streaming on the
> same server.
>
> HTH
> Cheers - Neil
> ------------------------------------------------
> Digital Media MVP : 2004-2009
> http://mvp.support.microsoft.com/mvpfaqs
>

Reply With Quote
  #4  
Old 22-05-2009
Neil Smith [MVP Digital Media]
 
Posts: n/a
Re: Save As saves link to WMV instead of video file

You can either use 2 distinct IP addresses, or use a different port
for IIS HTTP to WMS HTTP on the same IP address.

Both services cannot share ['piggyback'] the same port and IP address
(I think you seem to know this) but how would the client "know" that
HTTP for IIS was moved to (for example) port 8080, or vice-versa ?

You'd have to append the port number to every link on the website
(IIS) or to every playlist (WMS) for that to work - a world of pain.

The documentation on how to approach this is over here
http://support.microsoft.com/kb/328728 and applicable to any web
server (though IIS has specific configuration changes) when used with
another service using port 80 (e.g. WMS) on the same physical server.

The actual effect of this conflict if unresolved, would depend on the
load order of the services. Either IIS would not start, or WMS would
(probably) start but the HTTP streaming protocol would be disabled -
you'd need to check the windows Event log to see those issues.


PS there are no dumb questions, only dumb answers <g>

HTH
Cheers - Neil

On Wed, 20 May 2009 13:38:02 -0700, mlichtel
<mlichtel@discussions.microsoft.com> wrote:

>Neil,
>
>Thanks, this is very helpful. I'm not sure what you mean by juggling IPs,
>though, unless both services wanted to piggyback on Port 80? With different
>ports, wouldn't this mitigate issue? I might not be seeing the total picture
>in terms of configuration, since I didn't setup the existing WMS server, so
>hopefully this is not a dumb question.
>
>Thanks much,
>MLichtel
>
>> On Wed, 20 May 2009 09:51:01 -0700, mlichtel
>> <mlichtel@discussions.microsoft.com> wrote:
>>
>> >Hello,
>> >
>> >I am new to Windows Media Services 9.5. We have set this up successfully,
>> >and users are able to click a WMV link on a webpage and stream without any
>> >issue to Windows Media Player on the desktop. But we would also like users
>> >the ability to save the entire video to their hard disk for later viewing.
>> >Right click and "Save Target As" in IE browser just saves a Windows Media wvx
>> >playlist link, and if the video is streaming in WMP, the File > "Save As"
>> >option is greyed out. I'm having a hard time finding anyone with a workaround
>> >for this question in any online forums, technical documentation, or Google
>> >searches. Any help is appreciated.

>>
>> Windows media services only does streaming, that is, seekable parts of
>> a video - there's not a (useful) way to save parts of that video.
>>
>> Instead, you would need to *also* put the video file onto a web server
>> which can then send the user the complete file as a download.
>>
>> In theory, IIS on the same server can do this, referencing the WMSRoot
>> directory, but you will find some juggling needs to be done with IP
>> addresses if you want to run IIS and WMS with HTTP streaming on the
>> same server.
>>
>> HTH
>> Cheers - Neil
>> ------------------------------------------------
>> Digital Media MVP : 2004-2009
>> http://mvp.support.microsoft.com/mvpfaqs
>>

------------------------------------------------
Digital Media MVP : 2004-2009
http://mvp.support.microsoft.com/mvpfaqs
Reply With Quote
Reply

  TechArena Community > Technical Support > Computer Help > MediaCenter


Thread Tools Search this Thread
Search this Thread:

Advanced Search


Similar Threads for: "Save As saves link to WMV instead of video file"
Thread Thread Starter Forum Replies Last Post
2 Quick saves & 2 Auto saves in The Elder Scrolls V Skyrim Loafer Video Games 6 22-06-2011 11:27 PM
Opera saves the PDF file as HTML Edhitha Technology & Internet 5 13-02-2011 10:03 PM
cannot save movie maker file - minutes to save keep going up R Windows XP Support 9 16-06-2009 12:57 PM
Filemon (Sysinternals) - File Open/Save/Save As not working Franc Zabkar TroubleShoot 98 8 28-01-2008 11:34 AM
Slow file saves on a Windows Server 2003 computer. Michael Gilliam Active Directory 2 13-05-2007 08:10 AM


All times are GMT +5.5. The time now is 11:47 AM.