Need help with Player audio/video from MPCStar

Hello! I have mpcstar dvd on my system and after the removal of some drivers to remove programs that I can't watch videos on the files saved., except that the sound can be heard same files. Please can you help me solve this problem?

[Moved - IE8, XP]

Hello

Have you tried to uninstall/reinstall MPCStar?

There is MPCStar forums at: http://www.cometforums.com/forum/74-mpcstar-general-discussions

You will probably come from people who know more about the program and get better help there.

Don

Tags: Windows

Similar Questions

  • Need help with different audio to match in quality

    Hello.  I'll work on a video animation based on the 4 audio clips.

    1, 2, & 3 clips are similar in quality and levels;  Clip 4 sounds more rich and higher levels.

    Re-registration is not an option.

    (Clips 1, 2, & 3 came with a video camera, where the right channel was a lot of noise away from the topic, and the left channel was a lapel mic which was clean but low levels)

    Clip 4 registered only track left and rates are higher and overall quality sounded better)

    I tried to use the hearing to separate into mono tracks, then the right channel where the noise was being dumped.  I then created stereo channels for all 4 clips (just double the left) and added a bit of reverb volume 1,2 & 3 as well as raise closer to Clip 4 - and this ok worked (much better than the originals)

    Below is a video with excerpts from original code 4 (just the left lanes) - would appreciate any recommendations from experienced users in the hearing.  I need to get sound as good as possible before splicing up to do the animation video.

    Also, if I use a main element to make the subitems in Adobe Premiere CS6 and fix then the original clips later in the hearing, these changes to the audio main spread through for subitems - or should I start over with the main audio file enhanced and redo the subitems news?

    Thank you (and I posted this on the forums for hearing on June 30, but did not get a lot of help - thought I'd try here since I use both first and can just if the diving of the subsequent corrections can spread to the subitems)

    It's a shame, but thanks for the reply.

    At receipt of response on the forums of hearing suggesting the "thinness" I heard related to low levels of the low frequency.  Stimulate those with one gets multiband Equalizer close enough varied clips, so should be ready to go.

    Thanks again.

  • Need help with 3 audio to match a 4th

    Hello.  I'll work on a video animation based on the 4 audio clips.

    1, 2, & 3 clips are similar in quality and levels;  Clip 4 sounds more rich and higher levels.

    Re-registration is not an option.

    (Clips 1, 2, & 3 came with a video camera, where the right channel was a lot of noise away from the topic, and the left channel was a lapel mic which was clean but low levels)

    Clip 4 registered only track left and rates are higher and overall quality sounded better)

    I tried to use the hearing to separate into mono tracks, then the right channel where the noise was being dumped.  I then created stereo channels for all 4 clips (just double the left) and added a bit of reverb volume 1,2 & 3 as well as raise closer to Clip 4 - and this ok worked (much better than the originals)

    Below is a video with excerpts from original code 4 (just the left lanes) - would appreciate any recommendations from experienced users in the hearing.  I need to get sound as good as possible before splicing up to do the animation video.

    Thanks for your suggestions.

    The problem is not the level, because you can just increase the more silent clips to match the rhythm.  The real problem is the difference in quality between the clips.  When you say 4 Clip sounds 'rich', you mean it has the lowest range, more low frequencies, while the other clips sound thin, because they do not have low frequencies.  Keeping in mind that you cannot use an EQ filter to add frequencies that were not registered, my first experience on the 'thin' clips would be to see if a parametric EQ set somewhere around 100 Hz could stimulate the lower part to make them healthier as the good pace.  If this does not work, then maybe you will have to consider deleting some of the low end of the good clip so that it matches what you have in the clips of thin.

  • Need help with editing the channels from document information

    I am trying to create a string based on information from the active document, which is then saved as text delimited by tabs for use in spreadsheets.

    I'm new to the script but I was able to get the info from Photoshop, but now I need to deal with some of them.

    Here's the info I want in the order I want: name of file, the file size (actual work or size), width in pixels, height in pixels, inches of width, height inches, image resolution, color mode.

    example: 5.3 MB 3810 3810 5 5 762 RGB CoolPicture_LYRD.psd

    Here is the info I got in return:

    CoolPicture_LYRD.psd3810 px3810 px5 px5 px762 DPIDocumentMode.RGB

    I need to make these changes:

    1. Add the size of the document
    2. Cut the shape px string OR convert the "px" in the chain of inches to the 'in '.
    3. short 6-digit numbers (for a number like 5.33333333333333 px)
    4. trim theDocumentMode. info from the color mode

    I tried using substrings which gets an error about the functions

    I tried ToString() and beach setting, but without success.

    any help would be appreciated. Thanks for the research.

    Here is my script so far

    //get the info from document that I need for my excel sheet
    var imageHeightPixels = activeDocument.height
    var imageWidthPixels = activeDocument.width
    var fileResolution = activeDocument.resolution
    var imageMode = activeDocument.mode
    // get size in inches from pixel based measurement
    var imageHeightInches = imageHeightPixels / fileResolution
    var imageWidthInches = imageWidthPixels  / fileResolution
    
    
    var imageName = activeDocument.name.toString()
    var imageDimensions = new File ("~/desktop/File Info Report.txt")  
    
    
    app.preferences.rulerUnits = Units.PIXELS
    
    imageDimensions.open('a');  
    imageDimensions.write(imageName + "\t" + imageHeightPixels + "\t" + imageWidthPixels + "\t" + imageWidthInches + "\t" + imageHeightInches + "\t" + fileResolution + " DPI" + "\t" + imageMode + "\n");  
    activeDocument.close(SaveOptions.DONOTSAVECHANGES)  
      
    imageDimensions.close(); 
    

    There you go Buddy:

    var doc = app.activeDocument;
    var currentUnits = app.preferences.rulerUnits;
    
    app.preferences.rulerUnits = Units.PIXELS;
    
    var fileName = doc.name;
    var fileSize = (File(doc.fullName).length / (1024 * 1024)).toFixed(2);
    var fileWidthPx   = doc.width.value;
    var fileHeightPx = doc.height.value;
    var fileResolution = doc.resolution;
    var fileWidthInch = (fileWidthPx  / fileResolution).toFixed(6);
    var fileHeigthInch = (fileHeightPx / fileResolution).toFixed(6);
    var colorMode = doc.mode.toString().split(".")[1];
    
    app.preferences.rulerUnits = currentUnits;
    
    var outputString = fileName + "\t" +
      fileSize + " mb\t" +
      fileWidthPx + "\t" +
      fileHeightPx + "\t" +
      fileWidthInch + "\t" +
      fileHeigthInch + "\t" +
      fileResolution + " DPI\t" +
      colorMode + "\n";  
    
    var logFile = new File ("~/desktop/File Info Report.txt");
      logFile.open('a');
      logFile.write(outputString);
      logFile.close();
    
    doc.close(SaveOptions.DONOTSAVECHANGES);
    
  • Need help with an Audio loop with ACE

    I built a graphic in which audio fades out on a button click. I need also the audio loop, but I can't understand how do. I fiddled it of some old code that I had, probably found on the net, and I don't know where to put the parameters in a loop. Everything that it works just like I need to, I just need the looping sound. Can anyone help? Here is the code:


    Create sound objects *.


    this.createEmptyMovieClip ("holder1", this.getNextHighestDepth ());
    var mySound1:Sound = new Sound (holder1);
    mySound1.loadSound ("yourmusicgoeshere.mp3", true);


    action button *.

    necessary variables:
    var onFaded:Function;
    var currentSound:Number = 1;
    var occupied: Boolean = false;
    var counter: Number;
    //

    B2.onRelease = function() {}
    fadeOut (mySound1);
    };

    B3.onRelease = function() {}
    fadeOut (mySound1);
    };

    bStop.onRelease = function() {}
    mySound1.stop ();
    currentSound = 0;
    };


    fade out function *.


    function fadeOut(theSound:Sound) {}
    counter = 100;
    busy = true;
    clearInterval (nInterval);
    nInterval = setInterval (adjustSoundDown, 10, theSound);
    }
    function adjustSoundDown(theSound:Sound) {}
    If (counter < = 1) {}
    clearInterval (nInterval);
    theSound.stop ();
    busy = false;
    onFaded();
    } else {}
    -counter;
    theSound.setVolume (counter);
    }
    }

    the best you can do if you are streaming your sound is to use a listener onsoundcomplete to restart your sound when it is finished.

  • I still need help with a thumbnail view in video files Real Player XP sp 3

    I still need help with thumbnail view in video files Real Player XP sp 3-Help! Help! Help!

    You will need to contact the support of Real Player, since the problem occurred with their program.

  • Need help with a Hp Papvilion Dv7-1270US, from vista to xp 64

    Well, I noticed that a lot of guys are useful here with installing XP on Vista and yes I'm another unhappy Vista user, I am a graphic designer and let me tell you programs and performance is not very good on my laptop HP that I am ready to go back to XP.

    I have an extra HD a seagate sata 80 GB of my PS3 that I drag never used, so I'll use it to install XP on my laptop

    Its what I need help with drivers, man what a pain. I can install drivers left and right that I know how to do this, but Nlite, manual, unzip its so confusing...

    good so I use Nlite to wake my sata drivers and my installation of Windows XP on my HP I would add something in there like {video card driver} {driver Chipset} etc, what should I put in the wake? and once the wake is done and winxp is installed in what order should I start to install stuff, please guys Im confused and need help if someone can point me in the right direction of the dv7-1270 drivers I would appreciate...

    If I happen to screw up my 80 GB hard drive, not a big deal, blue screen, can not load, etc etc... can I just put my original 320 GB hard drive and back to Vista the way it was. ??? is it possible, which would ease my mind, thank you for your responses and assistance.

    Drivers:

    Chipset Intel, (install and reboot before other drivers) here

    Intel Matrix Storage Manager here

    MS-UAA fo SP2 (required with a reboot before the graphic and Audio driver) here

    MS-UAA fo SP3 (required with a reboot before the graphic and Audio driver) here

    NVIDIA GeForce 9600GT here

     

    Intel Wireless 5100 here

    Bluetooth here

    Realtek RTL8168C Family PCI - E Fast Ethernet NIC here

    Please check first that link written by Joshua Wood and concentrate on problems that may appear when you install the sound card in it.

    IDT High-Definition Audio CODEC Pilot,

    1 sp41693, pilot, work reported in XP here view

    2 SP39671, driver, jobs reported in XP here or here view

    3 sp41698, vista, work reported in here XP driver

    High-Definition Audio (HDA) Modem Installer and driver here

    .NET framework (required before HP Quick Lunch Buttons) here

    HP Quick Launch buttons here

    Synaptic Touchpad here S

    ENE CIR (infrared receiver) here (your Vista driver)

    JMB38X card reader Host Controller Driver here

    HP 3D DriveGuard 1.10 has here

    If you had for 7 unknown devices (buttons drivers), here

    Do a manual installation

    Go to Device Manager, right click on the unknown device,

    Choose update driver, not to communicate.

    Choose the install from a list or a specific location, not search, have-disk,

    Navigate to the location of machine.inf.

    Do it for the rest of the unknown devices

  • I need help with my Windows Media Center. I was not able to get any video on my Windows Media Center.

    original title: I need help with my Windows Media Center.

    I was not able to get any video on my Windows Media Center. How do I do that? I can put it on Facebook, but cannot get them on the Media Center. I'm ready to pull my hair out LOL

    Hello

    1. what exactly happens when you try to play any video on media center to Windows? Error message? If so, then post back the exact error message.
    2. were you able to play videos on Windows media center with no problems before?
    3. don't you make changes on the computer before this problem?
    4. are you able to play the videos on Windows media player?
    5 are supported by Windows media centerfiles?

    Answer to the above mentioned questions could help us help you better.

    The following article might be useful.
    Solve problems with DVDs and movies in Windows Media Center
    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-problems-with-DVDs-and-movies-in-Windows-Media-Center

  • Need help with coding for HTML5 with emergency Flash video

    Hello, need help with my coding in Dreamweaver CS5.5 for HTML5 with emergency Flash video. Not sure if the coding is correct. Do I need any other JavaScript etc.?

    code.jpg

    Another thing is that you don't have to include SWF as aid manual if you provide all 3 ogv, webm & mp4 video formats as one of these formats will certainly be played in any browser that is fully compatible HTML5.

    Still one thing you could do if you don't mind hosting your video on Youtube is to get an embed code for Youtube - in this way, you don't have to convert all the files. YouTube will do it for you and it will play on devices of HTML5 as well as supports Flash player of relief for devices that cannot play HTML5.

  • Need help with video scrolling

    Hello

    I need help with a project. Subsequently, I want is that a webcam controls the position of the mouse and the mouse position

    control of a video. But I would like the part where the mouse position controls the video.

    So, if the mouse is on the left on your screen, the video will be on the first image and when you move, you're the mouse for

    the right to the video play as a result traffic. and stop when the mouse is completely right.

    Effectivly the scrolles from the mouse through the video. It must be on the x-axis.

    I'm not that formilliar with flash, so any help would be great

    THX!

    Thijs

    what you need to do, is to designate a rectangle where users can use their mouse to scroll through the video.  If this rectangle has instance name bar, you can use:

    var m, b:Number;

    var lastSeek:int = getTimer();

    flv_pb.addEventListener (MetadataEvent.METADATA_RECEIVED, f);

    bar.addEventListener (MouseEvent.MOUSE_MOVE, moveF);

    function f(e:MetadataEvent):void {}

    paramF (0,0,stage.stageWidth,e.info.duration);

    }

    function moveF(e:MouseEvent):void {}

    {if (getTimer () - lastSeek > 1000)}

    flv_pb. Seek(m*e.stageX+b);

    lastSeek = getTimer();

    flv_pb. Play();

    }

    }

    function paramF(x1:Number,y1:Number,x2:Number,y2:Number):void {}

    m = (y2 - y1) / (x 1 - x 2);

    b = y1 - m * x 1;

    }

  • Is there a default value for the color management in PSE10? Beautiful photos from iPhoto, but blur with elements. I need help with this before as I consider that the upgrade to PSE13 and beyond.

    Is there a default value for the color management in PSE10? Beautiful photos from iPhoto, but blur with elements. I need help with this before as I consider that the upgrade to PSE13 and beyond.

    Printing which forms an angle seems ok, but one that is horizontally seems faded, incomplete.

    I was wondering if I saved a layer somewhere and set it as a default value.

    If you group the layers, you will be left with a single layer, thus spreading your concern.

    Suggest that you do the following:

    1. Make sure you have the latest drivers for your printers
    2. Reset the default preferences.

    Hold the Alt, Ctrl + Shift keys when you click the icon to open the items. When asked if you want to delete the settings file, say Yes.

    Items nearby and let regenerate the file.

  • Hi, I need help with my flash mp3 player

    Hi, I need help with my mp3 player, I wan't to add the pause button... Can you help me?

    I created the button I added btn_pause and it won't work.

    function soundStatus() {}

    var amountLoaded = _root.sound_mc.sound_obj.getBytesLoaded () / _root.sound_mc.sound_obj.getBytesTotal ();

    _root. Loader.loadBar._width = amountLoaded * 260;

    duration = _root.sound_mc.sound_obj.duration;

    position = _root.sound_mc.sound_obj.position;

    _root.playHead._x = position / duration * 272 + 5;

    }

    btn_play.onRelease = function() {}

    clearInterval (timeInterval);

    _root.timeDisplay_txt. Text = "00:00 / 00:00 ';

    This._parent.sound_mc.songStarter (songfile [song_nr]);

    };

    btn_pause.onRelease = function() {}

    clearInterval (timeInterval);

    _root.timeDisplay_txt. Text = "00:00 / 00:00 ';

    This._parent.sound_mc.sound_obj.pause ();

    };

    btn_stop.onRelease = function() {}

    clearInterval (timeInterval);

    _root.timeDisplay_txt. Text = "00:00 / 00:00 ';

    This._parent.sound_mc.sound_obj. Stop();

    };

    btn_fw.onRelease = function() {}

    clearInterval (timeInterval);

    _root.timeDisplay_txt. Text = "00:00 / 00:00 ';

    (song_nr == songfile.length - 1)? _Global.song_nr = 0: _global.song_nr ++;

    _root.sound_mc.songStarter (songfile [song_nr]);

    };

    btn_rev.onRelease = function() {}

    clearInterval (timeInterval);

    _root.timeDisplay_txt. Text = "00:00 / 00:00 ';

    (song_nr == 0)? _Global.song_nr = songfile. Length-1:-_global.song_nr;

    _root.sound_mc.songStarter (songfile [song_nr]);

    };

    < proposed by the mod to as3 - kglad >

    :

    function soundStatus() {}

    var amountLoaded = _root.sound_mc.sound_obj.getBytesLoaded () / _root.sound_mc.sound_obj.getBytesTotal ();

    _root. Loader.loadBar._width = amountLoaded * 260;

    duration = _root.sound_mc.sound_obj.duration;

    position = _root.sound_mc.sound_obj.position;

    _root.playHead._x = position / duration * 272 + 5;

    }

    btn_play.onRelease = function() {}

    clearInterval (timeInterval);

    _root.timeDisplay_txt. Text = "00:00 / 00:00 ';

    This._parent.sound_mc.songStarter (songfile [song_nr]);

    };

    btn_pause.onRelease = function() {}

    clearInterval (timeInterval);  you must re - set interval when the unpause button is clicked

    _root.timeDisplay_txt. Text = "00:00 / 00:00 ';

    This._parent.sound_mc.sound_obj. Stop()

    };

    {btn_unpause.onRelease = Function ()}

    This._parent.sound_mc.sound_obj. Start(position/1000);

    }

    btn_stop.onRelease = function() {}

    clearInterval (timeInterval);

    _root.timeDisplay_txt. Text = "00:00 / 00:00 ';

    This._parent.sound_mc.sound_obj. Stop();

    };

    btn_fw.onRelease = function() {}

    clearInterval (timeInterval);

    _root.timeDisplay_txt. Text = "00:00 / 00:00 ';

    (song_nr == songfile.length - 1)? _Global.song_nr = 0: _global.song_nr ++;

    _root.sound_mc.songStarter (songfile [song_nr]);

    };

    btn_rev.onRelease = function() {}

    clearInterval (timeInterval);

    _root.timeDisplay_txt. Text = "00:00 / 00:00 ';

    (song_nr == 0)? _Global.song_nr = songfile. Length-1:-_global.song_nr;

    _root.sound_mc.songStarter (songfile [song_nr]);

    };

  • No support for pse4, don't need help with aid and all the rest. What is a layer? How can I get help PDF from CD? I don't have any idea how to use it. I have a Macbook pro.

    Need help with using pse4 not taken in charge by adobe. How subjects do not available and I have never used something like that. Aide said there is a download but have not been able to do. What is a rookie to do? Y at - it somewhere that I can go to learn how to use PSE4?

    To find out how your problem:

    http://kb2.Adobe.com/CPS/402/kb402107.html

    To get help from the CD files you double-click in the finder, go to PDF help and drag it to the desktop or elsewhere.

  • I'm suddenly needing help with my browser Firefox (6.0.2)

    Hello
    I'm suddenly needing help with my browser Firefox (6.0.2)

    (OS: I use Windows XP).

    When I open the browser, I don't see is a totally white screen of white, with all the toolbars at the top.

    I know that my physical connections are very good: I have tested the modem, turned the pc market etc and I can also receive/send emails.

    This problem started today, September 8, 2011 and has never happened before.

    Is it a coincidence that Firefox itself to day before I disconnected yesterday evening? Could this be something to do with this particular new update?

    I also noticed that just before I "opened" Firefox, I now get a small box indicating:

    [JAVASCRIPT APPLICATION]
    Handl exc in Ev: TypeError: this oRoot.enable is not a function

    This never appeared before - I hope that it offers a clue has what is wrong.

    The browser not be stuck in Mode safe, said by the way.

    Of course, I can't find solutions to the problem on the internet, I don't physically see all Web sites!
    (A friend sends this request in my name from their pc)

    Any light you can throw on this problem of confusion would be much appreciated. I'd rather not have to uninstall and reinstall Firefox if possible.

    If the only option is to uninstall Firefox and reinstall from your site, I'm also in trouble (I can not see the internet or download).
    In this case, would you be able to send the .exe file as an attachment to my e-mail address? In the affirmative, please let me know and I'll give you more details.

    Thanks in advance.

    One possible cause is security software (firewall) that blocks or limits Firefox or plugin-container process without informing you, possibly after the detection of changes (update) for the Firefox program.

    Delete all rules for Firefox in the list of permissions in the firewall and leave your firewall again ask permission to get full unlimited access to the internet for Firefox and the plugin-container and the update process.

    See:

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions of the origin of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • Need help with the installation of an adapter of Palit GeForce 9500GT Super chart - 512 MB in a M2N68 (narrated

    Need help with the installation of an adapter of graphics Super Palit GeForce 9500GT - 512 MB - DDR2 SDRAM in a M2N68 motherboard (narra6). Should I disable the onboard graphics in the bios? When the card is installed, no VGA work outs and the PC does not start. Checked and recontroler implementation of the card in the PCI slot. PC is a desktop HP G5200uk PC. Windows 7 operating system.

    Hello

    The link below is a guige to install a video card in your Pc.  In particular, it seems that you will have to perhaps specify the location of the new card in the bios and save this change before you install the new card - see step 4 in the guide on the link below.  If your new card fits into the PCI Express x 16 slot, you will need to define PCI Express in the bios and save the changes.

    http://support.HP.com/us-en/document/c01700855

    Kind regards

    DP - K

Maybe you are looking for

  • Fact my tablet / computer laptop support WiDi?

    Hello I just bought a new laptop / Tablet: PC HP Split 13-m100la x 2 (E7H88LA). * I bought the tablet in South America (particularly here in Chile) However, I'm confused.  I am not sure whether or not it supports WiDi. I read similar tech specs on si

  • DLL Keyence LJ - V problem

    Hello, I am new in the world of Labview, since I discovered it three weeks ago. I am currently an intern and I have to develop a Labview application using a profilometer Keyence. I need to extract the profilometer of datas and processing them at the

  • MXM

    I have a Pavilion Notebook - 15-p114dx and I want to know if she has one slot mxm, thanks for the help.

  • Phone Samsung s6

    I have a Verizon Samsung S6, but my computer does not recognize it as a phone, say I need a driver, but it won't keep the driver on my computer.  I am running Windows 7.  My husband has 10 window on his computer and it does the same thing. Accept tha

  • Error1722 problem with the windows package install.

    I try to install the Cisco VPN software and I get error 1722.  Says that there is a problem with the windows package install.  How can I fix it?