[Solved] mpd + flash(?) = CRASH

When i open some audio|video.flash (ex: youtube) in any browser i have to stopped mpd to get audio.
Ok, but when the video has finished and stopped i can't start again or 'unpause' a song in mpd, i have to close the whole browser and even sometimes restart the mpd daemon
How must i configure my mpd?
I'm using ALSA.
My conf:
# An example configuration file for MPD
# See the mpd.conf man page for a more detailed description of each parameter.
# Files and directories #######################################################
# This setting controls the top directory which MPD will search to discover the
# available audio files and add them to the daemon's online database. This
# setting defaults to the XDG directory, otherwise the music directory will be
# be disabled and audio files will only be accepted over ipc socket (using
# file:// protocol) or streaming files over an accepted protocol.
music_directory "/home/ramon/Musica"
# This setting sets the MPD internal playlist directory. The purpose of this
# directory is storage for playlists created by MPD. The server will use
# playlist files not created by the server but only if they are in the MPD
# format. This setting defaults to playlist saving being disabled.
playlist_directory "/home/ramon/.mpd/playlists"
# This setting sets the location of the MPD database. This file is used to
# load the database at server start up and store the database while the
# server is not up. This setting defaults to disabled which will allow
# MPD to accept files over ipc socket (using file:// protocol) or streaming
# files over an accepted protocol.
db_file "/home/ramon/.mpd/mpd.db"
# These settings are the locations for the daemon log files for the daemon.
# These logs are great for troubleshooting, depending on your log_level
# settings.
# The special value "syslog" makes MPD use the local syslog daemon. This
# setting defaults to logging to syslog, otherwise logging is disabled.
log_file "/home/ramon/.mpd/mpd.log"
# This setting sets the location of the file which stores the process ID
# for use of mpd --kill and some init scripts. This setting is disabled by
# default and the pid file will not be stored.
pid_file "/home/ramon/.mpd/mpd.pid"
# This setting sets the location of the file which contains information about
# most variables to get MPD back into the same general shape it was in before
# it was brought down. This setting is disabled by default and the server
# state will be reset on server start up.
state_file "/var/lib/mpd/mpdstate"
# General music daemon options ################################################
# This setting specifies the user that MPD will run as. MPD should never run as
# root and you may use this setting to make MPD change its user ID after
# initialization. This setting is disabled by default and MPD is run as the
# current user.
user "ramon"
# This setting sets the address for the daemon to listen on. Careful attention
# should be paid if this is assigned to anything other then the default, any.
# This setting can deny access to control of the daemon.
# For network
bind_to_address "localhost"
# And for Unix Socket
#bind_to_address "~/.mpd/socket"
# This setting is the TCP port that is desired for the daemon to get assigned
# to.
port "6600"
# This setting controls the type of information which is logged. Available
# setting arguments are "default", "secure" or "verbose". The "verbose" setting
# argument is recommended for troubleshooting, though can quickly stretch
# available resources on limited hardware storage.
#log_level "default"
# If you have a problem with your MP3s ending abruptly it is recommended that
# you set this argument to "no" to attempt to fix the problem. If this solves
# the problem, it is highly recommended to fix the MP3 files with vbrfix
# (available from <http://www.willwap.co.uk/Programs/vbrfix.php>), at which
# point gapless MP3 playback can be enabled.
#gapless_mp3_playback "yes"
# This setting enables MPD to create playlists in a format usable by other
# music players.
#save_absolute_paths_in_playlists "no"
# This setting defines a list of tag types that will be extracted during the
# audio file discovery process. Optionally, 'comment' can be added to this
# list.
metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc"
# Symbolic link behavior ######################################################
# If this setting is set to "yes", MPD will discover audio files by following
# symbolic links outside of the configured music_directory.
#follow_outside_symlinks "yes"
# If this setting is set to "yes", MPD will discover audio files by following
# symbolic links inside of the configured music_directory.
#follow_inside_symlinks "yes"
# Zeroconf / Avahi Service Discovery ##########################################
# If this setting is set to "yes", service information will be published with
# Zeroconf / Avahi.
#zeroconf_enabled "yes"
# The argument to this setting will be the Zeroconf / Avahi unique name for
# this MPD server on the network.
#zeroconf_name "Music Player"
# Permissions #################################################################
# If this setting is set, MPD will require password authorization. The password
# can setting can be specified multiple times for different password profiles.
#password "password@read,add,control,admin"
# This setting specifies the permissions a user has who has not yet logged in.
#default_permissions "read,add,control,admin"
# Input #######################################################################
input {
plugin "curl"
# proxy "proxy.isp.com:8080"
# proxy_user "user"
# proxy_password "password"
# Audio Output ################################################################
# MPD supports various audio output types, as well as playing through multiple
# audio outputs at the same time, through multiple audio_output settings
# blocks. Setting this block is optional, though the server will only attempt
# autodetection for one sound card.
# See <http://mpd.wikia.com/wiki/Configuration#Audio_Outputs> for examples of
# other audio outputs.
# An example of an ALSA output:
audio_output {
type "alsa"
name "My ALSA Device"
device "hw:0,0" # optional
format "44100:16:2" # optional
mixer_device "default" # optional
mixer_control "PCM" # optional
mixer_index "0" # optional
# An example of an OSS output:
#audio_output {
# type "oss"
# name "My OSS Device"
# device "/dev/dsp" # optional
# format "44100:16:2" # optional
# mixer_device "/dev/mixer" # optional
# mixer_control "PCM" # optional
# An example of a shout output (for streaming to Icecast):
#audio_output {
# type "shout"
# encoding "ogg" # optional
# name "My Shout Stream"
# host "localhost"
# port "8000"
# mount "/mpd.ogg"
# password "hackme"
# quality "5.0"
# bitrate "128"
# format "44100:16:1"
# protocol "icecast2" # optional
# user "source" # optional
# description "My Stream Description" # optional
# genre "jazz" # optional
# public "no" # optional
# timeout "2" # optional
# An example of a httpd output (built-in HTTP streaming server):
#audio_output {
# type "httpd"
# name "My HTTP Stream"
# encoder "vorbis" # optional, vorbis or lame
# port "8000"
# quality "5.0" # do not define if bitrate is defined
# bitrate "128" # do not define if quality is defined
# format "44100:16:1"
# An example of a pulseaudio output (streaming to a remote pulseaudio server)
#audio_output {
# type "pulse"
# name "My Pulse Output"
# server "remote_server" # optional
# sink "remote_server_sink" # optional
## Example "pipe" output:
#audio_output {
# type "pipe"
# name "my pipe"
# command "aplay -f cd 2>/dev/null"
## Or if you're want to use AudioCompress
# command "AudioCompress -m | aplay -f cd 2>/dev/null"
## Or to send raw PCM stream through PCM:
# command "nc example.org 8765"
# format "44100:16:2"
## An example of a null output (for no audio output):
#audio_output {
# type "null"
# name "My Null Output"
# This setting will change all decoded audio to be converted to the specified
# format before being passed to the audio outputs. By default, this setting is
# disabled.
#audio_output_format "44100:16:2"
# If MPD has been compiled with libsamplerate support, this setting specifies
# the sample rate converter to use. Possible values can be found in the
# mpd.conf man page or the libsamplerate documentation. By default, this is
# setting is disabled.
#samplerate_converter "Fastest Sinc Interpolator"
# Volume control mixer ########################################################
# These are the global volume control settings. By default, this setting will
# be detected to the available audio output device, with preference going to
# hardware mixing. Hardware and software mixers for individual audio_output
# sections cannot yet be mixed.
# An example for controlling an ALSA, OSS or Pulseaudio mixer; If this
# setting is used other sound applications will be affected by the volume
# being controlled by MPD.
#mixer_type "hardware"
# An example for controlling all mixers through software. This will control
# all controls, even if the mixer is not supported by the device and will not
# affect any other sound producing applications.
mixer_type "software"
# This example will not allow MPD to touch the mixer at all and will disable
# all volume controls.
#mixer_type "disabled"
# Normalization automatic volume adjustments ##################################
# This setting specifies the type of ReplayGain to use. This setting can have
# the argument "album" or "track". See <http://www.replaygain.org> for more
# details. This setting is disabled by default.
#replaygain "album"
# This setting sets the pre-amp used for files that have ReplayGain tags. By
# default this setting is disabled.
#replaygain_preamp "0"
# This setting enables on-the-fly normalization volume adjustment. This will
# result in the volume of all playing audio to be adjusted so the output has
# equal "loudness". This setting is disabled by default.
#volume_normalization "no"
# MPD Internal Buffering ######################################################
# This setting adjusts the size of internal decoded audio buffering. Changing
# this may have undesired effects. Don't change this if you don't know what you
# are doing.
#audio_buffer_size "2048"
# This setting controls the percentage of the buffer which is filled before
# beginning to play. Increasing this reduces the chance of audio file skipping,
# at the cost of increased time prior to audio playback.
#buffer_before_play "10%"
# Resource Limitations ########################################################
# These settings are various limitations to prevent MPD from using too many
# resources. Generally, these settings should be minimized to prevent security
# risks, depending on the operating resources.
#connection_timeout "60"
#max_connections "10"
#max_playlist_length "16384"
#max_command_list_size "2048"
#max_output_buffer_size "8192"
# Character Encoding ##########################################################
# If file or directory names do not display correctly for your locale then you
# may need to modify this setting. After modification of this setting mpd
# --create-db must be run to change the database.
#filesystem_charset "UTF-8"
# This setting controls the encoding that ID3v1 tags should be converted from.
id3v1_encoding "ISO-8859-1"
Last edited by teh (2009-10-26 08:28:11)

# ALSA library configuration file
# pre-load the configuration files
@hooks [
func load
files [
"/etc/asound.conf"
"~/.asoundrc"
errors false
# load card-specific configuration files (on request)
cards.@hooks [
func load
files [
@func concat
strings [
{ @func datadir }
"/cards/aliases.conf"
func load_for_all_cards
files [
@func concat
strings [
{ @func datadir }
"/cards/"
{ @func private_string }
".conf"
errors false
# defaults
# show all name hints also for definitions without hint {} section
defaults.namehint.showall off
# show just basic name hints
defaults.namehint.basic on
# show extended name hints
defaults.namehint.extended off
defaults.ctl.card 0
defaults.pcm.card 0
defaults.pcm.device 0
defaults.pcm.subdevice -1
defaults.pcm.nonblock 1
defaults.pcm.ipc_key 5678293
defaults.pcm.ipc_gid audio
defaults.pcm.ipc_perm 0660
defaults.pcm.dmix.max_periods 0
defaults.pcm.dmix.rate 48000
defaults.pcm.dmix.format "unchanged"
defaults.pcm.dmix.card defaults.pcm.card
defaults.pcm.dmix.device defaults.pcm.device
defaults.pcm.dsnoop.card defaults.pcm.card
defaults.pcm.dsnoop.device defaults.pcm.device
defaults.pcm.front.card defaults.pcm.card
defaults.pcm.front.device defaults.pcm.device
defaults.pcm.rear.card defaults.pcm.card
defaults.pcm.rear.device defaults.pcm.device
defaults.pcm.center_lfe.card defaults.pcm.card
defaults.pcm.center_lfe.device defaults.pcm.device
defaults.pcm.side.card defaults.pcm.card
defaults.pcm.side.device defaults.pcm.device
defaults.pcm.surround40.card defaults.pcm.card
defaults.pcm.surround40.device defaults.pcm.device
defaults.pcm.surround41.card defaults.pcm.card
defaults.pcm.surround41.device defaults.pcm.device
defaults.pcm.surround50.card defaults.pcm.card
defaults.pcm.surround50.device defaults.pcm.device
defaults.pcm.surround51.card defaults.pcm.card
defaults.pcm.surround51.device defaults.pcm.device
defaults.pcm.surround71.card defaults.pcm.card
defaults.pcm.surround71.device defaults.pcm.device
defaults.pcm.iec958.card defaults.pcm.card
defaults.pcm.iec958.device defaults.pcm.device
defaults.pcm.modem.card defaults.pcm.card
defaults.pcm.modem.device defaults.pcm.device
# truncate files via file or tee PCM
defaults.pcm.file_format "raw"
defaults.pcm.file_truncate true
defaults.rawmidi.card 0
defaults.rawmidi.device 0
defaults.rawmidi.subdevice -1
defaults.hwdep.card 0
defaults.hwdep.device 0
defaults.timer.class 2
defaults.timer.sclass 0
defaults.timer.card 0
defaults.timer.device 0
defaults.timer.subdevice 0
# PCM interface
# redirect to load-on-demand extended pcm definitions
pcm.cards cards.pcm
pcm.default cards.pcm.default
pcm.front cards.pcm.front
pcm.rear cards.pcm.rear
pcm.center_lfe cards.pcm.center_lfe
pcm.side cards.pcm.side
pcm.surround40 cards.pcm.surround40
pcm.surround41 cards.pcm.surround41
pcm.surround50 cards.pcm.surround50
pcm.surround51 cards.pcm.surround51
pcm.surround71 cards.pcm.surround71
pcm.iec958 cards.pcm.iec958
pcm.spdif iec958
pcm.hdmi cards.pcm.hdmi
pcm.dmix cards.pcm.dmix
pcm.dsnoop cards.pcm.dsnoop
pcm.modem cards.pcm.modem
pcm.phoneline cards.pcm.phoneline
pcm.hw {
@args [ CARD DEV SUBDEV ]
@args.CARD {
type string
default {
@func getenv
vars [
ALSA_PCM_CARD
ALSA_CARD
default {
@func refer
name defaults.pcm.card
@args.DEV {
type integer
default {
@func igetenv
vars [
ALSA_PCM_DEVICE
default {
@func refer
name defaults.pcm.device
@args.SUBDEV {
type integer
default {
@func refer
name defaults.pcm.subdevice
type hw
card $CARD
device $DEV
subdevice $SUBDEV
hint {
show {
@func refer
name defaults.namehint.extended
description "Direct hardware device without any conversions"
pcm.plughw {
@args [ CARD DEV SUBDEV ]
@args.CARD {
type string
default {
@func getenv
vars [
ALSA_PCM_CARD
ALSA_CARD
default {
@func refer
name defaults.pcm.card
@args.DEV {
type integer
default {
@func igetenv
vars [
ALSA_PCM_DEVICE
default {
@func refer
name defaults.pcm.device
@args.SUBDEV {
type integer
default {
@func refer
name defaults.pcm.subdevice
type plug
slave.pcm {
type hw
card $CARD
device $DEV
subdevice $SUBDEV
hint {
show {
@func refer
name defaults.namehint.extended
description "Hardware device with all software conversions"
pcm.plug {
@args [ SLAVE ]
@args.SLAVE {
type string
type plug
slave.pcm $SLAVE
pcm.shm {
@args [ SOCKET PCM ]
@args.SOCKET {
type string
@args.PCM {
type string
type shm
server $SOCKET
pcm $PCM
pcm.tee {
@args [ SLAVE FILE FORMAT ]
@args.SLAVE {
type string
@args.FILE {
type string
@args.FORMAT {
type string
default {
@func refer
name defaults.pcm.file_format
type file
slave.pcm $SLAVE
file $FILE
format $FORMAT
truncate {
@func refer
name defaults.pcm.file_truncate
pcm.file {
@args [ FILE FORMAT ]
@args.FILE {
type string
@args.FORMAT {
type string
default {
@func refer
name defaults.pcm.file_format
type file
slave.pcm null
file $FILE
format $FORMAT
truncate {
@func refer
name defaults.pcm.file_truncate
pcm.null {
type null
hint {
show {
@func refer
name defaults.namehint.basic
description "Discard all samples (playback) or generate zero samples (capture)"
# Control interface
ctl.default {
type hw
card {
@func getenv
vars [
ALSA_CTL_CARD
ALSA_CARD
default {
@func refer
name defaults.ctl.card
ctl.hw {
@args [ CARD ]
@args.CARD {
type string
default {
@func getenv
vars [
ALSA_CTL_CARD
ALSA_CARD
default {
@func refer
name defaults.ctl.card
type hw
card $CARD
ctl.shm {
@args [ SOCKET CTL ]
@args.SOCKET {
type string
@args.CTL {
type string
type shm
server $SOCKET
ctl $CTL
# RawMidi interface
rawmidi.default {
type hw
card {
@func getenv
vars [
ALSA_RAWMIDI_CARD
ALSA_CARD
default {
@func refer
name defaults.rawmidi.card
device {
@func igetenv
vars [
ALSA_RAWMIDI_DEVICE
default {
@func refer
name defaults.rawmidi.device
rawmidi.hw {
@args [ CARD DEV SUBDEV ]
@args.CARD {
type string
default {
@func getenv
vars [
ALSA_RAWMIDI_CARD
ALSA_CARD
default {
@func refer
name defaults.rawmidi.card
@args.DEV {
type integer
default {
@func igetenv
vars [
ALSA_RAWMIDI_DEVICE
default {
@func refer
name defaults.rawmidi.device
@args.SUBDEV {
type integer
default -1
type hw
card $CARD
device $DEV
subdevice $SUBDEV
hint {
description "Direct rawmidi driver device"
device $DEV
rawmidi.virtual {
@args [ MERGE ]
@args.MERGE {
type string
default 1
type virtual
merge $MERGE
# Sequencer interface
seq.default {
type hw
seq.hw {
type hw
# HwDep interface
hwdep.default {
type hw
card {
@func getenv
vars [
ALSA_HWDEP_CARD
ALSA_CARD
default {
@func refer
name defaults.hwdep.card
device {
@func igetenv
vars [
ALSA_HWDEP_DEVICE
default {
@func refer
name defaults.hwdep.device
hwdep.hw {
@args [ CARD DEV ]
@args.CARD {
type string
default {
@func getenv
vars [
ALSA_HWDEP_CARD
ALSA_CARD
default {
@func refer
name defaults.hwdep.card
@args.DEV {
type integer
default {
@func igetenv
vars [
ALSA_HWDEP_DEVICE
default {
@func refer
name defaults.hwdep.device
type hw
card $CARD
device $DEV
# Timer interface
timer_query.default {
type hw
timer_query.hw {
type hw
timer.default {
type hw
class {
@func refer
name defaults.timer.class
sclass {
@func refer
name defaults.timer.sclass
card {
@func refer
name defaults.timer.card
device {
@func refer
name defaults.timer.device
subdevice {
@func refer
name defaults.timer.subdevice
hint.description "Default direct hardware timer device"
timer.hw {
@args [ CLASS SCLASS CARD DEV SUBDEV ]
@args.CLASS {
type integer
default {
@func refer
name defaults.timer.class
@args.SCLASS {
type integer
default {
@func refer
name defaults.timer.sclass
@args.CARD {
type string
default {
@func refer
name defaults.timer.card
@args.DEV {
type integer
default {
@func refer
name defaults.timer.device
@args.SUBDEV {
type integer
default {
@func refer
name defaults.timer.subdevice
type hw
class $CLASS
sclass $SCLASS
card $CARD
device $DEV
subdevice $SUBDEV

Similar Messages

  • [SOLVED] flash crash in firefox 3.6

    Hello archers!
    I have archlinux with i3wm.. no DE just albatross gtk theme set with lxappearance. After installing xorg i installed mesa, mesa-demos, libgl and xf86-intel-video. Flash crashes after I start new video. I have to refresh the page to get it working. Everything else installed works like it should. Flashplugin is installed from repos as well as openjdk. Its not a major problem for me but I havent found a solution here on forums or on the net. Ty
    My dmesg output is
    [drm:intel_panel_get_max_backlight] *ERROR* fixme: max PWM is zero.
    plugin-containe[2797]: segfault at f8 ip b2754109 sp b566b670 error 4 in i965_dri.so[b2741000+32d000]
    lspci -s 00:02.0 -vvv
    00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07) (prog-if 00 [VGA controller])
    Subsystem: Toshiba America Info Systems Device ff01
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
    Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin A routed to IRQ 42
    Region 0: Memory at f2400000 (64-bit, non-prefetchable) [size=4M]
    Region 2: Memory at d0000000 (64-bit, prefetchable) [size=256M]
    Region 4: I/O ports at 1800 [size=8]
    Expansion ROM at <unassigned> [disabled]
    Capabilities: <access denied>
    Kernel driver in use: i915
    Kernel modules: i915
    Last edited by dmg (2011-03-23 11:06:24)

    I fixed it like this. I was sure the problem was not in hardware acceleration but in firefox since flash was working in opera. You can also try this and enable ha again
    The problem is in crash reporting in 3.6. More info on
    http://kb.mozillazine.org/Plugin-container_and_out-of-process_plugins#Disabling_crash_protection
    type about:config and change value from true into false for all dom.ipc.plugins values starting from this
    dom.ipc.plugins.enabled;false
    after that change value from 45 into -1 in
    dom.ipc.plugins.timeoutSecs
    Problem solved. Thanks for the feedback!
    p.s
    Actually firefox keeps crashing when I enter this. Bummer..
    Last edited by dmg (2011-03-16 20:33:47)

  • Adobe Flash crash when I try to upload some photos to create an album on Facebook . I think this issue related to the new version of Mozilla Firefox that I had installed 3 days ago and cause my system not able to open the internet . But I have sent a rep

    Adobe flash crash when I try to upload photos to created album on Facebook . Is this related to the new version of Mozilla Firefox that I installed few days ago.
    == This happened ==
    Not sure how often
    == This morning July 18th 2010

    Did you reinstall CS3 after CC?
    For that matter, doing an in-place upgrade on the OS is always a gamble with Adobe programs. Reinstalling all the versions you need, in order, would probably solve your problem.
    And you shouldn't need to save as IDML after opening the .inx in CC.

  • Why does ADOBE FLASH Crash with XP, CHROME, 32 bit system

    XP, Chrome, 32 bit system, Adobe flash version:  11.6.602.171 .  Why does flash crash on a daily basis? (sometimes numerous times a day)

    PROBLEM SOLVED. There were two versions of Flashplayer installed. I re-ran Flash Aid and it sorted the problem.
    Why does Adobe not resolve this problem at installation or upgrade time????

  • Flash crashes in Windows 7 while resizing canvas

    Every single time I try to resize the canvas in Flash CS4 running in Windows 7 I get a runtime error (see attached), then Flash crashes. Has anyone else had this problem?

    I have had something very similar happen and I believe I have it resolved.  I built a new Windows 7 64 Bit Theatre Computer with a Saphire video card.  The computer would crash using Flash.  I first experienced it using HuLu but then noticed again when listening to online radio.  I thought it was the video card and so I replaced it.  The second one had a bad fan and so a month later I finally got a good video card, but the only thing is it crashed too--extremely frustrating.
    I did a lot of research today and found people were solving the issue by uninstalling the IDC Audio Driver.  I dont have the IDC Audio Driver.  I disabled my Realtek HD Audio within Device Manager.  Things started to work but without sound.  So, I uninstalled the Realtek Audio Driver through Add/Remove Programs.  I restarted my computer and Device Manager installed the Generic High Definition Audio Device Driver and we have sound.
    I have even re-enabled hardware acceleration which was a definite killer to freezing my computer.  I am very happy now and hope this helps many.  What a headache that was.  Check out our Home Theatre Systems at www.hawkepc.com

  • Shockwave Flash Crashing on Google Chrome

    Anyone using Google Chrome and having problems with the Shockwave Flash crashing?? It's been happening to me for weeks and it's driving me nuts. Really don't want to stop using Chrome but I can't take this much longer...  Any help would be greatly appreciated!

    ADVANCED TROUBLESHOOTING.
    Installation errors can manifest themselves in many different ways, including (but not limited to) the following:
    A blank or flickering dialog box
    A frozen cursor or screen
    An error message such as, "An error occurred during the installation process. A required file is missing."
    Different factors can cause installation errors, including problems with operating system components, conflicting start-up items, and hardware conflicts.To benefit most from this document, perform the tasks in order. Keep track of the tasks you perform and the results of each task, including errors or problematic behavior. Adobe Technical Support can use this information to better assist you, if you need to call.
    Beginning troubleshooting
    The tasks in this section can help you resolve the most common system errors. Before performing any of these tasks, back up all personal files (for example, Shockwave Player files you created). Always restart the computer after a system error occurs to refresh its memory. Continuing to work without restarting the computer may compound the problem.
    1. Make sure that the system meets the minimum requirements for Shockwave Player.
    Shockwave Player may not run correctly on a system that doesn't meet the following requirements:
    PowerPC G4 or G5 or Mac Intel processor
    Mac OS X 10.3, 10.4 or 10.5
    128 MB of RAM
    180 MB of available hard-disk space
    Note: To check how much RAM is installed, choose About This Mac from the Apple menu. The Memory value indicates the amount of installed RAM.2. Reinstall Shockwave Player.
    An incorrect installation can cause errors when you work in Shockwave Player. Reinstalling Shockwave Player can eliminate these errors.To reinstall Shockwave Player:
    Move any personal files from the Shockwave Player folder on the hard disk to another location.
    Delete the Shockwave Player folder on the hard disk.
    Complete task 'command+option+escape' to force quit open applications. The task number may change; it should refer to the task above, "Run Shockwave Player while no other applications are running."
    Double-click the installer file in the Shockwave Player folder on the desktop.
    Follow the on-screen instructions to complete the installation.
    Note: If you previously installed an update to Shockwave Player, then reinstall the update after you reinstall Shockwave Player.
    3. Install Shockwave Player with the Login Items disabled for the user account.
    To disable nonessential extensions located in the user accounts Login Items folder: Press Shift while you restart the computer. Pressing Shift disables any applications that are in the Login Items folder.
    4. Log in as a user with administrator access privileges.
    If you lack administrator access privileges, then Shockwave Player may be unable to install necessary files. To determine if limited privileges cause the problem, log in as a user with access privileges, and try to re-create the problem. If the problem doesn't recur, then the account you were previously using lacks access privileges. Contact your system administrator to grant you access privileges.To log in as a user with access privileges:
    From the Apple menu, choose Log Out.
    Click Log Out when the system returns the message "Are you sure you want to quit all applications and log out now?"
    When the log in screen appears, select a user with access privileges, type the appropriate password, and then press Return.
    5. Install Shockwave Player from within a new user account.
    Occasionally, a user account can become corrupted and prevent the installer from accessing or creating the necessary files and folders. Create a new account, log in to the new account, and then try to install Shockwave Player.To create a new user account:
    From the Apple menu, choose System Preferences.
    Click Accounts.
    Click the lock icon if it's closed, and log in to make changes.
    Click the plus sign.
    Create a new user account. Make sure to remember the new password and to give the account administrative privileges by selecting Allow User to Administer This Computer.
    Click Create Account and close the Accounts window.
    Choose Log Out from the Apple menu.
    Log into the new user account.
    6. Install Shockwave Player from the desktop.
    Some system components--for example, device drivers and virus protection utilities--can conflict with the Shockwave Player installer and result in an incomplete or failed installation. To prevent these conflicts, install Shockwave Player from the desktop.
    Copy the Shockwave Player folder to the desktop.
    Open the Shockwave Player folder on the desktop.
    Double-click the Setup file, and follow the on-screen instructions
    7. Install current Mac OS X updates.
    Updates to the Mac OS X operating system can improve its performance and compatibility with applications. You can obtain Mac OS X updates from the Apple website atwww.apple.com/downloads/macosx/, or choose Software Update from the Apple menu. For assistance installing updates, contact Apple technical support.Important: Before you install a system update, check the system requirements for Shockwave Player 11 (and any third-party software or hardware you may use with Shockwave Player) to ensure compatibility. If the update isn't listed,then contact Adobe or the manufacturer of your third-party software or hardware.
    Intermediate troubleshooting
    If the tasks in the previous section don't solve the problem, then try the following intermediate troubleshooting tasks.
    8. Repair disk permissions by running Disk Utility.
    If you log in to an account with administrator privileges, but are still unable to install or run Shockwave Player, then your disk permissions may be damaged.To repair your permissions using the Disk Utility:
    Choose Go > Applications, open the Utilities folder, and then double-click Disk Utility.
    Select the volume on which you want to install Shockwave Player, and then click Repair Disk Permissions.
    Click the First Aid tab.
    9. Optimize hard disks.
    Installation or application errors can occur if the hard disk is very fragmented. Optimizing the hard disk rearranges files to minimize future fragmenting. It also restores fragmented files into single contiguous blocks, making hard disk space more accessible to the installer.Use a disk-optimizing utility, such as Symantec Norton Utilities, to optimize (defragment) each hard disk. For instructions on using a utility, refer to the documentation included with the utility.
    10. Check hard disks for damage.
    A damaged hard disk can cause installation errors. Check hard disks using a disk utility, such as Apple Disk Utility, Symantec Norton Utilities, or Micromat Drive 10.Disclaimer: Adobe doesn't support third-party disk utilities but provides the following instructions as a courtesy. For support, contact the developer of the disk utility.To check for damage by using Apple Disk Utility (included on the system CD):
    Start the computer from the system CD.
    Choose Installer > Open Disk Utility.
    Select the disks to be checked, and then click the First Aid tab.
    Click Repair to check and, if necessary, repair selected disks.
    11. Remove fonts from the Fonts folder in the Library folder before installing Shockwave Player.
    Drag all fonts from the Fonts folder in the Library folder to a new folder on the desktop.
    Restart the computer.
    Install Shockwave Player.
    Move all fonts back to the Fonts folder in the Library folder after installation is complete.
    12. Scan for viruses.
    Use current anti-virus software, such as McAfee Virex or Symantec Norton AntiVirus, to check the system for viruses. Make sure that you have the latest virus definitions for the anti-virus software you use. Although virus infections are rare, they can cause unexpected system behavior, including installation errors. Running virus-detection software regularly (for example, daily) prevents viruses from damaging software on the system. For instructions on running or obtaining the latest updates to the virus-detection software, refer to its documentation.

  • I installed firefox beta 5 and flash crashed on every page so i reverted back to firefox 4 and now flash crashes on every page of firefox 4. how can i fix it?

    Ever since i installed firefox 5 beta and the new version of flash, flash crashes on every page with flash on it no matter what version of firefox i run, and flash wont let me roll back to another version. I need flash for my work which is due by the end of the day so any help yall can offer is appreciated.

    well i fixed this for a bit by reinstalling ff4 and restarting but now the firefox 4 that i re-downloaded continues to very aggressively update itself to 5 beta without asking me. it just notifies me once its done it telling me to restart and once i close firefox, boom. flash crashes every minute or so and freezes my computer. I love firefox. i have used it for years. but if no one can help with this problem or at least tell me how to stop firefox 4 from updating to firefox beta 5 im gonna go download something else because im losing money fighting with firefox to get my work done which is now taking 10 times longer to complete. i really want to keep using firefox but this is kinda ridiculous guys... I understand that betas have bugs but dont make me use it without asking me first...

  • Why is no report available when Adobe Flash crashes?

    Firefox 6.0.1 (problem started with Firefox 5)
    Flash: 10.3.183.7
    OSX Lion
    The flash plugin crashes frequently; however, Firefox always says "No report available". How can I get crash information generated so that this bug can get fixed? It crashes while generating the thumbnail for videos while loading a page and a visit to http://www.youtube.com is enough to crash the plugin.
    The support pages for troubleshooting flash crashes just say to update flash, update firefox, and send in crash reports. All software is up to date and I can't get crash reports.
    Flash works fine in Chrome & Safari on the same machine. I've tried uninstalling & reinstalling Flash. I've tried disabling all plugins. I've tried disabling flash hardware acceleration. My CUDA driver is up to date too. I've tried 32-bit mode and 64-bit mode.
    How do I get a crash report?

    I am also having this problem on my 32 bit Windows 7 machine except that it hangs rather than crashes, that is I can't get to any of the other tab or use the browser and there is not ability to report the failure. I would post a screen shot but if I go there I won't be able to come back and post this message :(

  • Flash crashes iMac?

    Hi, I have an early 2008 24 inch iMac, 3.06GHz C2D, 4G Ram,OSX 10.8.2. I read a lot in this forum regarding Flash crashes iMac. It happens to me recently when I watch CNN news video, my iMac would shutdown unexpectedly. I beleive that CNN video uses Flash plugin, that might be the issue, but what I don't understand is that I can watch Hulu movies for hours without any issues, doesn't Hulu uses Flash as well? Perhaps some web engineer at CNN uses Flash the wrong way?

    If you have more than one user account, you must be logged in as an administrator to carry out these instructions.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Select the most recent panic log under System Diagnostic Reports. Post the entire contents — the text, please, not a screenshot. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header and body of the report, if it’s present (it may not be.) Please don't post shutdownStall, spin, or hang reports.

  • Flash Crashes on clicking import to stage

    I'm having an issue with a blank open document, clicking on 'import to stage' will crash the program or clicking on 'import to library' will crash the program.  I have tried uninstalling CS4 and re-installing CS4. The problem remains the same.
    Any ideas, I'm desparate.
    Thanks.
    Al

    Hi Peter,
    Thanks for the reply, and yes I can copy and paste. I did find a post that
    mentioned compatibility mode which I did try and it cleared everything up.
    The strange part to this is that everything worked fine until a few days
    ago. I think it may have to do with all the security patches that the
    company I work for jams down our systems on what seems like a weekly
    basis. But thanks for the reply, I do appreciate it.
    Al
    From:
    PJSB_DK <[email protected]>
    To:
    Alan Fiterman <[email protected]>
    Date:
    08/19/2010 02:54 PM
    Subject:
    Flash Crashes on clicking import to stage
    Hi
    Will it crash if you try copy/paste?
    Have you applied the latest patches/upgrades?
    Best regards
    Peter

  • Flash crashed on publish

    Ok, this is an odd one: I have Flash CS3 and was editing a
    file. I'd published it loads of times and then came back to it. As
    soon as I tried to publish it, flash crashed. I'm now left with a
    version of Flash where I can create a new file and publish without
    a problem ... but ... if I save the file and then attempt to
    publish it, flash crashes.
    Also, if I open a saved file; and then right click on a
    frame; then select 'actions', flash crashes ... but ... if I create
    a new file, then right click on a frame, actions opens properly.
    Adobe have had this for a week now and still no resolution
    other than making me re-install the whole thing.
    Does anyone else have a suggestion (or a fix!)?
    Thanks in advance.
    Mike

    I'm also getting the ill-fated publish/crash bug after having
    published a Flash file numerous times. I've also done a complete
    uninstall/reinstall of Flash and no luck. Seems to allow me to
    publish smaller files, but the one FLA file that crashes is about
    20MB.
    Have a very visible client who absolutely needs the site
    updated tomorrow and it's looking bleak right now...

  • In Firefox 36 and the portable ones 36 and 40 beta the Flash crashes when rightclinking on it with mouse on youtube video, doesn't happen with ie8

    Flash crash when rightclicking on youtube video in Firefox 3.6
    http://i54.tinypic.com/2h7f8me.jpg
    Flash when rightclicking on youtube video in Internet Explorer 8
    http://i53.tinypic.com/wmdxqr.jpg
    Have had this problem for a long time and no updates has helped

    You can try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    You need to close and restart Firefox after toggling this setting.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration

  • Flash Crashing... CS4

    Okay Adobe, I purchased CS3 and Acrobat didn't work. So you
    forced me to purchase 3.3 just to get a piece of software that
    should have worked with CS3. Now I'm having the same type of
    problem with CS4. Flash crashes over 15 times a day and it's really
    effecting my workflow. There's no fix and tech support has no idea.
    I've been working with a senior engineer and they don't know how to
    fix this either. It's been going on for months. I have inside
    information that they are making a dot release to fix these issues
    of crashing. They are also going to charge extra for it just like
    CS3.3. How is this right? If someone else made Flash and I weren't
    a full Flash development company then I would use another
    company!!! This is crap! If this is the case I will never pay for
    another piece of software from Adobe.
    If you advertise your software as compatitble with my
    computer and I spend $2600 on the software, it should work. I
    shouldn't have to come back 6 months later and pay an additional
    amount to pay for your mistakes!
    If you're having this problem, contact me, I'm taking action.
    Macromedia would have never behaved like this. It's very poor
    business practice!
    An Adobe wonders why so many people steal their software,
    they're probably tired of getting ripped off, like me, twice!!!
    Google this - flash cs4 crashing during publish - and you'll
    see it's not just me. However their tech support just had me
    purchase $600 more in video cards because they said it was my cards
    and I was the only one anywhere having this issue, NOPE!!! New
    cards = still crashing... And both sets of cards are on the CS4
    page of recommended cards!!!

    What's changed on your system?
    Can you post a crash report?

  • Flash crashes on movie export?

    I am having a huge problem with Flash CS3. Every time, ( and
    I DO mean
    every time) I try to export a movie in swf format, Flash
    crashes. I'm not quite sure what the problem is but it's
    duplicatable each time.
    I have tried uninstalling it and reinstalling it and that
    does not work. At this point Flash is useless to me.
    I realize, it's kind of a generic problem, but because I am
    desperate, can anyone tell me what might be the problem?
    Here are my machine stats:
    1.90 gigahertz AMD Athlon 64 X2 Dual Core
    128 kilobyte primary memory cache
    512 kilobyte secondary memory cache
    1024 Megabytes Installed Memory

    Moved from 'Using Flash Player' as this appears to be a Flash Authoring question.

  • Adobe Flash Crashes, no sound.

    Hello,
    I am constantly battling Flash, and resetting my computer because the sound will abruptly stop working. I was hoping that someone could provide some insight. I am currently running Windows 7 64bit, and flash crashes on all of the web browsers that I have (latest versions of Firefox, IE and Chrome).
    I am unsure if this is related or not, but the sound will abruptly stop working for my Steam Games as well as Spotify. Are these adobe based systems as well? Other programs, such as Diablo III work just fine with no sound issues what-so-ever.
    The latest bugs reported on Firefox are as follows:
    bp-4c61a903-43ae-414c-96f2-645cb2141031    10/31/2014    9:02 AM
    bp-1ca027ab-33ae-4919-bd7c-110d02141029    10/29/2014    12:16 AM
    bc6a6689-a542-4bcd-86c7-9c5105ba8093    10/23/2014    11:49 PM
    ad39279c-363e-4fbb-9e42-f337167e1118    10/16/2014    9:47 AM
    feccf086-ff06-4035-b7e9-346cc82a18ec    10/16/2014    1:55 AM
    If anyone has any idea on how to fix this, I would be sincerely grateful.

    System Information
    Time of this report: 11/2/2014, 10:00:55
           Machine name: HUANDESK-PC
       Operating System: Windows 7 Ultimate N 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.140706-1506)
               Language: English (Regional Setting: English)
    System Manufacturer: System manufacturer
           System Model: System Product Name
                   BIOS: BIOS Date: 07/22/10 16:12:13 Ver: 08.00.15
              Processor: Intel(R) Core(TM) i7 CPU         870  @ 2.93GHz (8 CPUs), ~2.9GHz
                 Memory: 8192MB RAM
    Available OS Memory: 8158MB RAM
              Page File: 2261MB used, 14052MB available
            Windows Dir: C:\Windows
        DirectX Version: DirectX 11
    DX Setup Parameters: Not found
       User DPI Setting: Using System DPI
    System DPI Setting: 96 DPI (100 percent)
        DWM DPI Scaling: Disabled
         DxDiag Version: 6.01.7601.17514 32bit Unicode
    DxDiag Notes
          Display Tab 1: No problems found.
            Sound Tab 1: No problems found.
            Sound Tab 2: No problems found.
            Sound Tab 3: No problems found.
            Sound Tab 4: No problems found.
              Input Tab: No problems found.
    DirectX Debug Levels
    Direct3D:    0/4 (retail)
    DirectDraw:  0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay:  0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow:  0/6 (retail)
    Display Devices
              Card name: NVIDIA GeForce GTX 460
           Manufacturer: NVIDIA
              Chip type: GeForce GTX 460
               DAC type: Integrated RAMDAC
             Device Key: Enum\PCI\VEN_10DE&DEV_0E22&SUBSYS_086510DE&REV_A1
         Display Memory: 4050 MB
       Dedicated Memory: 978 MB
          Shared Memory: 3071 MB
           Current Mode: 1600 x 1200 (32 bit) (60Hz)
           Monitor Name: Generic PnP Monitor
          Monitor Model: SyncMaster
             Monitor Id: SAM0613
            Native Mode: 1920 x 1080(p) (60.000Hz)
            Output Type: HDMI
            Driver Name: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Driver File Version: 9.18.0013.1106 (English)
         Driver Version: 9.18.13.1106
            DDI Version: 11
           Driver Model: WDDM 1.1
      Driver Attributes: Final Retail
       Driver Date/Size: 2/25/2013 23:32:38, 18055184 bytes
            WHQL Logo'd: Yes
        WHQL Date Stamp:
      Device Identifier: {D7B71E3E-4D62-11CF-3C77-68281CC2C435}
              Vendor ID: 0x10DE
              Device ID: 0x0E22
              SubSys ID: 0x086510DE
            Revision ID: 0x00A1
    Driver Strong Name: oem35.inf:NVIDIA_SetA_Devices.NTamd64.6.1:Section022:9.18.13.1106:pci\ven_10de&dev_0e22
         Rank Of Driver: 00E02001
            Video Accel: ModeMPEG2_A ModeMPEG2_C ModeVC1_C ModeWMV9_C
       Deinterlace Caps: {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
           D3D9 Overlay: Supported
                DXVA-HD: Supported
           DDraw Status: Enabled
             D3D Status: Enabled
             AGP Status: Enabled
    Sound Devices
                Description: Speakers (2- High Definition Audio Device)
    Default Sound Playback: Yes
    Default Voice Playback: Yes
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0892&SUBSYS_10438436&REV_1003
            Manufacturer ID: 1
                 Product ID: 65535
                       Type: WDM
                Driver Name: HdAudio.sys
             Driver Version: 6.01.7601.17514 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 11/20/2010 19:24:14, 350208 bytes
                Other Files:
            Driver Provider: Microsoft
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
                Description: Digital Audio (S/PDIF) (2- High Definition Audio Device)
    Default Sound Playback: No
    Default Voice Playback: No
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0892&SUBSYS_10438436&REV_1003
            Manufacturer ID: 1
                 Product ID: 65535
                       Type: WDM
                Driver Name: HdAudio.sys
             Driver Version: 6.01.7601.17514 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 11/20/2010 19:24:14, 350208 bytes
                Other Files:
            Driver Provider: Microsoft
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
                Description: SyncMaster-1 (NVIDIA High Definition Audio)
    Default Sound Playback: No
    Default Voice Playback: No
                Hardware ID: HDAUDIO\FUNC_01&VEN_10DE&DEV_0012&SUBSYS_10DE0101&REV_1001
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: nvhda64v.sys
             Driver Version: 1.03.0018.0000 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 2/18/2013 08:22:16, 189288 bytes
                Other Files:
            Driver Provider: NVIDIA Corporation
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
                Description: Digital Audio (S/PDIF) (2- High Definition Audio Device)
    Default Sound Playback: No
    Default Voice Playback: No
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0892&SUBSYS_10438436&REV_1003
            Manufacturer ID: 1
                 Product ID: 65535
                       Type: WDM
                Driver Name: HdAudio.sys
             Driver Version: 6.01.7601.17514 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 11/20/2010 19:24:14, 350208 bytes
                Other Files:
            Driver Provider: Microsoft
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    Sound Capture Devices
                Description: Desktop Microphone (2- Studio - Microsoft LifeCam.)
      Default Sound Capture: Yes
      Default Voice Capture: Yes
                Driver Name: USBAUDIO.sys
             Driver Version: 6.01.7601.18208 (English)
          Driver Attributes: Final Retail
              Date and Size: 7/12/2013 02:40:58, 109824 bytes
                  Cap Flags: 0x1
               Format Flags: 0xFFFFF
    DirectInput Devices
          Device Name: Mouse
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Keyboard
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Microsoft® LifeCam Studio(TM)
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x0772
            FF Driver: n/a
          Device Name: Microsoft Hardware USB Mouse
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x07B1
            FF Driver: n/a
          Device Name: Micr
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x07B1
            FF Driver: n/a
          Device Name: Micr
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x07B1
            FF Driver: n/a
          Device Name: Micr
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x07B1
            FF Driver: n/a
          Device Name: Micr
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x07B1
            FF Driver: n/a
          Device Name: USB Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC52B
            FF Driver: n/a
          Device Name: USB Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC52B
            FF Driver: n/a
          Device Name: USB Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC52B
            FF Driver: n/a
          Device Name: USB Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC52B
            FF Driver: n/a
          Device Name: USB Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC52B
            FF Driver: n/a
          Device Name: USB Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC52B
            FF Driver: n/a
    Poll w/ Interrupt: No
    USB Devices
    + USB Root Hub
    | Vendor/Product ID: 0x8086, 0x3B3C
    | Matching Device ID: usb\root_hub20
    | Service: usbhub
    |
    +-+ Generic USB Hub
    | | Vendor/Product ID: 0x8087, 0x0020
    | | Location: Port_#0001.Hub_#0001
    | | Matching Device ID: usb\class_09
    | | Service: usbhub
    Gameport Devices
    PS/2 Devices
    + Microsoft USB Dual Receiver Wireless Keyboard (Mouse and Keyboard Center)
    | Vendor/Product ID: 0x045E, 0x07B1
    | Matching Device ID: hid\vid_045e&pid_07b1&mi_00
    | Service: kbdhid
    |
    + HID Keyboard Device
    | Vendor/Product ID: 0x046D, 0xC52B
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    |
    + Microsoft USB Dual Receiver Wireless Mouse (Mouse and Keyboard Center)
    | Vendor/Product ID: 0x045E, 0x07B1
    | Matching Device ID: hid\vid_045e&pid_07b1&mi_01&col01
    | Upper Filters: Point64
    | Service: mouhid
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x046D, 0xC52B
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    Disk & DVD/CD-ROM Drives
          Drive: C:
    Free Space: 5.5 GB
    Total Space: 122.0 GB
    File System: NTFS
          Model: CORSAIR CMFSSD-128GBG2D ATA Device
          Drive: E:
    Free Space: 432.8 GB
    Total Space: 457.9 GB
    File System: NTFS
          Model: ST480HM000-1G5162 ATA Device
    System Devices
         Name: Intel(R) processor System Management Registers - D155
    Device ID: PCI\VEN_8086&DEV_D155&SUBSYS_00830043&REV_11\3&11583659&0&40
       Driver: n/a
         Name: Intel(R) 5 Series/3400 Series Chipset Family PCI Express Root Port 5 - 3B4A
    Device ID: PCI\VEN_8086&DEV_3B4A&SUBSYS_83831043&REV_06\3&11583659&0&E4
       Driver: n/a
         Name: Standard Dual Channel PCI IDE Controller
    Device ID: PCI\VEN_8086&DEV_3B20&SUBSYS_83831043&REV_06\3&11583659&0&FA
       Driver: n/a
         Name: Intel(R) QuickPath Interconnect - D151
    Device ID: PCI\VEN_8086&DEV_D151&SUBSYS_00000000&REV_11\3&11583659&0&81
       Driver: n/a
         Name: Intel(R) 5 Series/3400 Series Chipset Family PCI Express Root Port 4 - 3B48
    Device ID: PCI\VEN_8086&DEV_3B48&SUBSYS_83831043&REV_06\3&11583659&0&E3
       Driver: n/a
         Name: Intel(R) H55 Express Chipset LPC Interface Controller - 3B06
    Device ID: PCI\VEN_8086&DEV_3B06&SUBSYS_83831043&REV_06\3&11583659&0&F8
       Driver: n/a
         Name: Intel(R) QuickPath Interconnect - D150
    Device ID: PCI\VEN_8086&DEV_D150&SUBSYS_00000000&REV_11\3&11583659&0&80
       Driver: n/a
         Name: Intel(R) 5 Series/3400 Series Chipset Family PCI Express Root Port 3 - 3B46
    Device ID: PCI\VEN_8086&DEV_3B46&SUBSYS_83831043&REV_06\3&11583659&0&E2
       Driver: n/a
         Name: Intel(R) 82801 PCI Bridge - 244E
    Device ID: PCI\VEN_8086&DEV_244E&SUBSYS_83831043&REV_A6\3&11583659&0&F0
       Driver: n/a
         Name: Intel(R) processor PCI Express Root Port 1 - D138
    Device ID: PCI\VEN_8086&DEV_D138&SUBSYS_83831043&REV_11\3&11583659&0&18
       Driver: n/a
         Name: Intel(R) 5 Series/3400 Series Chipset Family PCI Express Root Port 1 - 3B42
    Device ID: PCI\VEN_8086&DEV_3B42&SUBSYS_83831043&REV_06\3&11583659&0&E0
       Driver: n/a
         Name: Standard Dual Channel PCI IDE Controller
    Device ID: PCI\VEN_197B&DEV_2368&SUBSYS_824F1043&REV_00\4&5C759D9&0&00E0
       Driver: n/a
         Name: Intel(R) processor DMI - D131
    Device ID: PCI\VEN_8086&DEV_D131&SUBSYS_83831043&REV_11\3&11583659&0&00
       Driver: n/a
         Name: Standard Enhanced PCI to USB Host Controller
    Device ID: PCI\VEN_8086&DEV_3B3C&SUBSYS_83831043&REV_06\3&11583659&0&D0
       Driver: n/a
         Name: Broadcom 802.11g Network Adapter
    Device ID: PCI\VEN_14E4&DEV_4318&SUBSYS_00421737&REV_02\4&3A440333&0&10F0
       Driver: n/a
         Name: Intel(R) processor Miscellaneous Registers - D158
    Device ID: PCI\VEN_8086&DEV_D158&SUBSYS_00000000&REV_11\3&11583659&0&43
       Driver: n/a
         Name: Intel(R) Management Engine Interface
    Device ID: PCI\VEN_8086&DEV_3B64&SUBSYS_83831043&REV_06\3&11583659&0&B0
       Driver: n/a
         Name: Standard Enhanced PCI to USB Host Controller
    Device ID: PCI\VEN_8086&DEV_3B34&SUBSYS_83831043&REV_06\3&11583659&0&E8
       Driver: n/a
         Name: Realtek PCIe GBE Family Controller
    Device ID: PCI\VEN_10EC&DEV_8168&SUBSYS_83A31043&REV_03\4&100198E&0&00E4
       Driver: n/a
         Name: Intel(R) processor System Control and Status Registers - D157
    Device ID: PCI\VEN_8086&DEV_D157&SUBSYS_00830043&REV_11\3&11583659&0&42
       Driver: n/a
         Name: High Definition Audio Controller
    Device ID: PCI\VEN_8086&DEV_3B56&SUBSYS_84351043&REV_06\3&11583659&0&D8
       Driver: n/a
         Name: Intel(R) 5 Series/3400 Series Chipset Family SMBus Controller - 3B30
    Device ID: PCI\VEN_8086&DEV_3B30&SUBSYS_83831043&REV_06\3&11583659&0&FB
       Driver: n/a
         Name: NVIDIA GeForce GTX 460
    Device ID: PCI\VEN_10DE&DEV_0E22&SUBSYS_086510DE&REV_A1\4&113C73B2&0&0018
       Driver: n/a
         Name: Intel(R) processor Semaphore and Scratchpad Registers - D156
    Device ID: PCI\VEN_8086&DEV_D156&SUBSYS_00830043&REV_11\3&11583659&0&41
       Driver: n/a
         Name: Intel(R) 5 Series/3400 Series Chipset Family PCI Express Root Port 6 - 3B4C
    Device ID: PCI\VEN_8086&DEV_3B4C&SUBSYS_83831043&REV_06\3&11583659&0&E5
       Driver: n/a
         Name: Standard Dual Channel PCI IDE Controller
    Device ID: PCI\VEN_8086&DEV_3B26&SUBSYS_83831043&REV_06\3&11583659&0&FD
       Driver: n/a
         Name: High Definition Audio Controller
    Device ID: PCI\VEN_10DE&DEV_0BEB&SUBSYS_086510DE&REV_A1\4&113C73B2&0&0118
       Driver: n/a
    DirectShow Filters
    DirectShow Filters:
    WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7601.17514
    ffdshow Video Decoder,0xff800001,2,1,ffdshow.ax,1.01.3977.0000
    ffdshow DXVA Video Decoder,0xff800002,2,1,ffdshow.ax,1.01.3977.0000
    ffdshow raw video filter,0x00200000,2,1,ffdshow.ax,1.01.3977.0000
    ffdshow Audio Decoder,0xff800001,1,1,ffdshow.ax,1.01.3977.0000
    DV Muxer,0x00400000,0,0,qdv.dll,6.06.7601.17514
    Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7601.18526
    LAV Splitter,0x00400001,1,1,LAVSplitter.ax,0.33.0000.0000
    WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7601.17514
    AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7601.18526
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7601.18526
    SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,12.00.9200.17037
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7601.17528
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.18526
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7601.18526
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7601.18526
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7601.17528
    Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7601.17514
    SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7601.18526
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7601.18526
    WavPack Audio Decoder,0x00600000,1,1,WavPackDSDecoder.ax,1.01.0000.0484
    DV Splitter,0x00600000,1,2,qdv.dll,6.06.7601.17514
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7601.18526
    Haali Media Splitter,0x00800001,0,1,splitter.ax,1.11.0096.0014
    Haali Media Splitter (AR),0x00400000,1,1,splitter.ax,1.11.0096.0014
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7601.17514
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7601.18526
    madFlac Decoder,0x00600000,1,1,madFlac.ax,1.10.0000.0000
    Video Renderer,0x00800001,1,0,quartz.dll,6.06.7601.18526
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.06.7601.18611
    Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7601.18526
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.7601.18526
    Haali Video Renderer,0x00200000,1,0,dxr.dll,
    VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7601.17514
    WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7601.17514
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7601.17514
    File writer,0x00200000,1,0,qcap.dll,6.06.7601.17514
    Haali Simple Media Splitter,0x00200000,0,1,splitter.ax,1.11.0096.0014
    DirectVobSub,0x00200000,2,1,vsfilter.dll,1.05.0003.3705
    DirectVobSub (auto-loading version),0x00800002,2,1,vsfilter.dll,1.05.0003.3705
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7601.18611
    Overlay Mixer2,0x00200000,1,1,qdvd.dll,6.06.7601.18611
    Haali Matroska Muxer,0x00200000,1,0,splitter.ax,1.11.0096.0014
    AVI Draw,0x00600064,9,1,quartz.dll,6.06.7601.18526
    RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
    Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7601.17514
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7601.17514
    ffdshow Audio Processor,0x00200000,1,1,ffdshow.ax,1.01.3977.0000
    LAV Splitter Source,0x00400001,0,1,LAVSplitter.ax,0.33.0000.0000
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7601.18501
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.7601.18501
    madFlac Source,0x00600000,0,1,madFlac.ax,1.10.0000.0000
    MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7601.17514
    Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7601.17514
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Smart Tee,0x00200000,1,2,qcap.dll,6.06.7601.17514
    Overlay Mixer,0x00200000,0,0,qdvd.dll,6.06.7601.18611
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.18526
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7601.18526
    Wave Parser,0x00400000,1,1,quartz.dll,6.06.7601.18526
    MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7601.18526
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7601.18526
    File stream renderer,0x00400000,1,1,quartz.dll,6.06.7601.18526
    WavPack Audio Splitter,0x00600000,1,1,WavPackDSSplitter.ax,1.01.0000.0323
    ffdshow subtitles filter,0x00200000,2,1,ffdshow.ax,1.01.3977.0000
    Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0000
    StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7601.17528
    AVI Mux,0x00200000,1,0,qcap.dll,6.06.7601.17514
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7601.18526
    File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7601.18526
    File Source (URL),0x00400000,0,1,quartz.dll,6.06.7601.18526
    LAV Audio Decoder,0x00400001,1,1,LAVAudio.ax,0.33.0000.0000
    LAV Video Decoder,0x00800003,1,1,LAVVideo.ax,0.33.0000.0000
    Haali Video Sink,0x00200000,1,0,splitter.ax,1.11.0096.0014
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7601.17514
    BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7601.17669
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7601.18526
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Video Compressors:
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7601.17514
    ffdshow video encoder,0x00100000,1,1,ffdshow.ax,1.01.3977.0000
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7601.18526
    Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft RLE,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft Video 1,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Audio Compressors:
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.18526
    PCM,0x00200000,1,1,quartz.dll,6.06.7601.18526
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.18526
    GSM 6.10,0x00200000,1,1,quartz.dll,6.06.7601.18526
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7601.18526
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7601.18526
    Audio Capture Sources:
    Desktop Microphone (2- Studio -,0x00200000,0,0,qcap.dll,6.06.7601.17514
    PBDA CP Filters:
    PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7601.17528
    PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528
    PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7601.18526
    Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7601.18526
    WDM Streaming Capture Devices:
    ,0x00000000,0,0,,
    Microsoft LifeCam Studio,0x00200000,1,1,LcProxy2.ax,3.60.0250.0000
    Studio - Microsoft LifeCam.,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    WDM Streaming Rendering Devices:
    NVIDIA High Definition Audio,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    HD Audio Speaker,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    HD Audio SPDIF out 5,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    HD Audio SPDIF out,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7601.17514
    Video Capture Sources:
    Microsoft LifeCam Studio,0x00200000,1,1,LcProxy2.ax,3.60.0250.0000
    Multi-Instance Capable VBI Codecs:
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7601.17669
    MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7601.17514
    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7601.17708
    Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    PTFilter,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Audio Renderers:
    Speakers (2- High Definition Au,0x00200000,1,0,quartz.dll,6.06.7601.18526
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7601.18526
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7601.18526
    Digital Audio (S/PDIF) (2- High,0x00200000,1,0,quartz.dll,6.06.7601.18526
    DirectSound: Digital Audio (S/PDIF) (2- High Definition Audio Device),0x00200000,1,0,quartz.dll,6.06.7601.18526
    DirectSound: Speakers (2- High Definition Audio Device),0x00200000,1,0,quartz.dll,6.06.7601.18526
    DirectSound: SyncMaster-1 (NVIDIA High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.18526
    SyncMaster-1 (NVIDIA High Defin,0x00200000,1,0,quartz.dll,6.06.7601.18526
    EVR Power Information
    Current Setting:     Unknown  Quality Flags: 0
        Enabled:
        Unknown    Decode Power Usage: 0
      Balanced Flags: 0
        Enabled:
        Unknown    Decode Power Usage: 0
      PowerFlags: 0
        Enabled:
        Unknown    Decode Power Usage: 0

Maybe you are looking for

  • Soa-infra not starting

    Hi all, I have installed soa 11g recently . When I tried to deploy a BPEL process from Jdev I got this error No SOA configured servers found for deploying the archive When I logged into the web logic admin server I can see both the bam server and soa

  • Powerbook G4 15inch, Hi-Res or not?

    I am wanting to upgrade my memory from 512 to 1GB, when I look to do this I am always asked if I have the hi-res 1.67Ghz or not. How do I determine if I have the hi-res product? I feel like I have looked everywhere. The screen resolution on mine is 1

  • My MacBook Air has reverted to iphoto 7 and seems resistant to upgrade. I am on OS X 10.7.5, and in the process of upgrading to Maverick. Any ideas?

    My MacBook Air has reverted to iphoto 7 and seems resistant to upgrade. I am on OS X 10.7.5, and in the process of upgrading to Maverick. Any ideas?

  • Getting my files back...

    I had to reboot my computer because it had a virus which means everything deleted off of my computer. All my songs and videos and files were erased and everything. I still have the songs on my 60 GB iPod dat were on iTunes b4 i rebooted my computer.

  • Nikon D200 Raw Support

    Hi there, I purchased Aperture immediately it came out in December 2005 at the same time I got my new Nikon D200. Now some 3 months later I still cannot use Aperture for my Raw files from the D200. Does anyone else have this same problem and/or does