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

Software Development Network >> Audio and Video

Audio and Video

New Question

Copyright problem? how did it happen?
can we sell gadgets?
Pixel Buffer Questions
Good to be here
DXVA 2.0 and Media Source
Micorosoft Media Architecture for Video [1] Bookmark [2] Library [3] Video Segment Playlist within a single video
Question about chapter change event
Problem in Monitor Control API's in Vista
HD DVD project questions
The 'priority' attribute is not declared.

Top Answerers

cheekster
TigerPhoenix
seprice
Freedon Nadd
Vaish
Robert Kozak
Jbud
DrJoness
Terry A. King
Corby111
Radio Heritage Foundation - sharing the stories of Pacific radio
Only Title

Answer Questions

  • Gurbhajan filecache

    Can anyone tell me something about the filecache I haven't found any detailed example code regarding the filecache. So in what cases do I have to preload files Especially how is this preloading done Do I have to enter something in the manifest or playlist My recommendation is to keep the ACA file and reference it as a resource in the playlist (ApplicationResource for instance). Also, reference it as a resource in your manifest to prevent the application from executing until the resource is loaded in the file cache. Once you do this, you should be able to use the URI to the file within the ACA w/o doing any FileIO copy magic. The reason why I want to copy it is because I am planning to update thi ...Show All

  • Ed Santosusso 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

  • Marleen What is the best way to implement the UI for author mode

    Hi, I found it's rather painful to build the UI for author mode, especially when I need to align the controls, or many fancy stuffs. Currently, I am using the method that I think the most simple one that I know: p_elSource.innerHTML = "<table style='width:100%'><tr><td>Url</td><td style='width:100%'><input id='myInput' value=''></td><tr></table>"; var myInput = document.getElementById('myInput'); Above is the simple one but there is a problem here: getElementById is not a good approach as some people mention (especially when add 2 same gadget on the web page). And I also encountered some problem in sizing. Can you share your experience to build a robust UI but less painful Th ...Show All

  • entrylevel26 WMF downloads

    I know this is a really beginer question, but I've not found the aswer anywhere else... What do I need to develop with de WMF, is there any SDK, DLL, etc needed I'm using windows Vista Ultimate, and Visual Studio 2005. Thanks What you want is the Windows Vista SDK ( http://www.microsoft.com/downloads/details.aspx FamilyId=C2B1E300-F358-4523-B479-F53D234CDCCF&displaylang=en ). Good luck! Thanks! Thats what I've been looking for. ...Show All

  • jalden My first gadget (a google searcher)

    I had to overcome quite a few challanges to get my google searcher ( http://gallery.live.com/liveItemDetail.aspx li=1ef8d7de-10e8-4a87-9e2e-c98bd47f05f5&l=1 ) to use the flyout window to display results Im quite happy with the results but always will to learn, let me know your comments:) - for info on how I made it take a look at this page on my blog http://blog.the-dargans.co.uk/2007/01/windows-vista-sidebar-development.html Thanks Ross Dargan ...Show All

  • gregg100 Question about style:opacity behavior

    Hi, According to chapter 7.6.3.3.2.41 of specification, style:opacity is applied to content elements. Exact description is the following: “The opacity property is used to determine how to blend the background color and marks of areas produced by an element with the current composite rendering.” HDiSim (ver. 061005-0100) doesn’t apply style:opacity to text – text is always opaque. At the same time opacity is applied to style:border . Should style:opacity be applied to text element in the following example Should style:opacity be applied to border What about " marks of areas ", what does it mean < div id =" Div1 " style:backgroundColor =" blue " style:opacity =" 0.2 " style:x =&qu ...Show All

  • Tilfried Weissenberger SideBar Gadget and <object /> Tags

    I assume that SIdebar is using a mini-IE7 window to display themselves, but I can't seem to get an <object /> tag to work in my gadget. Any idea why that wouldn't work Before I spin my wheels understanding what is happening, I wanted to make sure that there wasn't a security prohibition to using an <object /> or a <embed /> tag. WPF/E is just a subset of WPF that's cross-platform/cross-browser. Running them though an IFrame does work. Referencing external files will not work. Quoting Brian from the Sidebar Dev team: " Samples that access external files will not be able to access those files. This includes images referenced in the XAML and XAML files, even inside the gadget package. This is not a securit ...Show All

  • Ajay Suri 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 Check the "PROCESSOR_ARCHITECTURE" environment variable. If it's not "x86" it's 64 bit. I think the valid values are "AMD64", "x64" and "IA64" (obviously not relevant to Vista) 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 IsWow64Pro ...Show All

  • BubbaHasty Using gadget from a 3rd party place.

    Hi! I have a gadget, that Ii don't want to send to the live gallery, but I'd like to use it on live.com from different machines (home, work). And I don't want to install web server on each of these PCs, and use the gadget from localhost. So i want to put it on a web server I can reach from both places. But when I try to add the gadget manifest's URL on the live.com with my web server's ip I get an error: "checking for autodiscover tag..." and then nothing happens. Yes, I read an explanation for that. (Besides I tried also with IE6, but got the same problem.) But if there is a work-around in the gadget SDK to handle the 'cross-domain limitations of the XmlHttpRequest' , why can't the live.com make the gadget addition in this way ...Show All

  • Saeed Ahmad MFT help

    I'm trying to create an MFT for Windows Media Player 11, based on the GrayScale sample in the SDK. The problem is in the ProcessOutput method. I'm unable to "Lock" the input buffer; it works fine on the output buffer. hr = pIn->QueryInterface(IID_IMF2DBuffer, (void**)&pIn2D); if (SUCCEEDED(hr)) { ::OutputDebugString("input buffer: 2D\n"); hr = pIn2D->Lock2D(&pSrc, &lSrcStride); } else if (hr == E_NOINTERFACE) { hr = pIn->Lock(&pSrc, 0, 0); lSrcStride = lStrideIfContiguous; //assert (cb == m_cbImageSize); } The first QI returns E_NOINTERFACE and the attempt to call Lock on pIn results in E_NOTIMPL. If I check the size of the input buffer, it's zero -- is this normal ...Show All

  • piip Testing and Debugging

    Hi all, I am trying to debug my .js file in VS 2005. I followed all the steps mentioned in SDK (atleat 10 times). But the program never pauses at the breakpoint when I load the gadget. Am I missing something in this process..Please suggest... Thanks Once you've enabled debugging support for IE (see above) and restarted IE (again, see above), there'll be a new menu option called "Script Debugger" under the View menu. Inside the "Script Debugger" submenu, you're given the option to "Open" or "Break at Next Statement". "Open" will prompt you to open a new debugger or attach an existing session. "Break at Next Statement" will do exa ...Show All

  • Howard Pinsley How to set and call titleEvent and ChapterEvent?

    I followed the spec example (Z.6) and put a titleEndHandler(evt) in my script file. And added EventListener (addEventListener("title_end", titleEndHandler, false) on top of my script file. But after my title play through, the event is not called. I thought the event should automatically fired. Do I need to do anything on the playlist too Also make sure it is a PlaylistApplication -- if it is a title application it will probably be shut down before the end event is fired. The event is automatically fired when you leave the title - either by playing through to the end or jumping into a new title. How are you confirming that your titleEndHandler function isn't being triggered Have you adde ...Show All

  • jcnconnect NamedNodeMap Interface ( usage guidelines)

    Hi everbody The DOM Level 2 Spec (page 44) defines NamedNodeMap Interface but it does not give a method to create a NamedNodeMap. So the only use of NamedNodemap is through the Node interface where we have a member variable : NamedNodeMap atributes; ie the attributes belonging to a node can be assumed to be stored in a NamedNodeMap. ------------------- The questions are : 1. Does all the attributes (specified or non-specified(ie those having default values)) belong to a node's NamedNodeMap 2 . The NamedNodeMap Interface has method item() (Refer Page 44 DOM Level 2 Core Specification ). Quoting the spec : The item() returns the indexth item in the map.If index is greater than or equal to number of nodes in the map ,this returns NULL ...Show All

  • dev_bih How to output 2 streams into evr

    Hi, all: I know EVR can mix two streams into a single frame. But when I create such topology and call start, I get a error code: MF_E_TOPO_UNSUPPORTED. So I have two questions: 1) How to create such topology about mixing multi-streams into a single evr 2) Due to async programming style, it is hard to find out which step cause error. Is there any way to know the details when I get a error code from the Invoke function Thanks. Although you are correct that the EVR does support multiple streams of input, the Media Foundation pipeline does not support this EVR feature in Vista. Therefore, I'd guess that your error stems from the fact that Media Foundation is trying to connect both of your inputs to the same EVR stream and is get ...Show All

  • Nightman28 Can gadget read data from Excel file?

    Hi guys I'd like to develop a gadget for learning Japanese alphabet (hiragana/katakana, and in next releases Kanji too). I wanna make something simple but effective like this: [kanji Unicode character] [pronunciation] [meaning] So, as you can see I need some kind of database where I can write/read all that data. I thought about Excel (Column A for "Kanji", Column B for "pronunciation", Column C for "meaning"). Will it work How can I get my data from .xls file If not, can you advise me another database Thanks in advance I had a typo above (now fixed) - I said "MSHTML", but I really meant "MSXML". Use MSXML to read your XML file from inside your gadget. Here's some documentatio ...Show All

818283848586878889909192939495969798

©2008 Software Development Network

powered by phorum