FLV with two sound

Hi my friends
I need a flv with two sound. I want to load load two different sound for one flv file. for example I want to load my flv file in frame 1 with sound 1 then I want to load my flv file in frame 2 with sound 2. How can I do it?
Best regards
Hanif

you should use two flvs that contain the two sounds if sync'g is an issue.  if it's not an issue, then use two sound class instances to play your two sounds.
you can improve your current sync'g by disabling the autoPlay of your flv and starting by the flv and your timeline after the flv completely downloads and your swf completely downloads.

Similar Messages

  • MASSIVE Problems With TWO Sound Ca

    Hello all. Here's the issue. I had an X-Fi XtremeMusic PCI card, which worked fine on my Vista 32bit for about a year. I reformatted last week, with no problems for a few days. Installed the newest Creative and nVidia drivers, as always. After about three days, the card suddenly stopped working. Tried for hours to get it back on with no luck. Wound up reformatting again and the same thing happened. After a few days, I rebooted and when it came up, Windows asked to install drivers for "multimedia device" or something like that. It wasn't even recognizing it as X-Fi anymore, and no matter what drivers I did (removed old drivers using driver cleaner, installed new drivers, installed off the disk) it would not work. I read on here that the only solution pretty much (thanks Creative!) was to switch PCI slots. That's not possible for me, since practically my entire mobo is eaten up by my gigantic 8800GTX video cards.
    So yesterday, I went to Best Buy, and much as I didn't want to, I spent $50 on the X-Fi Titanium Fatalty PCI-E. Cleaned the system of old drivers, but when I put the card in and rebooted, Vista auto detected the hardware and proceeded to install generic drivers for it. So I turned off driver install upon auto detect in my windows settings, cleaned the drivers again, unplugged my ethernet, and rebooted. Believe it or not, it did the SAME EXACT FRIGGING THING!! I tried to install the new downloaded Creative drivers, and it said it detected newer drivers on the computer and would not install. I tried to install off the disk, and everything went A-OK, except the audio console insists that there's no creative hardware in the computer. And according to my device manager, all that's in there is a "High Definition Audio Device"!!!! I am at a complete and utter loss as to what to do to get this thing installed properly. Keep in mind that I've been building computers and installing drivers FOR YEARS! Creative has been absolutely abysmal throughout this problem. Their knowledge base is terrible, offering no solutions to known problems, and they don't even have a customer support line. Please, someone help me before I put a bullet through my head. And I'm REALLLLLLY sorry for such a long post. Thanks for any and all who read through it and can help.
    Anyway, here are my system specs for what it's worth:
    Vista 32bit SP2
    Intel Core 2 Quad Q6600 2.4ghz
    (2) nVidia 8800GTX in SLI
    4gb gaming-grade RAM
    Asus Striker Extreme Mobo
    X-Fi Titanium Fatalty card

    Sorry guys, forgot these basic things. My mobo, the Striker Extreme, has no onboard sound. It shipped with a crappy SupremeFX sound card to be installed seperately. Since I always had a Creative card, I never even bothered with it. In BIOS, the only options are Auto and Disabled. It was always set to auto and was never a problem, but when all this started happening, I switched it to disabled to see if it helped, and it didn't.
    As for the power supply, I have a 700W SLI-ready OCZ GameXtreme.
    Thanks for the replies guys, I appreciate it.
    Message Edited by hydr0 on -2-2008 02:27 PM

  • Slow video playback with 2 sound tracks

    Hi,
    I've just been playing around with quicktime files with 2 sound tracks with different languages. When I copy these files to the ipod they playback, but in slow motion. Are there any guidelines for making ipod compatible 2 sound track files?
    I know there are movies in the itunes store with two sound tracks with different languages and these are supposed to work OK with the ipod nano.
    Any experiences? Thanks,
    Robintosh

    What software are you using to convert the videos to iPod format?
    If you are using Quicktime Pro, or iTunes 6 to do the conversion... then that is most likely where your problem lies.
    Your source video file is probably muxed.
    Neither QT Pro or iTunes has the ability to successfully encode a muxed video file with audio. You'll end up with video and no audio.
    http://docs.info.apple.com/article.html?artnum=302588
    You'll need to use some other third-party software to do the conversion. There's a handful of software available. Just search the forums and you'll find many titles mentioned.
    Try MPEG Streamclip.

  • Getting a flv file to start playing with no sound

    Hello,
    I am trying to get my flv file to start playing when the page is loaded with no sound, but I am have no luck. The flv file starts playing fine with the sound on, and I can turn the sound off with my volume controller, but I need it to start playing with no sound. Please help.
    var restartTimer:Timer = new Timer(19000,1);
    restartTimer.addEventListener(TimerEvent.TIMER, startTimer)
    var myImage:mcImage = new mcImage;
    var myReplayBtn:mcReplayBtn = new mcReplayBtn;
    //--------------------Video Controls---------------------
    var videoConnection:NetConnection = new NetConnection();
    videoConnection.connect(null);
    var videoStream:NetStream = new NetStream(videoConnection);
    videoStream.play("sebring09.flv")
    var metaListener:Object = new Object();
    metaListener.onMetaData = onMetaData;
    videoStream.client = metaListener;
    var video:Video = new Video(195,132);
    video.attachNetStream(videoStream);
    addChild(video)
    swapChildren(whiteOutline, video)
    video.mask = myMask
    video.x = 7.5;
    video.y = 3;
    function onMetaData(data:Object):void
    //------------------------Timer---------------------
    function startTimer(event:TimerEvent):void
    addChild(myImage)
    myImage.x = 9;
    myImage.y = 20;
    addChild(myReplayBtn)
    myReplayBtn.x = stage.stageWidth/2;
    myReplayBtn.y = stage.stageHeight/2 - 12;
    myReplayBtn.addEventListener(MouseEvent.CLICK, replayMovie)
    myReplayBtn.buttonMode = true;
    function replayMovie(event:MouseEvent):void
    videoStream.play("09_Sebring_incar_Cut.flv");
    removeChild(myImage)
    removeChild(myReplayBtn)
    restartTimer.start();
    restartTimer.start();
    //-------------------------Audio Controls---------------------------------
    var soundVol:SoundTransform = new SoundTransform();
    var soundVolume:Number = 1;
    // Code that handles the volume slider
    var trackBounds:Rectangle = track_mc.getBounds(track_mc);
    var xPos:Number = trackBounds.x;
    var yPos:Number = trackBounds.y;
    var widthPos:Number = trackBounds.width-track_mc.slider_mc.width;
    var heightPos:Number = 0;
    var bounds:Rectangle = new Rectangle(xPos,yPos,widthPos,heightPos);
    track_mc.slider_mc.x = widthPos;
    track_mc.mouseEnabled = false;
    track_mc.slider_mc.buttonMode = true;
    track_mc.slider_mc.addEventListener(MouseEvent.MOUSE_DOWN,dragSlider);
    stage.addEventListener(MouseEvent.MOUSE_UP,stopSlider);
    function dragSlider(event:MouseEvent):void {
    event.target.startDrag(false,bounds);
    addEventListener(Event.ENTER_FRAME,setVolume);
    function stopSlider(event:MouseEvent):void {
    track_mc.slider_mc.stopDrag();
    removeEventListener(Event.ENTER_FRAME, setVolume);
    function setVolume(event:Event):void {
    soundVolume = track_mc.slider_mc.x/widthPos;
    soundVol.volume = soundVolume;
    SoundMixer.soundTransform = soundVol;

    you can use the soundmixer's soundtransform to control all volume but, unless you have multiple sounds, you should probably use the netstream's soundtransform.
    in either case, to start your video with no sound, assign the volume property in you onMetaData function:
    function onMetaData(data:Object):void {
    var st:SoundTransform = videoStream.soundTransform;
    st.volume = 0;
    videoStream.soundTransform = st;

  • Play flv with Sound object

    How can I play a flv file, stored on my file system
    (C:\Program Files\Macromedia\Flash Media Server
    2\applications\my_app\streams\_definst_\File1.flv) play with the
    Sound object?
    Any help greatly appreciated.

    blurrymurry wrote:
    > your right !
    > thanks flashtard your the tardiest!
    > I thought the variable name was good enough, but forgot
    to include the linkage
    > id in the stop button. so that it would only stop the
    specified sound.
    > So much to learn
    > Hey how does one go about becoming a news group member
    so that other forum
    > users think I'm cool. Is there a point in this or do
    they just get mad at all
    > the newbie questions?
    In regards to News Group users.
    The news server was the very first thing set up almost decade
    ago by macromedia
    for all their products as user-to-user support. Web based
    forum is a very new
    addition and it's not properly synchronized. Many of use
    remain using news server
    because it's much faster to load the messages, there are no
    pages to flip through,
    all the topic and replies follow by the order they appear and
    generally, it's much
    faster to search the forum than using the web based interface
    and lots and
    lots more pros in using that. Not all users however have the
    access to news servers
    so the web based forum is to allow anyone to get help when
    comes to Adobe/Macromedia
    tools.
    If you run programs like Outlook or Thunderbird (like myself
    here) for you emails, you
    can easily add/access the news server by setting up new
    Newsgroup Account.
    The server is forums.macromedia.com , once you there you can
    get list of all the other
    servers and subscribe to any one you need.
    Best Regards
    Urami
    !!!!!!! Merry Christmas !!!!!!!
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Advance interaction with two consecutive sound files

    I am developing an interaction where the user needs to select an answer then a feedback is shown. With this feedback I would like to play two sounds one after the other: a bell/buzz sound (to indicate wright or wrong) and a text to speech (to explain the feedback)
    If I place both sounds in an advance action, it only plays one of them. Can you please help me finding a solution to play both sounds one after the other without have to create only one sound that include the bell/buzz and the feedback?

    I see, audio files add a bunch to filesize.
    Is this a question slide? And do you trigger the action with the Success/ Failure events?
    In that case you could try (I didn't check) to play only the first clip with the Advanced action, add the statement Continue at the end. The playhead will be released from the pausing point. Now you'll have to see how long that first clip takes? Extend the slide's duration and add the second clip as an audio object (invisible object to which you attach audio) in the timeline after the duration of the first clip. Hope that explanation makes sense?
    Lilybiri

  • My Past, Present & Future with Creative Sound Blaster cards

    I wrote a small product review of a Z-series card i regrettably purchased and creative responded. I replied to them and copied+pasted it here. First and foremost please understand this is just an open letter talking about my love for and mostly positive experiences with the Sound Blaster line of cards since the mid-late 1990s.
    Attached is an annotated picture of almost all the Creative hardware I've bought over the years.
    Take a good long look at that picture. Think about how many songs have been played through those devices, think of how many movies have been heard through those devices, think of how many games made me jump out of my seat from sound effects heard through those devices, and lastly think how many thousands of hours this amounts to.
    STOP READING and LOOK at that attached PICTURE.
    I use the word 'almost' because it does not include the card I recently purchased off e-bay, which was listed as (and was) mint condition new, and cost me $250.... a Sound Blaster X-Fi Titanium Fatal1ty Champion Series card.
    If the direction Creative is going to continue to go is the direction that it's been going over the past handful of years this will be the last Creative product myself or anyone i influence or make purchasing decisions for will ever buy. Being in my mid 30s I'd say you'll miss out on at least another 20-30+ years of future product purchases.
    Below is my address of your reply to my review of your product in a piece by piece layout:
    "Based on user feedback we've done the following:
    - Take up less disk space"
    I run two 128GB SSDs in a hardware based (LSI Logic 8704ELP) raid-0 array so the disk footprint of drivers and software is important to me but whatever space you reduced your driver to is trivial.
    %ProgramFiles(x86)%\Creative\(ALchemy, AudioCS AutoMode Switcher, Console Launcher, Shared Files, ShareDLL,THX Console, Volume Panel)
    in total take up about 100MB of space. reducing this means NOTHING because it does not allow for more hefty software (Games or Design/Drafting/3D-Modelling Software) to be installed. Now if say your driver and software had a 1GB footprint and you reduced it to 500MB that would be significant because 500MB is enough space to account for one or 2 of average installation footprints of the products in the Adobe Creative Suite. Reducing the size from 100MB to 25MB/50MB/75MB is moot.
    "- Optimized controls for touch screens"
    This point is amusing, why? because you are making the same mistake Microsoft made with Windows 8 & Metro. Most people who buy a creative sound card are putting it in a PC and do not have a touchscreen. I don't manage a lot of computers but the ~200 i am responsible for bypassed Windows 8 (maybe even Windows 9, we'll see) and either moved from Windows XP to Windows 7 or they will be staying with Windows 7 for the foreseeable future. The touch centric design of Windows 8 is a significant part of this decision despite all the things Microsoft did that i think are steps forward (like better native support for multiple display devices to name one example).
    "- Streamlined the interface so it's easier to navigate (removed "modes" and have all controls available regardless what you want to use the card for)."
    Dumbing-down a product to reach a greater audience is walking the fine line of Quality vs. Quantity. Why you've sacrificed significant Quality to increase Quantity i do not know. While I will agree making 1 interface instead of 3 can be a potential step forward you did more than streamlining the user interface- you removed prominent, useful, and important features.
    "- Better tie in with the Windows audio sub-system."
    Through out the decade the only problems I experienced with Windows and my Creative products i can count on one hand. The first would be when Microsoft abandoned DirectSound and moved to an UAA based audio stack in Vista forward and your company dropped the ball and Daniel_K picked it up and made working drivers for your products and you went after him... I was one of the people who used his working drivers to make your sound card work properly when you failed to do so. Second was the fact that you people charged for ALchemy when the move to Vista occurred... this was truly a sh*ty thing to do. The third was the X-RAM causing a BSOD (STOP 0x50 - PAGE_FAULT_IN_NONPAGED_AREA) in windows on a regular random basis because of your device drivers and the best working solution was to disable using the X-RAM on the card- a selling point of the cards to begin with (albeit in years prior).
    Allow me to elaborate some more while I have time since it's sunday night and the family is busy with other things and will be off to bed thereafter.
    Creative's device drivers and software has always been a point of contention. You don't make the install discs available for download on your website for starters. This is a fascist move on your part. Your driver installation procedure and reliability is hit or miss. I personally have not had a lot of trouble with the drivers (only a few hiccups here and there) but i have read on the forums where all sorts of other people have (I'm not in disagreeing that their problems are partially their fault, but that's the price of running Windows instead of buying a Mac). My experience with your driver software suites over the years have been mostly (A) "When it works as expected it's sheer aural bliss beyond that of any other sound card in existence! THIS is why 'Sound Blaster Compatible' was what other companies put on their products, because Creative set the standard for everyone else to meet." but also sometimes (B) "everything installed and worked fine but now something is corrupt and not all the speakers have sound coming from them or the sound is all screwed up and the driver won't uninstall/reinstall/update correctly because it's corrupt and it's not deleting the driver files because windows has the files locked and safe mode isn't helping so now i have to physically remove the card from the PC and try to completely clean out my system of the Creative software. I can't believe they went after Daniel_K the way they did, i wish he'd come back and fix their drivers. Now which box did i put that install cd in...."
    There are 2 reasons I've bought Creative sound cards for over a decade now. CMSS 3D when listening to music while working throughout the day and EAX in videogames at night.
    I remember the moment when I experienced EAX for the very first time. I was in college and over at a friend's place. He had just got a new game called Thief: The Dark Project. I remember him telling me about something new called EAX and that only Creative cards had it and that it was supposed to be awesome. About an hour later after watching and HEARING him play Thief I was hooked. Creative had secured a place for it's hardware in my budget for every PC i built from that day forward.
    Being that I've worked from home for about a decade now I will listen to music while I work and get in an hour or so of gaming at night as time allows. Straight off the bat the first time i ticked that box for CMSS 3D long long ago and heard music coming from every speaker in my home office i was amazed and overwhelmed. Then when you introduced the ability to set the individual speaker distance and volume from the listening position it was the icing on the cake. I was surround by sound. It was SHEER AURAL BLISS. This feature called CMSS 3D would become the second reason I purchased and recommended Creative sound cards for the decade to come.
    As i stated in my review, the only reason i bought a new sound card was because the motherboard I was purchasing had no PCI slots (I remember when motherboards stopped having ISA slots as well...). Before making my purchase I read. I read a lot. I read about the changes you made with the X-Fi Titanium HD and then the Recon3D, and the more i read the more a feeling of apprehension began to take hold. Then i got to reading about the Z-series and read about some of the positive changes between it and the Recon3D line of cards and I became a bit more hopeful.
    Sadly my apprehension was spot on... Listening to music was a worse experience when compared to my X-Fi Platinum (or even my old Audigy 2)... and did not even come close to justifying the purchase of the card compared to just using the integrated sound capabilities of my motherboard, an ASRock Z87 OC Formula/ac. But none the less I still had EAX to fall back on right? wrong... I installed a couple games, some new and some old, some with EAX and some without, and for about 2 weeks i played a bit of each one to see how the card handled new and old games. Sadly EAX compatibility didn't even matter because it was overshadowed by poor directional audio reproduction... that same front center speaker that was overbearing when listening to music was noticeable when gaming to the point that it was negatively affecting my gaming experience. I tweaked and toggled every setting i could and even uninstalled and reinstalled the drivers and software to try to mitigate this but to my dismay i could not. It was at this point I went weighing my options... and looking for an X-Fi Titanium (NON-HD!) and suffered the capitalist price gouging that occurs in such supply & demand situations... at least i talked the guy down from his original asking price of $300. I bit the bullet on this because chances are this is going to be the last Creative card i ever own...
    I've had my Creative Sound Blaster X-Fi Titanium Fatal1ty Champion Series installed for just over a week now. Everything sounds precise and as it should when you have a quality piece of hardware paired with quality software. Directional audio in games comes from all speakers appropriately and not excessively from the front center speaker unless it's supposed to. Ambient music floats through the air all through out the day creating that familiar feeling of sheer aural bliss as it did before. The only downside is I'm getting to experience the problems other people have with this card (strange loud static-like warble EMI type noise coming from speakers, unaffected by windows volume control) but I have found a work around that I'm using on the rare occasion this happens (disable the device in device manager, re-enable device in device manager).
    Chances are what i've written above is perhaps an opening soliloquy of the requiem for the Creative Sound Blaster, the card that defined an industry and the company that turned it's back on it. I don't expect anything to come from this letter and I don't expect a meaningful reply from you. You'll probably write me justifying your decisions you've made with your product line and offer some false sincerity about how you are happy i am enjoying my price-gouged discontinued soundcard i had to buy off e-bay because your current line of products are not a step back in your eyes because of the profits they turn. This generation of customers who buy your Platinum HD, or Reco3D or Z-series line of cards probably oblivious to what they are missing out on (through no fault of their own), funny how the bliss of ignorance works and lines your pockets...
    It saddens me that i had to buy a discontinued product off e-bay because it's a better product than what your company currently offers. I wish this wasn't the way things turned out. When you dropped the fun presets and finite control of the EAX effects during the transition from the Audigy to the X-Fi line of cards I noticed but since they were not the main reason I owned a Creative card I tolerated it. But now you've gone and ruined the features that were the reasons i bought Creative cards, and this I will not oblige.
    My Creative Hardware.jpg

    @To the OP:
    I own a X-Fi Elite Pro for the past 8 years now.
    Since there, this card has faithfullly seen me through 3 major PC upgrades.
    I'm currently at a point where, very sadly, much of what you've described is also weighing on my decision to not go for a Z line.
    @Creative:
    I do hope you're listening and can come up with a solution to a simply design feature - namely a fully working Stereo Surround, like the one that was available in the X-Fi line of cards via CMSS-3D.
    Regards,

  • WinXP with two users - can we have two separate iTunes, one for each user?

    Question:  On my Dell WinXPPro SP3 desktop with two users (myself and my wife), can each user have a separate iTunes - so what each of us does with iTunes has no effect on the other?
    Details:  Yesterday, June 29 2012, I bought a new iPad 3 with WiFi only, my first Apple product.  My #1 motive for buying it is to copy movie files (avi, m4v, mp4, etc.) from my WinXP setup (PC plus hard drive) to my new iPad to watch the movies in bed on the new iPad. I understand that I shall need to install iTunes on both the iPad and the PC in order to move or copy the existing movies from the PC side to the iPad.  (I also understand that I won't be able to use iCloud because iCloud will not run on WinXP, only Vista and Win7.)  [By the way, if iTunes will NOT help me do what I want to do, please let me know.  But that is not my question.]
    I am only one of two users on the PC.  My wife is the second user on the PC.  She already installed iTunes on the PC for her own use.  She is an avid iTunes user.   Most of the time, she does not use this PC.  She has her own WinXPPro SP3 Dell laptop, which is what she uses 99% of the time.  She has also had an iPod for some time, hence her use of iTunes.  And now, for the last two weeks, she also has a new iPhone 4S and her own iPad.  So her use of iTunes will grow.  The important point is the following - whatever I do on my side, I do not want to interfere with or disrupt her use of iTunes.  Not even for a second.
    So, can I install or re-install or somehow set up iTunes on MY user on the PC so that it does not in any way use or affect her iTunes?  If the answer is "yes", please give me a step-by-step and list all details.  Is there a YouTube that shows this specifically?  
    More details:  Right now, in C:\Program Files, before I have tried to install anything myself, there are already folders for Apple Software Update, iPod and iTunes, which derive from my wife's installations of these Apple programs some time ago.  I have just now run the Apple Software Updater, which first updated itself on this PC to version 2.1.3.127 and then updated her iTunes on this PC to version 10.6.3.25.  (As a result, the following processes/services are now running, which normally don't run when I am the user: 
      C:\Program Files\Common Files\Apple\Mobile Device Support\AppleMobileDeviceService.exe
      C:\Program Files\iPod\bin\iPodService.exe
      C:\Program Files\iTunes\iTunesHelper.exe
    Also, the following processes will launch the next time I reboot this PC (which normally don't launch when I am the user):
      C:\Program Files\Common Files\Apple\Apple Application Support\APSDaemon.exe
      C:\Program Files\iTunes\iTunesHelper.exe )
    My wife says her iTunes is NOT set for Family Share.  (That sounds correct to me, for now and forever.)
    Summary:  So, how do I install iTunes for myself (for the first time) for my user on this PC so it does not - even for a second - interfere or affect my wife's use of her iTunes on all of her devices?
    Thanks !!!

    Mr. Wiclee - thanks for the link.
    When I said I had not "installed" iTunes on my iPad, I suppose I meant I have not yet signed in to iTunes, ever.  I suppose when I sign in to iTunes the first time on my new iPad, I will be required to create a new iTunes account?  Then refer to such new iTunes account when I launch iTunes for the first time on my PC as myself?  Or will I still need to use Method Three in your link? 
    The crucial thing is this - when I turn on iTunes on the PC for the first time with me as User, I do NOT want it to connect to my wife's iTunes account.  On my PC, I would want iTunes to ask me who I am, so I can then sign in with my new iTunes account that I had just created on my iPad.  How can I be sure to accomplish this goal?
    In my PC, if I look at Documents and Settings and compare the two folders for we two different users, one for me and one for my wife, I can see that my wife's has Application Data and Local Settings for her various Apple programs.  However, so do I in my User even though I have not yet installed any Apple programs on my side.  I am concerned that when I finall launch iTunes when I am user, it will open up in my wife's iTunes account, which I truly want to avoid.
    Thanks.  Please advise.

  • How to disable autoplay in windows media player, normally play FLAC and watch AVI with two or more audio streams

    0x1) is there a way to disable annoying autoplay feature in windows media player: when i play music in "now playing" mode and insert a disc which contains some video WMP stops playing music and asks me to play that disc or starts playing without any questions (e.g. when i insert DVD). in addition when WMP asks before playing it proposes three options: resume playing, go to library and play previous list. choosing "resume playing" you'll not resume the music just played, you'll start playing inserted disc. if you choose "play previous list", it also won't continue the playlist i was just playing, rather a playlist or track before the one i was just playing! very strange behaviour, isn't it?
    note that this happends only in "now playing" mode, when library is active everything works fine.
    please don't tell to go to control panel and change autoplay settings: it takes no effect. it works when WMP is not started or if WMP is not in "now playing" mode, otherwise WMP ignores that settings and demonstrates his "very intellectual"automatic playing.
    0x2) when playing FLAC files windows media player doesn't show progress indicator, it always is positioned at the beginning (or at the place where you've positioned it). if i select multiple FLAC files and click "play with windows media player" it will play only the last file from the selected list.
    0x3) when playing AVI files with two or more audio tracks WMP plays only one of them and gives no opportunity to change autio track. in wmp of vista it plays all the audio tracks at the same time (!).
    If there is no solution for these problems, please tell me where i can send a feedback about my complaints?

    i use K-Lite 5.2 full codec pack. in the k-lite codec tweak tool report i see madFLAC.ax installed. i'll try the Xiph.org filters.
    K-Lite Codec Tweak Tool | Log file | Generated at 2009-10-30 08:04:48
    #####  DirectShow Filters (32-bit)  #####
    Description:  ffdshow Video Decoder
    File name:    c:\program files (x86)\k-lite codec pack\ffdshow\ffdshow.ax
    CLSID:        {04FE9017-F873-410E-871E-AB91661A4EF7}
    Merit:        FF800001
    Description:  Nero Subpicture Decoder
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nesubpicture.ax
    CLSID:        {06CBC9D1-92B8-41FA-B4A7-D841A0C13422}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  CoreVorbis Audio Decoder
    File name:    c:\program files (x86)\k-lite codec pack\filters\corevorbis.ax
    CLSID:        {0835DC4B-AA01-48C3-A42D-FD62C530A3E1}
    Merit:        00800000 = MERIT_PREFERRED
    Description:  ffdshow Audio Decoder
    File name:    c:\program files (x86)\k-lite codec pack\ffdshow\ffdshow.ax
    CLSID:        {0F40E1E5-4F79-4988-B1A9-CC98794E6B55}
    Merit:        3FFFFFFF
    Description:  MPC - Mpeg Source (Gabest)
    File name:    c:\program files (x86)\k-lite codec pack\filters\mpegsplitter.ax
    CLSID:        {1365BE7A-C86A-473C-9A41-C0A6E82C9FA3}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  MONOGRAM AMR Splitter
    File name:    c:\program files (x86)\k-lite codec pack\filters\mmamr.ax
    CLSID:        {24FA7933-FE18-46A9-914A-C2AA0DBACE93}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero Resize
    File name:    c:\program files (x86)\common files\ahead\dsfilter\neresize.ax
    CLSID:        {30002E0C-C574-481E-A5DE-90AE54A79E10}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  MPC - MP4 Source
    File name:    c:\program files (x86)\k-lite codec pack\filters\mp4splitter.ax
    CLSID:        {3CCC052E-BDEE-408A-BEA7-90914EF2964B}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero QuickTime(tm) Video Decoder
    File name:    c:\program files (x86)\common files\ahead\dsfilter\neqtdec.ax
    CLSID:        {470157A6-BFEA-4DF8-A8A7-12CE5EF33AE7}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  MPC - FLV Splitter (Gabest)
    File name:    c:\program files (x86)\k-lite codec pack\filters\flvsplitter.ax
    CLSID:        {47E792CF-0BBE-4F7A-859C-194B0768650A}
    Merit:        00600000 = MERIT_NORMAL
    Description:  WavPack Audio Decoder
    File name:    c:\program files (x86)\k-lite codec pack\filters\wavpackdsdecoder.ax
    CLSID:        {4B420C26-B393-48B3-8A84-BC60827689E8}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero MP4 Splitter
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nemp4splitter.ax
    CLSID:        {4DA9D034-1B99-4104-BAA8-6A42E5348FEE}
    Merit:        00600000 = MERIT_NORMAL
    Description:  MONOGRAM AMR Decoder
    File name:    c:\program files (x86)\k-lite codec pack\filters\mmamr.ax
    CLSID:        {50DDA33E-C529-4343-9689-338ADC793BB5}
    Merit:        00600000 = MERIT_NORMAL
    Description:  MONOGRAM Musepack Decoder
    File name:    c:\program files (x86)\k-lite codec pack\filters\mmmpcdec.ax
    CLSID:        {555C4774-101E-49D7-8EEC-B9B87F8E1905}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Haali Media Splitter
    File name:    c:\program files (x86)\k-lite codec pack\filters\haali\splitter.ax
    CLSID:        {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}
    Merit:        00800001 = MERIT_PREFERRED + 1
    Description:  Haali Media Splitter (AR)
    File name:    c:\program files (x86)\k-lite codec pack\filters\haali\splitter.ax
    CLSID:        {564FD788-86C9-4444-971E-CC4A243DA150}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  Nero ES Video Reader
    File name:    c:\program files (x86)\common files\ahead\dsfilter\ndparser.ax
    CLSID:        {5CB78A55-01B8-431E-96DE-6227D2E0C312}
    Merit:        00600000 = MERIT_NORMAL
    Description:  DV Source Filter
    File name:    c:\program files (x86)\nero\nero 7\nero vision\nvdv.dll
    CLSID:        {5F999665-C66E-46B7-9446-7864278C06C8}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  MPC - MP4 Splitter
    File name:    c:\program files (x86)\k-lite codec pack\filters\mp4splitter.ax
    CLSID:        {61F47056-E400-43D3-AF1E-AB7DFFD4C4AD}
    Merit:        00600000 = MERIT_NORMAL
    Description:  File Source (Monkey Audio)
    File name:    c:\program files (x86)\k-lite codec pack\filters\monkeysource.ax
    CLSID:        {66EA14E6-E2B3-433D-923E-EE401CADBBD9}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  Nero PresentationGraphics Decoder
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nebdgraphic.ax
    CLSID:        {68936D7B-59D8-4724-9493-17A225E03F91}
    Merit:        00600000 = MERIT_NORMAL
    Description:  madFlac Decoder
    File name:    c:\program files (x86)\k-lite codec pack\filters\madflac.ax
    CLSID:        {6B257121-CBB6-46B3-ABFA-B14DFA98C4A6}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero InteractiveGraphics Decoder
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nebdgraphic.ax
    CLSID:        {6F23E3FF-4234-4F1B-BC16-50D8A45235CA}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero Vcd Navigator
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nevcd.ax
    CLSID:        {7855449D-FC96-44D7-BA7C-3C3D86330EC4}
    Merit:        00600000 = MERIT_NORMAL
    Description:  DirectVobSub (auto-loading version)
    File name:    c:\program files (x86)\k-lite codec pack\filters\vsfilter.dll
    CLSID:        {9852A670-F845-491B-9BE6-EBD841B8A613}
    Merit:        00800002 = MERIT_PREFERRED + 2
    Description:  MONOGRAM AMR Encoder
    File name:    c:\program files (x86)\k-lite codec pack\filters\mmamr.ax
    CLSID:        {99735894-CAF4-488B-8275-B8CB1998216E}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero Splitter
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nesplitter.ax
    CLSID:        {A336CD3B-599C-4F70-A34D-E88EDE4B64C3}
    Merit:        00600000 = MERIT_NORMAL
    Description:  MONOGRAM AMR Mux
    File name:    c:\program files (x86)\k-lite codec pack\filters\mmamr.ax
    CLSID:        {AAA4AACD-FD95-4240-9C45-9EB98E5DAC52}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero File Source / Splitter
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nefsource.ax
    CLSID:        {ABA51A41-B929-4419-8660-D33BBFA7C5AD}
    Merit:        00600000 = MERIT_NORMAL
    Description:  DC-Bass Source
    File name:    c:\program files (x86)\k-lite codec pack\filters\dcbasssource.ax
    CLSID:        {ABE7B1D9-4B3E-4ACD-A0D1-92611D3A4492}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  VP7 Decompressor
    File name:    c:\program files (x86)\k-lite codec pack\filters\vp7dec.ax
    CLSID:        {C204438D-6E1A-4309-B09C-0C0F749863AF}
    Merit:        00800000 = MERIT_PREFERRED
    Description:  MONOGRAM Musepack Splitter
    File name:    c:\program files (x86)\k-lite codec pack\filters\mmmpcdmx.ax
    CLSID:        {C3E2E983-0198-4F73-9E5C-8365BB4C4131}
    Merit:        00600000 = MERIT_NORMAL
    Description:  madFlac Source
    File name:    c:\program files (x86)\k-lite codec pack\filters\madflac.ax
    CLSID:        {C52908F0-1C06-4C0D-A4CD-3D10EA51C757}
    Merit:        00600000 = MERIT_NORMAL
    Description:  MPC - FLV Source (Gabest)
    File name:    c:\program files (x86)\k-lite codec pack\filters\flvsplitter.ax
    CLSID:        {C9ECE7B3-1D8E-41F5-9F24-B255DF16C087}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero Thumbnail Decoder
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nebdthumbnail.ax
    CLSID:        {CCFB194D-9CEA-4457-9B84-554B7D4853C6}
    Merit:        00600000 = MERIT_NORMAL
    Description:  MPC - MPEG4 Video Splitter
    File name:    c:\program files (x86)\k-lite codec pack\filters\mp4splitter.ax
    CLSID:        {D3D9D58B-45B5-48AB-B199-B8C40560AEC7}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero QuickTime(tm) Audio Decoder
    File name:    c:\program files (x86)\common files\ahead\dsfilter\neqtdec.ax
    CLSID:        {D6D8A64E-F9F7-4685-9757-7338077234D8}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  WavPack Audio Splitter
    File name:    c:\program files (x86)\k-lite codec pack\filters\wavpackdssplitter.ax
    CLSID:        {D8CF6A42-3E09-4922-A452-21DFF10BEEBA}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero File Source (Async.)
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nefilesourceasync.ax
    CLSID:        {DA5E4EC4-61AB-458B-B836-B8744B6BD3A7}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  Nero Ogg Splitter
    File name:    c:\program files (x86)\common files\ahead\dsfilter\neoggsplitter.ax
    CLSID:        {DB4D8EF5-C2ED-4835-95A1-871C2327018A}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  MPC - Mpeg Splitter (Gabest)
    File name:    c:\program files (x86)\k-lite codec pack\filters\mpegsplitter.ax
    CLSID:        {DC257063-045F-4BE2-BD5B-E12279C464F0}
    Merit:        00400001 = MERIT_UNLIKELY + 1
    Description:  Nero Digital Parser
    File name:    c:\program files (x86)\common files\ahead\dsfilter\ndparser.ax
    CLSID:        {E206E4DE-A7EE-4A62-B3E9-4FBC8FE84C73}
    Merit:        00600000 = MERIT_NORMAL
    Description:  MPC - MPEG4 Video Source
    File name:    c:\program files (x86)\k-lite codec pack\filters\mp4splitter.ax
    CLSID:        {E2B98EEA-EE55-4E9B-A8C1-6E5288DF785A}
    Merit:        00600000 = MERIT_NORMAL
    Description:  AC3File
    File name:    c:\program files (x86)\k-lite codec pack\filters\ac3file.ax
    CLSID:        {F7380D4C-DE45-4F03-9209-15EBA8552463}
    Merit:        00600000 = MERIT_NORMAL
    (A total of 169 filters, 44 shown, 125 hidden)
    #####  ICM Class Manager (32-bit)  #####
    Description:  ffdshow video encoder
    File name:    c:\program files (x86)\k-lite codec pack\ffdshow\ffdshow.ax
    CLSID:        {4DB2B5D9-4556-4340-B189-AD20110D953F} (ffdshow video encoder)
    Merit:        00100000 = MERIT_SW_COMPRESSOR
    (A total of 3 filters, 1 shown, 2 hidden)
    #####  Default source filters (32-bit)  #####
    .264    {5CB78A55-01B8-431E-96DE-6227D2E0C312}  Nero ES Video Reader
    .3g2    {E206E4DE-A7EE-4A62-B3E9-4FBC8FE84C73}  Nero Digital Parser
    .3gp    {E206E4DE-A7EE-4A62-B3E9-4FBC8FE84C73}  Nero Digital Parser
    .aac    {ABE7B1D9-4B3E-4ACD-A0D1-92611D3A4492}  DC-Bass Source
    .ac3    {F7380D4C-DE45-4F03-9209-15EBA8552463}  AC3File
    .alac   {ABE7B1D9-4B3E-4ACD-A0D1-92611D3A4492}  DC-Bass Source
    .ape    {66EA14E6-E2B3-433D-923E-EE401CADBBD9}  File Source (Monkey Audio)
    .apl    {66EA14E6-E2B3-433D-923E-EE401CADBBD9}  File Source (Monkey Audio)
    .bmp    {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .bsf    {5CB78A55-01B8-431E-96DE-6227D2E0C312}  Nero ES Video Reader
    .dib    {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .dts    {F7380D4C-DE45-4F03-9209-15EBA8552463}  AC3File
    .dv     {5F999665-C66E-46B7-9446-7864278C06C8}  DV Source Filter
    .dvr-ms {C9F5FE02-F851-4eb5-99EE-AD602AF1E619}  StreamBufferSource
    .dvr-ne {8BD32EBA-D7D7-4AB7-914E-C4E551113869}   Nero Stream Buffer Source
    .flac   {C52908F0-1C06-4C0D-A4CD-3D10EA51C757}  madFlac Source
    .flv    {C9ECE7B3-1D8E-41F5-9F24-B255DF16C087}  MPC - FLV Source (Gabest)
    .gif    {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .h264   {5CB78A55-01B8-431E-96DE-6227D2E0C312}  Nero ES Video Reader
    .jfif   {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .jpe    {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .jpeg   {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .jpg    {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .m3u    {e436ebb5-524f-11ce-9f53-0020af0ba770}  File Source (Async.)
    .m4a    {E206E4DE-A7EE-4A62-B3E9-4FBC8FE84C73}  Nero Digital Parser
    .mka    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .mks    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .mkv    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .mp3    {E436EBB5-524F-11CE-9F53-0020AF0BA770}  File Source (Async.)
    .mp4    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .mpls   {1365BE7A-C86A-473C-9A41-C0A6E82C9FA3}  MPC - Mpeg Source (Gabest)
    .nd     {E206E4DE-A7EE-4A62-B3E9-4FBC8FE84C73}  Nero Digital Parser
    .nvavi  {51393094-F0E2-4E34-87A5-25EBC68629EB}  Multi File Reader
    .oga    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .ogg    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .ogm    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .ogv    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .spdif  {F7380D4C-DE45-4F03-9209-15EBA8552463}  AC3File
    .tga    {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .tta    {ABE7B1D9-4B3E-4ACD-A0D1-92611D3A4492}  DC-Bass Source
    .wtv    {C9F5FE02-F851-4eb5-99EE-AD602AF1E619}  StreamBufferSource
    .wv     {E436EBB5-524F-11CE-9F53-0020AF0BA770}  File Source (Async.)
    .wvc    {E436EBB5-524F-11CE-9F53-0020AF0BA770}  File Source (Async.)

  • BPM startting with two IDoc Types

    Hi All!!
    I have designed a BPM starting with two IDocs (MATMAS05 y CLFMAS02). Is designed with two start process in a switch. When one comes, wait a minute for the other. I'm not sure what IDoc comes first to the process, the I can lose data.
    Somebody has any idea tto encapsulate the infornmation of the 2 IDocs without a ZIDoc?
    Thanks and regards,
    Manuel Míguez.

    Hi,
    sounds like a
    > Collecting and Bundling Messages - Multiple Interfaces
    scenario like described here:
    http://help.sap.com/saphelp_nw04/helpdata/en/0e/56373f7853494fe10000000a114084/frameset.htm
    Regards
    Patrick

  • Creating a DNS Record for a Host with Two or More IP???

    Can we create DNS A Record for a Host with Two or More IP ... ( we like to use my website  "mysite.com" pointing to two Ips )
    Please help...

    Sure, no worries.
    In a production environment DNS will query always the first record it will stores in cache, you need to find a dynamic or NLB way to achieve the automatic fail over else when you will have an outage with the first IP, then you need to ask your clients to
    clear the cache and register to DNS again, this i will not suggest in a production environment, lots of manual efforts and doesnt sound like a solution in a production environment, i would suggest you to explore windows NLB, it's easy to set and use the OS
    license.
    Thanks
    Inderjit

  • Can the Sound Object control two sounds at once?

    I have a sound object that I want to control two seperate
    sounds in different movie clips..one is intro music which lives on
    the main shell of the website along with the sound object. This
    fades out into a loop that lives on another movie clip that loads
    into the shell on a loadMovie action naturally.
    My goal:
    To control both sound clips with ONE sound object living in
    the main flash site's shell. Can this be done or would I have to
    have two seperate sound objects for each sound clip?
    Thank you,
    Dayton

    You could write a fairly simple class that would act as a
    wrapper for the sound class. In this class you would let it define
    the 2 sound objects but then you would only need to use call to the
    class object to control both. This could also be expanded to
    control more than 2 sounds. It is not exactly what you were hoping
    for but in the long term it would simplify sound control and be
    reusable in pretty much any setting that required sound.
    Tim

  • Export from AF CS5 to FLV with Cuepoint

    Hello!
    In After Effects CS3 I exported a movie 622x350 to FLV with cuepoints, and it was small,
    now after I upgraded to CS5 and export the same file again is't three time larger.
    I do exactly the same as before.
    Could it be because the upgrade?
    Is there a new plugin that I can take home.
    Thanks!

    Hello!
    Thanks for the reply.
    Have tried what you said but there was no difference.
    Found only in two places where I could shut off the XMP metadata;
    it was under Pref. Media & Disk Cache and the Output Module Settings.
    Fredric

  • Two versions of Premiere two sound cards when capturing

    We are television station and we encode shows that are sent to us on a daily basis. All shows that we get we are licensed to show. We are using Adobe Premiere CS4 to capture the videos as they come to us by way of satellite feed. It works well. We can also work on another project with CS4 while capturing. Problem. Sound. While we are capturing, we cannot test the sound because the capture and the time line work space uses the same sound card. Is there a way that we can set up two sound cards and have the time line work space use one while the capture uses another? Or can we use another version of Premiere, (we also have 2.0), and have that one assigned to a separate sound card so we can edit other shows while we are capturing?

    Maybe use OnLocation for the capture process, while using Premiere for the other stuff.

  • URGENT PLEASE HELP: iTunes Will Play Songs With No Sound.

    Hello all. I recently did the following and significantly screwed up my iTunes:
    -Tried to move my directory to an external hard drive.
    -This didn't work, so I then had to reload my iTunes.
    -I did this by doing the standard copying the .xml library file to the desktop, deleting the old library files and importing the new .xml into the iTunes.
    -However, I now have music in my iTunes, but when I click on files, they'll play but with no sound. No exclamation point comes up next to them to signal they're missing, but just no sound.
    -Tried uninstalling and then reinstalling the latest iTunes. Still nothing.
    I also tried dragging a random song into iTunes to see whether it was just a directory mix-up still, but no dice. Right now, the directory for my iTunes is Macintosh HD:Users:name:Music:iTunes:iTunes Music.
    Please help!!!!

    Well, that could be, but before thinking of an hardware issue, first check all possible software settings.
    Try this:
    In System Preferences>Sound there are two volume sliders.
    Set the Output volume about halfway. Now move the Alert volume slider just a little bit. This normally will invoke the Mac to play the selected alert sound.
    Still no sound?
    Can you connect a headphone to the PB?
    If yes, does it have sound?
    M

Maybe you are looking for

  • INS-20802: Problem installing Grid Infrastructure on Windows 2008 R2 Server

    Hello, I try to install the Grid Infrastructure on a Windows 2008 x64 Server. Everything works fine (the SCAN configuration and Verify) but at the end of the installation process I get the following error message: [INS-20802]: Grid Infrastructure Con

  • HT2638 iphoto not opening

    I have an imac running version 10.8.4. my iphoto suddenly will not open, I get an error msg and did as was instructed, but no results. Here's msg: "Your photo library is either in use by another application or has become unreadable Shut down and rest

  • My Feedback and complaints on CS6 and Lightroom 4

    I really am having trouble finding any other way to send some feedback to adobe so maybe this makes its way to someone who cares. Overall the feature enhancements to CS6 and LR4 are good, however they have been executed very poorly. I am very upset w

  • Fal_client, fal_server triggering when applying with delay .

    Hi, I'm on 10.2.0.3 RAC witn physical standby , old fasion config with no standby redo so shiping only after log switch . We've got 10h delay and looks like gap resolving via fal client/server is triggered only when the acctual arch log needs to be r

  • Anyone else having problems using Entourage 2008 with port 465?

    Hello, We all know by now that Verizon needs us to change our email settings. I've resisted because everytime I change the SMTP server settings to: smtp.verizon.net, enable SSL, and put in port 465, I CANNOT send emails properly. I say "properly," be