Software Development Network Logo
  • SQL Server
  • Visual C++
  • Visual FoxPro
  • Audio and Video
  • IE Development
  • Visual Studio
  • SharePoint Products
  • Visual Basic
  • Windows Vista
  • Windows Forms
  • Microsoft ISV
  • VS Team System
  • Game Technologies
  • Visual C#
  • Smart Devicet

Software Development Network >> Audio and Video

Audio and Video

New Question

WMP11 not giving mousemove events in full-screen mode
How to submit a gadget questions?
Can we use MS Jscript for HD-DVD advance Player?
Using external style sheets
js file not Big Endian
Can XPath variables be used in <styling>
Access to DOM model
Colorfull Drawing
How to get Market information when add gadget by URL "http://www.live.com/?add=http://xxx/xxx.xml"?
Superimposition filter with MF

Top Answerers

dev_bih
Kolja
nattylife
McWhirter
Nuno_Salvado
donkaiser
Jayaram Krishnaswamy
Boulton C&amp;#233;dric
Benedikt
nrkhakre
McIver, Randolphlee
Only Title

Answer Questions

  • Wujek Szymon IMFPresentationDescriptor::Clone

    Hi, According to http://msdn.microsoft.com/library/default.asp url=/library/en-us/medfound/html/82db6f32-ad94-4563-b8bd-8a5072c5b221.asp , "To create the copy, call IMFPresentationDescriptor::Clone". Could anyone tell me why we need to call the member function Clone instead of AddRef Yes and yes. Say you're implementing IMFMediaSource::CreatePresentationDescriptor. You may not want to give the application a pointer to the same instance of the Presentation Descriptor that you are using internally, since you likely don't want to be randomly affected e.g. by whatever calls to SelectStream/DeselectStream or changing around attributes that they're making in their code. Cloning the Prese ...Show All

  • Wicket Can we use MS Jscript for HD-DVD advance Player?

    I’m working on developing HD-DVD Advance player. Now I encounter a problem about how to impletion Jscript analyze when we develope software player for HD-DVD advance content. We find Spidemonkey JS Engine can satisfy this requirement. But I want to use MS Jscript, so I hope you can help me. Thank u! Thank u, Peter Torr! Can you give me some example about how to use Jscript Thank you. Yes. I know it need JS parser in HD DVD advance player and the Spidermonkey is one JS parser. But I want to know Microsoft Jscript.dll can implement this function or not If it can, how should I use it in my program You should start off reading ...Show All

  • Tom Sapp HD-DVD Author Available.

    Finished 2 HD-DVD projects (freelance) using the Sonic Tools. Now available in Los Angeles for FT Authoring. mtnkidz_2001@yahoo.com PS. Peter I wish you could get MS to move down here...its warmer! I believe Ascent Media is still looking for an HDDVD Author http://ascentmedia.com/careers/ ...Show All

  • dax_kun OnChangeEvent.fire does not really fire event. (MS CRM server)

    I have very strange problem with MS CRM. Some client-side code are not working at client computers. Finally I traced it down to DHTML behaviour problem. In MS CRM we have IMG.lu.htc behaviour, which implements some kind of lookup control. To fill it I can eighter use a popup dialog (window) with list of values or use Form Assistant pane from the same page. On CRM New Case page I have a number of such lookups for different entities. Repro steps: Open new case, On new case form choose Account from Form Assistant pane (important !) Account field onChange is fired - but from this point no other lookup fields will fire their OnChange events. (while Account continues to fire it's own as intended) If you use any other lookup except Account ...Show All

  • MattCollins audio/x-wav with attenuation

    Hi, Does attenuation work in HDiSim I've tried the following code: < object type =" audio/x-wav " src =" file:///dvddisc/ADV_OBJ/ding.wav "> < param name =" AttenuateL " value =" 100% "/> < param name =" AttenuateR " value =" 100% "/> </ object > Attenuation of 100% means silence, right Even if we do not set params like this: < object type =" audio/x-wav " src =" file:///dvddisc/ADV_OBJ/ding.wav "/> Specification tells us in 7.8.1-1 that default attenuation is also 100% i.e. silence again, right But HDiSim plays ding anyway. What's wrong Thanks in advance ...Show All

  • qt1h00 DMOs Operability in Media Foundation ?

    I thought I remembered hearing somewhere that DirectX Media Objects could be directly used by Media Foundation. However reading the current docs for Media Foundataion Transforms ( http://windowssdk.msdn.microsoft.com/en-us/library/ms703138.aspx ), it sounds as if you can implement IMediaObject on an object that implements IMFTransform but one cannot directly use DMOs in Media Foundation. Is this correct Thanks! Scott Hi Scott, You're right: The Media Foundation pipeline is prepared to handle Media Foundation Transforms (MFTs), not DMOs. And you're also right that if you write a wrapper for the DMO that you want to use that translates IMFTransform calls to IMediaObject calls, you should be good t ...Show All

  • AndrewVos System.Network.Wireless Not Working

    It seems like System.Network.Wireless doesn't work... I have tried a few Windows Vista Sidebar gadets that use it and non of them work. I have also tried creating my own gadet and it doesn't work either. Has the object refrence been update but not the documentation Has anyone else seen this issue Or am I just doing something wrong I tried the following to have it printed out on the gadget and also saved in the Event Log and both places show that nothing is outputted. (and before it is asked, yes I do have wireless that is what I am using to write this and dont even have a hard connection) var IPAddress = System.Network.Wireless.address; gadgetContent.innerText = IPAddress; System.Diagnostics.EventLog.writeEntry(&quo ...Show All

  • krishna_ta Getting a VC-1 file ready for advanced content authoring

    Hi all, I just started to author advanced hddvd content but i vailed in getting a valid video content to test my first project. is it possible to multiplex a VC-1 file with the Sonic authoring system for standard HD content in a way that i can use it for my first advanced content project I tried to import the vc-1 file into sonic, generated a simple autostart HDDVD, multiplexed it and used the HVDVD_TS folder for my advanced content project but it didn't work. The Nero Showtime softwareplayer diplayed the menu correctly but didn't play the video. I also tried to burn a dvd rom and inserted it into my Thosiba HD_DVD player but it just displayed the disc error 0x4095C501. Can anybody help me thx mikeret ...Show All

  • Haojun Determining 64-bit OS

    I have an app which reads from the registry to look for some registry keys written by a 32-bit app. When run on 64bit windows, the registry entries are under Wow6432Node. How do I determine if the user is running 64-bit windows. Thanks Dan Though couldn't you install the 32-bit OS on any of those Dan You can do an IsWow64Process api call to see. typedef BOOL (WINAPI *LPFN_ISWOW64PROCESS) (HANDLE, PBOOL); BOOL IsWow64() { BOOL bIsWow64 = FALSE; // assume 32 bit // can't call IsWow64Process on x32, so first look up the entry point in kernel32 LPFN_ISWOW64PROCESS fnIsWow64Process = (LPFN_ISWOW64PROCESS)GetProcAddress(GetModuleHandle ("kern ...Show All

  • mate6666 Can component in PMP communicate with 3rd party driver?

    Hi all, Is it possible for PMP Media components ITA/Decryptor/MFT to communicate with a signed 3rd party driver How can I make custom kernel mode drivers trusted for PMP Thanks. SarahT, Yes, PMP Media components can communicate with 3rd party drivers. As far as signing custom kernel mode drivers trusted by PMP, please see the whitepaper at: www.microsoft.com/whdc/winlogo/drvsign/ Pmp -sign.mspx Eric. ...Show All

  • Bill Gates II Authoring software

    Hi guys.  Please excuse my more basic question that is not about advanced content. I have a SD DVD I need to convert to HD DVD.  I've used the now defunct DVD Maestro to do all my authoring and I am proficient with it.  I need a tool, preferably XP compatible, that will allow me to do some HD DVD authoring with that level of flexibility.  The only thing I know of is Scenarist and that may be a stretch for my pocketbook. Are there any other options   It is important that the authoring process does not do any recompression of the content. Thanks, Scott Denny, et.al: Thanks for the pointer. I'll look it over. I didn't understand teh comment about Sonics part. I was ...Show All

  • flash.tato Are you a Sidebar gadget newbie?

    If you are new to Sidebar and gadget development, check out this short video for a quick introduction http://channel9.msdn.com/Showpost.aspx postid=255735 Cheers Daniel Here is another article with architecture on sidebar gadget , This gadget provide Daily Dilbert on your sidebar http://www.csharptricks.com/Articles/DailyDilbertArticle.aspx Best regards Rajesh Lal ...Show All

  • Santosh A H Any method for MF PVP application fail gracefully if video driver is not PVP signed?

    I am working on an application that runs protected playback with Media Foundation. I've encountered a problem that with some graphics cards, an error dialog box pops up from another process saying " Bad Image: X is either not designed to run on Windows or it contains an error". After repeatedly pressing OK for the same dialog poping up many times, I can see the application hits a debug assertion saying that  ESP is not properly restored. I've read about the following previous thread in this forum and know that this symptom happens because video driver is unsigned and mfpmp.exe failed. "MF_ProtectedPlayback Sample doesn't work for Video on Vista Beta 2: Thread Start ...Show All

  • EWANAME This is not a valid gadget package!! grr!

    hey, So i finished creating my gadget, i use winzip to zip it up to mygadget.gadget and then double click to install... However it just says: This is not a valid gadget package The gadget works if i move the folder to the windows gadget directory! Does anyone know how to fix this problem Regards nope, tried that and still get the same error!! :o There ISNT though!! Every *file in every* directory is atleast 1kb or more!! :S Hi nickwilliams , This could be the same problem i'm having I made a gadget -- submited it to gallery, and they accepted it, it worked fine, 100 people downloaded it. I then decided to update it a little, all i added was the following line in the code.j ...Show All

  • James_Steven UOP functionality

    Does HD-DVD technology have analogy UOP from DVD technology http://msdn.microsoft.com/library/default.asp url=/archive/en-us/directx9_c_Summer_03/directX/htm/uopvalidmethod.asp i.e. as sample, I can't use inner(system) methods for checking that "Play" action is availability at the current moment. I must do it self (use own code for it). Am I right Are you looking for something like this It will compare the current state of the player to see if it playing or not. Player.playlist.playstate==Player.playlist.PLAYSTATE_PLAY You could use a action listener for controller_key_down (and controller_key_up) and create specific a ...Show All

666768697071727374757677787980818283

©2008 Software Development Network

powered by phorum