OnDemand publish points with Silverlight Media Element
Tue, 29 Sep 2009 22:53:01 -0700
I'm using Silverlight 3 (SL3) MediaElement control to view streamed videos
from Windows Media Services 2008 publish points. Broadcast publish points
(over HTTP) works fine. But OnDemand publish points does not work and fail
with 'AG_E_NETWORK_ERROR'. The same OnDemand publish points when played by
Windows Me ...
|
The platform SDK sample datasource plugin hangs.
Mon, 28 Sep 2009 12:03:03 -0700
I am using Windows Server 2003 and Windows Media Services 9. I rebuilt and
register the sample datasource plugin from the platform SDK. When I streamed
a wmv video from the windows media server to the player, the player hang when
I tried to seek to a different place.
Here is what I observed:
- The same ...
|
Wma 10 Pro VBR Questions ?
Sun, 27 Sep 2009 02:40:55 -0700 (PDT)
Hello !
1. Except for Blu-Ray discs and PC, is there a device that can read
files encoded in WMA Pro, VBR, quality 25, 24-bit?
2. Why does, in VBR, WMA Pro encode to 24 bits / sample and not 16
bits / sample ? ...
|
Multi-threading and IWMSyncReader / INSSBuffer ?
Thu, 24 Sep 2009 18:14:01 -0700
Is there any documentation or guidelines related to multi-threading with
IWMSyncReader and INSSBuffer, specifically concurrent calls to different
instances of these objects from independent threads?
For example, if I open 9 WMV files, each with their own independent thread
and IWMSyncReader object, and then ...
|
DirectX Video Recording
Thu, 24 Sep 2009 05:43:19 -0700 (PDT)
int videosmplsize = 4 * Width * Height;
int BufferSize = videosmplsize;
INSSBuffer buffer;
IntPtr BufferPtr;
m_pWMWriter.AllocateSample(BufferSize, out buffer);
buffer.GetBuffer(out BufferPtr);
byte[] bdata2 = new byte[videosmplsize];
...
|
Access Violation Error on Marshal.Copy
Thu, 24 Sep 2009 05:38:01 -0700
int videosmplsize = 4 * Width * Height;
int BufferSize = videosmplsize;
INSSBuffer buffer;
IntPtr BufferPtr;
m_pWMWriter.AllocateSample(BufferSize, out buffer);
buffer.GetBuffer(out BufferPtr);
byte[] bdata2 = new byte[videosmplsize];
...
|
IWMWriter.Write Issue
Thu, 24 Sep 2009 02:18:02 -0700
I'm to write a bitmap in the wmv file. Only empty file is getting generate.
I have attached my code with this. Please help me out
INSSBuffer IBuff;
bmp.RotateFlip(RotateFlipType.RotateNoneFlipY);
byte[] buffer = NativeMethods.BmpToBytes(bmp);
countFrames++;
...
|
|
|
Error In SetInputProps Media
Wed, 23 Sep 2009 02:37:02 -0700
I'm try to make a video file from the desktop HBitmaps
I able to get the HDC object and get the bitmap files.
In writing the video, using Windows Media SDK
I'm using IWMProfile, IWMProfileManager to load the profile.
and defined the bitmap header in the Media Type
When I call WMWriter.SetInputProps I ...
|
Error in SetInputProps
Wed, 23 Sep 2009 02:23:02 -0700
I'm using IWMProfile, IWMProfileManager to load the profile.
and defined the bitmap header in the Media Type
When I call WMWriter.SetInputProps I'm getting an expcetion 0xC00D0BB8
I'm new to windows SDK, I have some sample VC++ program to Write a BMP file
into WMV with 320 X 240. But for custom profile. ...
|
SetDRMAttribute(Use_Advanced_DRM) returns NS_E_INVALID_REQUEST
Tue, 22 Sep 2009 07:07:01 -0700
Hello all,
I'm trying to protect a Windows Media stream using WM Format SDK 11.
I've strictly followed steps from SDK articles "Copying Streams Without
Decompressing the Data" and "Protecting Files with DRM Version 7 or Later",
but SetDRMAttribute method of IWMDRMWriter returns error NS_E_INVALID_REQUEST
( ...
|