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

Software Development Network >> Audio and Video

Audio and Video

New Question

Bad Ratings
SDK for 5536 (Pre-RC1)
Register DLL
xml, java reference books
How to control frame buffer mechanism
IWMDMProgress
location.reload(true) kills the System object?
Is it possible use xaml in gadget with transparent background ?!
Background/Start Menu
filecache

Top Answerers

Dan Crowell
GrizzlyBear1010
roy-roy
Ingenious
Jocker23
haihtomy
D.V.Sridhar
cablehead
Christie Myburgh
MatteusX
sitemap
Only Title

Answer Questions

  • Shyam Amrawat about Web.Network.createRequest(~~)

    hi. i have a question about Web.Network.createRequest() first of all .. my code..below.. ============================================================= var M_ObjHeaders = new Array(); M_ObjHeaders["Application-Key"] = "humbroll"; var request = Web.Network.createRequest(Web.Network.Type.XML, m_url, {proxy:"generic"}, callBack, M_ObjHeaders); alert("test12-0"); request.execute(); alert("test12-1"); ============================================================= test12-0 is popup. but test12-1 not. i want to setting my header information in XMLHttpRequest with Web.Network.createRequest() method.  my code is just follow API.. what's wrong im very nervous about your answer. please help me.gentleman. good luck. ps : sorry about my fool english ...Show All

  • Fraser Putnam sonic error

    Hi, i'm getting this runtime error when i try to emulate a project: abnormal program termination. The debugging last lines utility say: XPath: Begin expression '//button[state:focused()=true() and style:backgroundColor()='rgba(206,241,255,255)']' became TRUE. ApplicationMgr: Removed all applications. I have archiving and multiplexing turned off, when i don't use script in the advanced content emulation of video is no problem. To bad iHDsim doesn't play (multiplexed) hd video files. Neverrmind I got it working again There is nothing wrong with that XPath expression... Can you narrow down the error to a specific action Can you use Diagnostics.trace to f ...Show All

  • PedroCGD Checking amount persistent storage

    I've found how to check the amount of persistent storage of the hd dvd player, perhaps someone else may like this: - Start player without disc > press [setup] on the remote controller > navigate in the menu to general and press [right arrow] > navigate to maintenance and press [ok] > navigate to persistent storage and press [ok] > now press setup again and voila the persistent storage management menu displays > you can press [right arrow] to check the storage capacity The HD-A1 shows 130MB greets Thanks for posting the tip. In the future, if you have a comment (rather than a question), it's helpful if you mark it as a comment when you create the post. Then it won't appear a ...Show All

  • Jack210 Colorfull Drawing

    I thought I'll share this demo with everyone, it displays colorfull random lines on the screen  Place in markup: <object type="application/x-graphic" id="theimage" style:position="absolute" style:x="0px" style:y="0px" style:width="1920px" style:height="1080px">     <param name="width" value="1920" />     <param name="height" value="1080" /> </object> Place in script: //define variables var x,y,cr,cg,cb,col,p1,p2,pen,obj1; //set timer var timer=createTimer("00:00:00:05",1,randomline); timer.enabled=true; //define functions function randomline(){       x=Math.round(Math.random()*1920);       y=Math.rou ...Show All

  • jcarlos.net Advanced subtitle

    Is it possible to add advanced subtitle in existing pre-recorded HD DVD Thanks. 4.6.1 Alternate subtitle stream An alternate subtitle stream which has been previously downloaded and cached on the user’s home network is listed on the subtitle menu along with all of the on-disc subtitle streams. When selected the alternate subtitle stream is synchronized to the feature film. The user can toggle between the cached subtitle stream and the disc based subtitle streams via the remote control without interrupting the video. (Requirements Specification for HD DVD Video Application) Yes, although you will need to download a new playlist, etc. as well in order to reference the new tracks (unless, of c ...Show All

  • Tad McClellan DVD Authoring Tool: Seeking DVD and HD DVD Authors/Developers

    Hi, For the past eight months we've been working on a new product called DVD One, it is a single specification for Standard DVD's, HD-DVD's and soon to come Blu-Ray Discs. This means you can write you interactive layer once and then compile to the format you want, or to multiple formats if you want to release the DVD on many different formats. We are currently looking for talented and eager developers, authors, graphic artists and flash developers to give DVD One a try, by visiting http://www.netblender.com/ lp=dvdone . Please note DVD One does not include a I-HD simulator, we recommend using Microsoft’s Starter Kit if you do not have one. DVD One will incorporate all the I-HD DVD features, as well as add some additional functio ...Show All

  • Kiran Suthar Initial video state

    I would like the video not to play at start, but show the first frame and be positioned at the right top corner. If i call Player.playlist.pause(); Player.video.main.changeLayout(...); The video is not resized till it is started. When I call these lines in reverse order, I get exception HDDVD_E_INVALIDCALL changeLayout can be used during two play states: 1) play: in this case the layout is change during the definted time. 2) plause: if the player is in pause state you have to use 00:00:00:00 as duration and the change will be applied as soon as the player returns to play state. If the player is any other state you will get a HDDVD_E_INVALID call exception. I think the best soluti ...Show All

  • dpuza Mutl-input and multi-output

    Hello: I am writing a media source that output 2 streams. One is a video stream and another is a audio stream. When start play, I got a error code from session get event (MEError, E_FAIL -> no any meanful information). But if I Deselect any one stream, another stream will play normally. so what is the problem about this issue About other similar issue. I write a MFT which accept two streams from 2 media sources and then output a single stream to audiorenderer. After set topology and play it, I got a error about "not support topology". I don't know what is the problem It is caused by 2 media sources or multi-input MFT Thanks About your Media Source... A Media Source with multiple streams should wo ...Show All

  • DearME Refreshing Gadget Content problem

    EDIT: I have the gadget refreshing now, but how do I make it refresh only certain elements I'd be great to have just the SSID refresh when needed, or the Signal Strength. How are you currently refreshing it Setup a refresh function, running on a timer, that only updates the elements you want to update. eg window.setInterval(myRefreshFunction, 5000); //5 secs ... function myRefreshFunction() { // update the elements } That is the way the gadget currently refreshes, but how do I make it refresh only certain elements Example: <span id="tester">[javascript innertext that changes]</span> What would you put in the myRefreshFunction() for c ...Show All

  • fatquack Open a file on disk

    Is there another way of opening a file on disk (to read from it), besides then using ATL ATL You can use FSO. There's lots of examples on here. This being the latest. yeah, that's what i wanted. so it's not posible without activex. thanks or ADODB.Stream if u want to read binary files. John Hax wrote: or ADODB.Stream if u want to read binary files. Of which I wrote an example here . You can't do anything with a binary stream however, so its uses are limited. ...Show All

  • NickNotYet Difference between Primary Video Set and Secondary Video Set?

    As per spec, Substitute Audio Video in Secondary Video set is for substitution of Main Audio/Video in the corresponding Primary Video set . Why is this sort of substitution required. Can any one expalin the necessity of this substitution in real time HDDVD movie discs. Secondary audio video clips can contain SubVideo or SubAudio tracks. SubVideo/SubVideo is an audio/video track in addtion to the main audio/video track. Sample application: Additionally to our main movie you can deliver a sub video / audio track that contains the director comments. If the user wants to see/hear the director comments you can run this secondary av clip in parallel to the primary av clip and mix the sub video / sub audio w ...Show All

  • Chaitanya15 About ShutdownObject() of IMFActivate.

    I have made OriginalSink and implemented IMFActivate, I could create instance of mySink in the PMPProcess. When the PartialTopology was sent to PMPHost, ActivateObject() of mySink(IMFActivate) was called from PMPSession.  And then I have two questions.  1. Although  ActivateObject() of mySink was called from PMPSession, ShutdownObject() of       mySink was not called from PMPSession  .   This is why 2. When PMPSession was called Shutdown(), Shutdown() of mySink was called synchronously.   And mySink shut down myStreamSink.   Is there any problem about that ShutdownObject() has never been called   Hi Matthew! Thank you for your answer! ...Show All

  • Fster Text to Display Rending

    Here's the issue in the simplest terms I can explain it. This all started with subtitles. It is obviously easier to have a markup file with all the subtitle text in it instead of having to make individual graphics for each. Far as I know, this should be possible. Unfortunately, it's not going so well. After many attempts at subtitles, I decided to just add a very basic text output from the main markup file. It still did not work! I've checked the fonts, tried a few, and they are all Open Type. It's a very simple piece of code that just sets the position, font, and color. I left out all the timings and animations to be safe. Is there a bug in the Toshiba Players that won't do this or I am just overlooking something right in front of my face ...Show All

  • mkfl Additional requirements for a WMP plugin on Vista 64?

    I have a WMP plugin (as a DMO) that works with Media Player 10 and 11 on Windows XP and Vista (32-bit). That same DMO does not work on Vista 64-bit. My DMO registers with IWMPMediaPluginRegistrar::WMPRegisterPlayerPlugin() and ThreadingModel = 'Both'. () My plugin will support IEEE_FLOAT as well as PCM audio, but it does not appear to get the chance. I usually see my DMO loaded into multiple processes on Vista 32, and the rendering always occurs in an MFPMP.exe process. I do not ever see my DMO getting loaded into the MFPMP.exe process on Vista 64, and I suspect that is where the audio rendering is occurring since I do see an MFPMP.exe process starting when audio playback starts. What more do I need to do to get my DMO picked-u ...Show All

  • Jstun Sidebar gadgets outside the sidebar?

    Hi guys, I'm interested on building some gadgets and I'd like to know a couple of info about this specific type. 1) Can they exist outside the sidebar In this case, can they know their position in the stage 2) Can they communicate to each other I had a look to the API and I couldn't find so much information about these topics. Any info will be very appreciated. Thanks, chr Now I can't see it but that is definitely what I was looking for. Thanks, chr I think he means, you can fire a function in one Gadget from another. Have a look a Bruce's sidebarAlert gadget as this registers a JavaScript function for triggering from ActiveX. ...Show All

456789101112131415161718192021

©2008 Software Development Network

powered by phorum