Seeking a Parallel Element

Hi all,
I'm currently working on a multilingual AlR project with video playback that supports multiple audio tracks. Each flv video file is accompanied by a seperate mp3 audio track for each language that the app supports. I need to sync the playback of the video with the appropriate audio track for the selected language.
I have been able to get this to work by using a ParallelElement and adding the video/audio.
However when I try to seek the playback to a specific time i get a 'The specified capability is not currently supported' error.
If i add a listener for Media Player Capability Change:
mediaPlayer.addEventListener(MediaPlayerCapabilityChangeEvent.CAN_SEEK_CHANGE, doSeek);
In the event hander, when I call seek on the media player, I do not get an error. However the video/audio does not seek.
Does anyone have any advice on how I could get the seek behavior to work for a Parallel Element ? Do I need to manually add a trait the element? Or maybe to each media element individually?
Cheers,
M
My code.....
mediaContainer = new MediaContainer();
mediaPlayer = new MediaPlayer();
mediaPlayer.addEventListener(MediaPlayerCapabilityChangeEvent.CAN_SEEK_CHANGE, doSeek);
var mediaFactory:DefaultMediaFactory = new DefaultMediaFactory();
var videoElement:MediaElement = mediaFactory.createMediaElement(new URLResource('assets/video/part1.flv'));
var audioElement:MediaElement = mediaFactory.createMediaElement(new URLResource('assets/video/part1_aud_eng.mp3'));
var parallel:ParallelElement = new ParallelElement();
parallel.addChild(videoElement);
parallel.addChild(audioElement);
mediaContainer.addMediaElement(parallel);
mediaPlayer.media = parallel;
// mediaPlayer.seek(10); // Throws error

This is a use case we also ran across fairly recently.  Rather than approach it by trying to switch between elements that are passed to the MediaPlayerWrapper, I'd encourage you to try to model the switching behavior within a single MediaElement (i.e. so that you don't switch elements out of the MediaPlayerWrapper).  Switching elements at the MediaPlayer level is equivalent to saying "the previous video is done, here's the next one" -- that's why they restart upon each switch.
The MediaElement-based solution can be seen in our ExamplePlayer sample app here (search for "Switching Proxy") and here.  The idea is that you place your two VideoElements behind a single ProxyElement, where the ProxyElement is capable of switching between the two videos.  The ProxyElement models the same API as all other MediaElements, and automatically dispatches the appropriate events when you change what it proxies, so the transitions from one video to the next should be smooth.  The sample version switches back and forth between videos based on a timer, but you could change the switching logic based on your requirements.

Similar Messages

  • [svn:osmf:] 17708: Fix FM-932: Scaling of parallel elements is not consistent.

    Revision: 17708
    Revision: 17708
    Author:   [email protected]
    Date:     2010-09-14 16:32:29 -0700 (Tue, 14 Sep 2010)
    Log Message:
    Fix FM-932: Scaling of parallel elements is not consistent.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-932
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/compositeClasses/ParallelDisplayObjectTrait.a s
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestParallelElementWithDisplayObjectTrait .as

  • [svn:osmf:] 14036: Tweaking sample to have the parallel element use a fixed size.

    Revision: 14036
    Revision: 14036
    Author:   [email protected]
    Date:     2010-02-08 06:31:10 -0800 (Mon, 08 Feb 2010)
    Log Message:
    Tweaking sample to have the parallel element use a fixed size.
    Modified Paths:
        osmf/trunk/apps/samples/framework/LayoutSample/src/LayoutSample.as

    Hi,
    thank you for your fast reply. Please find attached my code where I marked the array creation with green circles and the control part with a red one. I removed all the other stuff and loops which are not relevant here (heart beat loop, value initialization, DMA fifo, etc). The sampling rate should be up to 50kS/s for capturing signals with a frequency of the range of 10 to 500Hz).
    @ Spectre Dave:
    I would like to do it in the FPGA because my host part (cRIO PPC) is already overloaded and I had a lot of problems to get it running and save the data to a file with the high sampling rate (50kS/s). I was thinking that simple array functions would be an easy thing for an FPGA. Or am I wrong??
    Please let me know if you have any idea or if you need more information.
    Thank you very much and best regards
    Andreas
    Attachments:
    FPGAarrayProblem.png ‏189 KB

  • Many live MBR streams, as parallel elements through same player

    In case of dynamic number of live MBR streams (different cameras of same event), I'll prefer to use parallel element and run all streams through same instance of media player - mostly because of time synchronization and QoS management...
    Every stream have 4-5 bandwidth variations, and lowest is for "inactive" thumb video state.
    Is there a way to dynamically change bitrate setup of single stream in parallel element?
    I'm trying to limit (or cancel) switching for streams while they thumbs, and vice versa.

    Hi,
    the value provided is in kilobits.
    Regarding the autoswitch problem, you seem to have hit an issue that we're tracking at:
    http://bugs.adobe.com/jira/browse/ST-366

  • [svn:osmf:] 15563: Media still playing for parallel elements after Playback error.

    Revision: 15563
    Revision: 15563
    Author:   [email protected]
    Date:     2010-04-19 12:34:19 -0700 (Mon, 19 Apr 2010)
    Log Message:
    Media still playing for parallel elements after Playback error. FM-612.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-612
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/media/MediaPlayer.as

    Alright, well I figured it out at last.  In case anyone has the same problem I was missing a perl script.  I believe it's only needed when you're running a frontend separate from the backend.
    pacman -S perl-crypt-ssleay
    Last edited by luciferin (2007-08-21 19:22:02)

  • Invisible parallel element and bitmapData

    Hi,
    I'm to rather new to AS3 and completely new to OSMF and so I hope somebody here can help me with the following.
    I want to make an application that plays two simultaneous streams (I suppose using parallel elements), where on of the streams is not visible on the stage/canvas. Of this second stream I would like to access the bitmapData to display it in another way (moving thumbnails of other videos).
    So I have two questions:
    First, how would I go about creating an element that doesn't show on the stage.
    And second, how do I get at the bitmapData of an element in OSMF.
    I hope somebody can help. Thanks, Heerko

    Hi Heerko,
    To make an element "invisible" you can check the LayoutMetadata class
    import org.osmf.layout.LayoutMetadata;
    import org.osmf.media.MediaElement;
    // element is the MediaElement you want to be invisible
    var metadata:LayoutMetadata = element.getMetadata(LayoutMetadata.LAYOUT_NAMESPACE) as LayoutMetadata;
    if (!metadata) {
        metadata=new LayoutMetadata();
        element.addMetadata(LayoutMetadata.LAYOUT_NAMESPACE, metadata);
    metadata.x = 0;
    metadata.y = 0;
    metadata.width =  0;
    metadata.height = 0;   // Setting width and height to 0 will make it look like if it was not visible
    Probably not the best solution, but does the work
    Now for your BitmapData question
    import flash.display.BitmapData;
    import flash.display.DisplayObject;
    import org.osmf.net.NetStreamDisplayObjectTrait;
    import org.osmf.traits.MediaTraitType;
    // Let's say you're loading a video for example
    // element is a VideoElement instance here
    var trait:NetStreamDisplayObjectTrait = element.getTrait(MediaTraitType.DISPLAY_OBJECT) as NetStreamDisplayObjectTrait;
    if(trait) {
        var d:DisplayObject = trait.displayObject as DisplayObject;
        var b:BitmapData = new BitmapData(d.width, d.height);
        b.draw(d); // Watch out though, if you're loading from a different domain, make sure you have set/loaded policy files, etc ...
    Hope it helps
    Cheers,
    Julien

  • Auto MBR switching + Aggregated metrics from a parallel element?

    working on a player that would like to leverage auto MBR switching implemented in OSMF both for live and hosted RTMP streams. please tell me about best practices, as far as buffer length, minimum buffer size and other settings.
    this player also serves 'multi pane' video, meaning more than one video stream at a time, which is implemented extending ParallelElement. since auto MBR switching uses 'metrics' to decide about switching streams' bitrate up and down, I was wondering if in case of a ParallelElement, the metrics gets aggregated based on all individual elements' metrics... and a technical question: is the 'processAggregatedTrait' method involved in this? thanks!

    working on a player that would like to leverage auto MBR switching implemented in OSMF both for live and hosted RTMP streams. please tell me about best practices, as far as buffer length, minimum buffer size and other settings.
    this player also serves 'multi pane' video, meaning more than one video stream at a time, which is implemented extending ParallelElement. since auto MBR switching uses 'metrics' to decide about switching streams' bitrate up and down, I was wondering if in case of a ParallelElement, the metrics gets aggregated based on all individual elements' metrics... and a technical question: is the 'processAggregatedTrait' method involved in this? thanks!

  • Seeking an audioElement inside a composition

    It seems that AudioElement is not working well when used inside a composition (parallelElement).
    AudioElement does not dispatch CURRENT_TIME_CHANGE after SEEKING_CHANGE is dispatched for the first time. Change useVideo to true, you will then see CURRENT_TIME_CHANGE dispatched even after seeking.
    It's probably related to that bug: https://bugs.adobe.com/jira/browse/FM-917. Seeking doesn't seems to work right with SerialElement.
    Here's a sample code:
    package
         import com.bit101.components.PushButton;
         import flash.display.Sprite;
         import flash.events.Event;
         import flash.events.MouseEvent;
         import org.osmf.containers.MediaContainer;
         import org.osmf.elements.AudioElement;
         import org.osmf.elements.VideoElement;
         import org.osmf.elements.ParallelElement;
         import org.osmf.elements.SerialElement;
         import org.osmf.elements.SoundLoader;
         import org.osmf.events.SeekEvent;
         import org.osmf.events.TimeEvent;
         import org.osmf.layout.LayoutUtils;
         import org.osmf.media.MediaElement;
         import org.osmf.media.MediaPlayer;
         import org.osmf.media.URLResource;
         import org.osmf.net.NetLoader;
          *  THIS IS A SIMPLE TEST OF PLAYING AN AUDIO FILE IN A PARALLEL ELEMENT,
          *  OR INSIDE A PARALLEL ELEMENT INSIDE A SERIAL ELEMENT.
          *  THIS BEHAVIOR DOESNT OCCUR ON PLAYING AN AUDIO FILE DIRECTLY.
         [SWF(backgroundColor="0x000000", frameRate="25", width="915", height="360")]
         public class TestAudioBug extends Sprite
              private var useDefaultDuration:Number = 20; // -1 for FALSE
              private var useSerialElement:Boolean = false;
              private var useVideo:Boolean = false;
              private var seekvalue:Number = 5;
              private var btn1:PushButton;
              private var videoelement:VideoElement;
              private var audioelement:AudioElement;
              private var pElement:ParallelElement;
              private var sElement:SerialElement;
              private var mediaContainer:MediaContainer;
              private var mediaPlayer:MediaPlayer;
              private var audioURL:String = "http://localhost:8888/videotest/alloyMental.mp3";
              private var videoURL:String = "http://localhost:8888/videotest/Milan_IT_640x360.flv";
              public function TestAudioBug()
                   this.addEventListener(Event.ADDED_TO_STAGE, init);
              private function init(e:Event):void
                   createPlayer();
                   createNav();
                   createParallel();
                   startPlayback();
              private function createPlayer():void
                   mediaContainer = new MediaContainer();
                   addChild(mediaContainer);
                   mediaPlayer = new MediaPlayer();
                   mediaPlayer.addEventListener(SeekEvent.SEEKING_CHANGE, onSeekChange);
                   mediaPlayer.addEventListener(TimeEvent.CURRENT_TIME_CHANGE, onTimeChange);
              private function createNav():void
                   btn1 = new PushButton();
                   btn1.label = "seek";
                   btn1.addEventListener(MouseEvent.CLICK, seek);
                   addChild(btn1);
              private function createParallel():void
                   audioelement = new AudioElement(new URLResource(audioURL));
                   videoelement = new VideoElement(new URLResource(videoURL));
                   if(useDefaultDuration > -1)
                        audioelement.defaultDuration = useDefaultDuration;
                        trace("\n\n\n\audioelement HAS A DEFAULT DURATION");
                   else
                        trace("\n\n\n\audioelement DOES NOT HAVE A DEFAULT DURATION");
                   pElement = new ParallelElement();
                   if(useVideo)
                        pElement.addChild(videoelement);
                   else
                        pElement.addChild(audioelement);
              private function startPlayback():void
                   if(useSerialElement)
                        trace("playback inside a SERIAL element\n\n\n");
                        sElement = new SerialElement();
                        sElement.addChild(pElement);
                        mediaPlayer.media = sElement;
                        mediaContainer.addMediaElement( sElement );
                   else
                        trace("playback inside a PARALLEL element\n\n\n");
                        mediaPlayer.media = pElement;
                        mediaContainer.addMediaElement( pElement );
              private function seek(e:MouseEvent):void
                   trace("seek(), canSeek? "+mediaPlayer.canSeek+" seeking? "+mediaPlayer.seeking+" is temporal? "+mediaPlayer.temporal+" to "+seekvalue+":00");
                   mediaPlayer.seek(seekvalue);
              private function onTimeChange(e:TimeEvent):void
                   trace("onTimeChange: "+e.time);
              private function onSeekChange(e:SeekEvent):void
                   trace("onSeekChange: still seeking? "+e.seeking);

    I'm unable to reproduce the problem when using the MP3 from one of our sample apps:
    http://mediapm.edgesuite.net/osmf/content/test/train_1500.mp3
    Here's the trace output when I use that MP3:
    onTimeChange: 7.291065759637188
    onTimeChange: 7.569705215419501
    onTimeChange: 7.848344671201814
    seek(), canSeek? true seeking? false is temporal? true to 5:00
    onSeekChange: still seeking? true
    onSeekChange: still seeking? false
    onTimeChange: 5
    onTimeChange: 5.185759637188208
    onTimeChange: 5.464399092970521
    onTimeChange: 5.743038548752835

  • Problem with Seek and RTMPPosteFrameElement

    I am having difficulties seeking a serial element, and I believe it's because we removed the Temporal trait inside the RTMPPosterFrameElement.  When I comment out that code, the posterframe does not pause but the serial element seeks fine. Otherwise, the posterframe works as it should, but the serial element does not seek (even though it says it is seekable). I'm just looking for a bit of direction here ...
    Thank you

    This looks like a bug.  Looks like SerialSeekableTrait.prepareSeekOperationInfo indicates that you can't do the seek, because it fails to take into account that the SerialElement might have non-seekable children (which is what the poster frame is) when calculating curChildIndex.  An ugly workaround would be to add an additional VideoElement to SerialElement (although then you could only seek within the first video, so it's not really a sustainable workaround).
    Can you file a bug for this?

  • [svn:osmf:] 15607: Partial fix #2 for FM-719.

    Revision: 15607
    Revision: 15607
    Author:   [email protected]
    Date:     2010-04-20 12:37:41 -0700 (Tue, 20 Apr 2010)
    Log Message:
    Partial fix #2 for FM-719.  This fix ensures that when seeking in and out of the child of a parallel element, that the play state is updated according to the play state of the composition.  For example, if there are two parallel children of duration 10 and 20 seconds, and the parallel element is playing, and you seek from 15 to 5, then the shorter child should resume playback.  (And similar for when paused.)  Bug detected when verifying the (soon to be checked in) fix for FM-719, and seeking in and out of the section of video where the image should be displayed.  Added unit tests for these cases as well.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-719
        http://bugs.adobe.com/jira/browse/FM-719
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/compositeClasses/ParallelSeekTrait.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestParallelElementWithSeekTrait.as

  • INDesign/INCopy Workflow

    Sehr geehrte Damen und Herren,
    wie telefonisch mit dem Kundensupport abgesprochen übersenden wir die Fehlermeldungen inkl. Systeminformationen.
    Folgendes Problem:
    Wir arbeiten mit dem Redaktionssystem (InDesign und InCopy CS6).
    Beim aktualisieren der INCopy Aufgabe (es handelt sich um Fließtext mit verankerten Objekten das heißt Bildrahmen mit Fotos) stürzt das Programm ab.
    Unter InDesign/InCopy CS4 war das kein Problem. Über Hilfe würden wir uns freuen.
    Mit freundlichen Grüßen
    Claudia Hottendorff
    Systeminformationsbericht erstellt am: 09/03/13 14:53:42
    Systemname: CS169031
    [Systemübersicht]
    Element    Wert   
    Betriebssystemname    Microsoft Windows 7 Professional   
    Version    6.1.7601 Service Pack 1 Build 7601   
    Zusätzliche Betriebssystembeschreibung     Nicht verfügbar   
    Betriebssystemhersteller    Microsoft Corporation   
    Systemname    CS169031   
    Systemhersteller    Dell Inc.   
    Systemmodell    OptiPlex 7010   
    Systemtyp    x64-basierter PC   
    Prozessor    Intel(R) Core(TM) i5-3470 CPU @ 3.20GHz, 3192 MHz, 4 Kern(e), 4 logische(r) Prozessor(en)   
    BIOS-Version/-Datum    Dell Inc. A12, 10.01.2013   
    SMBIOS-Version    2.7   
    Windows-Verzeichnis    C:\Windows   
    Systemverzeichnis    C:\Windows\system32   
    Startgerät    \Device\HarddiskVolume1   
    Gebietsschema    Deutschland   
    Hardwareabstraktionsebene    Version = "6.1.7601.17514"   
    Benutzername    MAIL\Chottend   
    Zeitzone    Mitteleuropäische Sommerzeit   
    Installierter physikalischer Speicher (RAM)    4,00 GB   
    Gesamter realer Speicher    3,96 GB   
    Verfügbarer realer Speicher    2,03 GB   
    Gesamter virtueller Speicher    7,91 GB   
    Verfügbarer virtueller Speicher    5,28 GB   
    Größe der Auslagerungsdatei    3,96 GB   
    Auslagerungsdatei    C:\pagefile.sys   
    [Hardwareressourcen]
    [Konflikte/Gemeinsame Nutzung]
    Ressource    Gerät   
    E/A-Port 0x00000000-0x0000001F    DMA-Controller   
    E/A-Port 0x00000000-0x0000001F    PCI bus   
    E/A-Port 0x000003C0-0x000003DF    PCI Standard-PCI-zu-PCI-Brücke   
    E/A-Port 0x000003C0-0x000003DF    AMD Radeon HD 7800 Series   
    E/A-Port 0x00000065-0x0000006F    Hauptplatinenressourcen   
    E/A-Port 0x00000065-0x0000006F    Hauptplatinenressourcen   
    E/A-Port 0x00000070-0x00000077    System CMOS/Echtzeituhr   
    E/A-Port 0x00000070-0x00000077    Hauptplatinenressourcen   
    Speicheradresse 0xF7E00000-0xF7EFFFFF    PCI Standard-PCI-zu-PCI-Brücke   
    Speicheradresse 0xF7E00000-0xF7EFFFFF    AMD Radeon HD 7800 Series   
    E/A-Port 0x000004D0-0x000004D1    Programmierbarer Interruptcontroller   
    E/A-Port 0x000004D0-0x000004D1    Hauptplatinenressourcen   
    E/A-Port 0x0000E000-0x0000EFFF    PCI Standard-PCI-zu-PCI-Brücke   
    E/A-Port 0x0000E000-0x0000EFFF    AMD Radeon HD 7800 Series   
    Speicheradresse 0xFF000000-0xFFFFFFFF    Hauptplatinenressourcen   
    Speicheradresse 0xFF000000-0xFFFFFFFF    Intel(R) 82802 Firmwarehub   
    IRQ 16    PCI Standard-PCI-zu-PCI-Brücke   
    IRQ 16    Intel(R) 7 Series/C216 Chipset Family USB Enhanced Host Controller - 1E2D   
    IRQ 16    Intel(R) Management Engine Interface    
    Speicheradresse 0xE0000000-0xEFFFFFFF    PCI Standard-PCI-zu-PCI-Brücke   
    Speicheradresse 0xE0000000-0xEFFFFFFF    AMD Radeon HD 7800 Series   
    Speicheradresse 0xE0000000-0xEFFFFFFF    PCI bus   
    Speicheradresse 0xA0000-0xBFFFF    PCI Standard-PCI-zu-PCI-Brücke   
    Speicheradresse 0xA0000-0xBFFFF    AMD Radeon HD 7800 Series   
    Speicheradresse 0xA0000-0xBFFFF    PCI bus   
    E/A-Port 0x000003B0-0x000003BB    PCI Standard-PCI-zu-PCI-Brücke   
    E/A-Port 0x000003B0-0x000003BB    AMD Radeon HD 7800 Series   
    E/A-Port 0x00000080-0x00000080    Hauptplatinenressourcen   
    E/A-Port 0x00000080-0x00000080    Hauptplatinenressourcen   
    E/A-Port 0x0000FFFF-0x0000FFFF    Hauptplatinenressourcen   
    E/A-Port 0x0000FFFF-0x0000FFFF    Hauptplatinenressourcen   
    [DMA]
    Ressource    Gerät    Status   
    Kanal 4    DMA-Controller    OK   
    [Verankerte Hardware]
    Gerät    PNP-Gerätekennung   
    [E/A]
    Ressource    Gerät    Status   
    0x00000020-0x00000021    Programmierbarer Interruptcontroller    OK   
    0x00000024-0x00000025    Programmierbarer Interruptcontroller    OK   
    0x00000028-0x00000029    Programmierbarer Interruptcontroller    OK   
    0x0000002C-0x0000002D    Programmierbarer Interruptcontroller    OK   
    0x00000030-0x00000031    Programmierbarer Interruptcontroller    OK   
    0x00000034-0x00000035    Programmierbarer Interruptcontroller    OK   
    0x00000038-0x00000039    Programmierbarer Interruptcontroller    OK   
    0x0000003C-0x0000003D    Programmierbarer Interruptcontroller    OK   
    0x000000A0-0x000000A1    Programmierbarer Interruptcontroller    OK   
    0x000000A4-0x000000A5    Programmierbarer Interruptcontroller    OK   
    0x000000A8-0x000000A9    Programmierbarer Interruptcontroller    OK   
    0x000000AC-0x000000AD    Programmierbarer Interruptcontroller    OK   
    0x000000B0-0x000000B1    Programmierbarer Interruptcontroller    OK   
    0x000000B4-0x000000B5    Programmierbarer Interruptcontroller    OK   
    0x000000B8-0x000000B9    Programmierbarer Interruptcontroller    OK   
    0x000000BC-0x000000BD    Programmierbarer Interruptcontroller    OK   
    0x000004D0-0x000004D1    Programmierbarer Interruptcontroller    OK   
    0x000004D0-0x000004D1    Hauptplatinenressourcen    OK   
    0x00000040-0x00000043    Systemzeitgeber    OK   
    0x00000050-0x00000053    Systemzeitgeber    OK   
    0x0000E000-0x0000EFFF    PCI Standard-PCI-zu-PCI-Brücke    OK   
    0x0000E000-0x0000EFFF    AMD Radeon HD 7800 Series    OK   
    0x000003B0-0x000003BB    PCI Standard-PCI-zu-PCI-Brücke    OK   
    0x000003B0-0x000003BB    AMD Radeon HD 7800 Series    OK   
    0x000003C0-0x000003DF    PCI Standard-PCI-zu-PCI-Brücke    OK   
    0x000003C0-0x000003DF    AMD Radeon HD 7800 Series    OK   
    0x00000000-0x0000001F    DMA-Controller    OK   
    0x00000000-0x0000001F    PCI bus    OK   
    0x00000081-0x00000091    DMA-Controller    OK   
    0x00000093-0x0000009F    DMA-Controller    OK   
    0x000000C0-0x000000DF    DMA-Controller    OK   
    0x000003F8-0x000003FF    Kommunikationsanschluss (COM1)    OK   
    0x00000D00-0x0000FFFF    PCI bus    OK   
    0x00000070-0x00000077    System CMOS/Echtzeituhr    OK   
    0x00000070-0x00000077    Hauptplatinenressourcen    OK   
    0x0000F090-0x0000F097    Intel(R) 7 Series/C216 Chipset Family SATA AHCI Controller - 1E02    OK   
    0x0000F080-0x0000F083    Intel(R) 7 Series/C216 Chipset Family SATA AHCI Controller - 1E02    OK   
    0x0000F070-0x0000F077    Intel(R) 7 Series/C216 Chipset Family SATA AHCI Controller - 1E02    OK   
    0x0000F060-0x0000F063    Intel(R) 7 Series/C216 Chipset Family SATA AHCI Controller - 1E02    OK   
    0x0000F020-0x0000F03F    Intel(R) 7 Series/C216 Chipset Family SATA AHCI Controller - 1E02    OK   
    0x00000010-0x0000001F    Hauptplatinenressourcen    OK   
    0x00000022-0x0000003F    Hauptplatinenressourcen    OK   
    0x00000044-0x0000005F    Hauptplatinenressourcen    OK   
    0x00000062-0x00000063    Hauptplatinenressourcen    OK   
    0x00000065-0x0000006F    Hauptplatinenressourcen    OK   
    0x00000065-0x0000006F    Hauptplatinenressourcen    OK   
    0x00000072-0x0000007F    Hauptplatinenressourcen    OK   
    0x00000080-0x00000080    Hauptplatinenressourcen    OK   
    0x00000080-0x00000080    Hauptplatinenressourcen    OK   
    0x00000084-0x00000086    Hauptplatinenressourcen    OK   
    0x00000088-0x00000088    Hauptplatinenressourcen    OK   
    0x0000008C-0x0000008E    Hauptplatinenressourcen    OK   
    0x00000090-0x0000009F    Hauptplatinenressourcen    OK   
    0x000000A2-0x000000BF    Hauptplatinenressourcen    OK   
    0x000000E0-0x000000EF    Hauptplatinenressourcen    OK   
    0x00000A40-0x00000A4F    Hauptplatinenressourcen    OK   
    0x00000A00-0x00000A3F    Hauptplatinenressourcen    OK   
    0x0000002E-0x0000002F    Hauptplatinenressourcen    OK   
    0x0000004E-0x0000004F    Hauptplatinenressourcen    OK   
    0x00000061-0x00000061    Hauptplatinenressourcen    OK   
    0x00000063-0x00000063    Hauptplatinenressourcen    OK   
    0x00000067-0x00000067    Hauptplatinenressourcen    OK   
    0x00000092-0x00000092    Hauptplatinenressourcen    OK   
    0x000000B2-0x000000B3    Hauptplatinenressourcen    OK   
    0x00000680-0x0000069F    Hauptplatinenressourcen    OK   
    0x00001000-0x0000100F    Hauptplatinenressourcen    OK   
    0x0000FFFF-0x0000FFFF    Hauptplatinenressourcen    OK   
    0x0000FFFF-0x0000FFFF    Hauptplatinenressourcen    OK   
    0x00000400-0x00000453    Hauptplatinenressourcen    OK   
    0x00000458-0x0000047F    Hauptplatinenressourcen    OK   
    0x00000500-0x0000057F    Hauptplatinenressourcen    OK   
    0x0000164E-0x0000164F    Hauptplatinenressourcen    OK   
    0x000000F0-0x000000FF    Numerischer Coprozessor    OK   
    0x0000F000-0x0000F01F    Intel(R) 7 Series/C216 Chipset Family SMBus Host Controller - 1E22    OK   
    0x00000454-0x00000457    Hauptplatinenressourcen    OK   
    [IRQs]
    Ressource    Gerät    Status   
    IRQ 0    Systemzeitgeber    OK   
    IRQ 16    PCI Standard-PCI-zu-PCI-Brücke    OK   
    IRQ 16    Intel(R) 7 Series/C216 Chipset Family USB Enhanced Host Controller - 1E2D    OK   
    IRQ 16    Intel(R) Management Engine Interface     OK   
    IRQ 4294967294    AMD Radeon HD 7800 Series    OK   
    IRQ 4    Kommunikationsanschluss (COM1)    OK   
    IRQ 4294967292    Intel(R) 82579LM Gigabit Network Connection    OK   
    IRQ 4294967293    Intel(R) USB 3.0 eXtensible-Hostcontroller    OK   
    IRQ 8    System CMOS/Echtzeituhr    OK   
    IRQ 17    High Definition Audio-Controller    OK   
    IRQ 19    Intel(R) 7 Series/C216 Chipset Family SATA AHCI Controller - 1E02    OK   
    IRQ 13    Numerischer Coprozessor    OK   
    IRQ 22    High Definition Audio-Controller    OK   
    IRQ 81    Microsoft ACPI-konformes System    OK   
    IRQ 82    Microsoft ACPI-konformes System    OK   
    IRQ 83    Microsoft ACPI-konformes System    OK   
    IRQ 84    Microsoft ACPI-konformes System    OK   
    IRQ 85    Microsoft ACPI-konformes System    OK   
    IRQ 86    Microsoft ACPI-konformes System    OK   
    IRQ 87    Microsoft ACPI-konformes System    OK   
    IRQ 88    Microsoft ACPI-konformes System    OK   
    IRQ 89    Microsoft ACPI-konformes System    OK   
    IRQ 90    Microsoft ACPI-konformes System    OK   
    IRQ 91    Microsoft ACPI-konformes System    OK   
    IRQ 92    Microsoft ACPI-konformes System    OK   
    IRQ 93    Microsoft ACPI-konformes System    OK   
    IRQ 94    Microsoft ACPI-konformes System    OK   
    IRQ 95    Microsoft ACPI-konformes System    OK   
    IRQ 96    Microsoft ACPI-konformes System    OK   
    IRQ 97    Microsoft ACPI-konformes System    OK   
    IRQ 98    Microsoft ACPI-konformes System    OK   
    IRQ 99    Microsoft ACPI-konformes System    OK   
    IRQ 100    Microsoft ACPI-konformes System    OK   
    IRQ 101    Microsoft ACPI-konformes System    OK   
    IRQ 102    Microsoft ACPI-konformes System    OK   
    IRQ 103    Microsoft ACPI-konformes System    OK   
    IRQ 104    Microsoft ACPI-konformes System    OK   
    IRQ 105    Microsoft ACPI-konformes System    OK   
    IRQ 106    Microsoft ACPI-konformes System    OK   
    IRQ 107    Microsoft ACPI-konformes System    OK   
    IRQ 108    Microsoft ACPI-konformes System    OK   
    IRQ 109    Microsoft ACPI-konformes System    OK   
    IRQ 110    Microsoft ACPI-konformes System    OK   
    IRQ 111    Microsoft ACPI-konformes System    OK   
    IRQ 112    Microsoft ACPI-konformes System    OK   
    IRQ 113    Microsoft ACPI-konformes System    OK   
    IRQ 114    Microsoft ACPI-konformes System    OK   
    IRQ 115    Microsoft ACPI-konformes System    OK   
    IRQ 116    Microsoft ACPI-konformes System    OK   
    IRQ 117    Microsoft ACPI-konformes System    OK   
    IRQ 118    Microsoft ACPI-konformes System    OK   
    IRQ 119    Microsoft ACPI-konformes System    OK   
    IRQ 120    Microsoft ACPI-konformes System    OK   
    IRQ 121    Microsoft ACPI-konformes System    OK   
    IRQ 122    Microsoft ACPI-konformes System    OK   
    IRQ 123    Microsoft ACPI-konformes System    OK   
    IRQ 124    Microsoft ACPI-konformes System    OK   
    IRQ 125    Microsoft ACPI-konformes System    OK   
    IRQ 126    Microsoft ACPI-konformes System    OK   
    IRQ 127    Microsoft ACPI-konformes System    OK   
    IRQ 128    Microsoft ACPI-konformes System    OK   
    IRQ 129    Microsoft ACPI-konformes System    OK   
    IRQ 130    Microsoft ACPI-konformes System    OK   
    IRQ 131    Microsoft ACPI-konformes System    OK   
    IRQ 132    Microsoft ACPI-konformes System    OK   
    IRQ 133    Microsoft ACPI-konformes System    OK   
    IRQ 134    Microsoft ACPI-konformes System    OK   
    IRQ 135    Microsoft ACPI-konformes System    OK   
    IRQ 136    Microsoft ACPI-konformes System    OK   
    IRQ 137    Microsoft ACPI-konformes System    OK   
    IRQ 138    Microsoft ACPI-konformes System    OK   
    IRQ 139    Microsoft ACPI-konformes System    OK   
    IRQ 140    Microsoft ACPI-konformes System    OK   
    IRQ 141    Microsoft ACPI-konformes System    OK   
    IRQ 142    Microsoft ACPI-konformes System    OK   
    IRQ 143    Microsoft ACPI-konformes System    OK   
    IRQ 144    Microsoft ACPI-konformes System    OK   
    IRQ 145    Microsoft ACPI-konformes System    OK   
    IRQ 146    Microsoft ACPI-konformes System    OK   
    IRQ 147    Microsoft ACPI-konformes System    OK   
    IRQ 148    Microsoft ACPI-konformes System    OK   
    IRQ 149    Microsoft ACPI-konformes System    OK   
    IRQ 150    Microsoft ACPI-konformes System    OK   
    IRQ 151    Microsoft ACPI-konformes System    OK   
    IRQ 152    Microsoft ACPI-konformes System    OK   
    IRQ 153    Microsoft ACPI-konformes System    OK   
    IRQ 154    Microsoft ACPI-konformes System    OK   
    IRQ 155    Microsoft ACPI-konformes System    OK   
    IRQ 156    Microsoft ACPI-konformes System    OK   
    IRQ 157    Microsoft ACPI-konformes System    OK   
    IRQ 158    Microsoft ACPI-konformes System    OK   
    IRQ 159    Microsoft ACPI-konformes System    OK   
    IRQ 160    Microsoft ACPI-konformes System    OK   
    IRQ 161    Microsoft ACPI-konformes System    OK   
    IRQ 162    Microsoft ACPI-konformes System    OK   
    IRQ 163    Microsoft ACPI-konformes System    OK   
    IRQ 164    Microsoft ACPI-konformes System    OK   
    IRQ 165    Microsoft ACPI-konformes System    OK   
    IRQ 166    Microsoft ACPI-konformes System    OK   
    IRQ 167    Microsoft ACPI-konformes System    OK   
    IRQ 168    Microsoft ACPI-konformes System    OK   
    IRQ 169    Microsoft ACPI-konformes System    OK   
    IRQ 170    Microsoft ACPI-konformes System    OK   
    IRQ 171    Microsoft ACPI-konformes System    OK   
    IRQ 172    Microsoft ACPI-konformes System    OK   
    IRQ 173    Microsoft ACPI-konformes System    OK   
    IRQ 174    Microsoft ACPI-konformes System    OK   
    IRQ 175    Microsoft ACPI-konformes System    OK   
    IRQ 176    Microsoft ACPI-konformes System    OK   
    IRQ 177    Microsoft ACPI-konformes System    OK   
    IRQ 178    Microsoft ACPI-konformes System    OK   
    IRQ 179    Microsoft ACPI-konformes System    OK   
    IRQ 180    Microsoft ACPI-konformes System    OK   
    IRQ 181    Microsoft ACPI-konformes System    OK   
    IRQ 182    Microsoft ACPI-konformes System    OK   
    IRQ 183    Microsoft ACPI-konformes System    OK   
    IRQ 184    Microsoft ACPI-konformes System    OK   
    IRQ 185    Microsoft ACPI-konformes System    OK   
    IRQ 186    Microsoft ACPI-konformes System    OK   
    IRQ 187    Microsoft ACPI-konformes System    OK   
    IRQ 188    Microsoft ACPI-konformes System    OK   
    IRQ 189    Microsoft ACPI-konformes System    OK   
    IRQ 190    Microsoft ACPI-konformes System    OK   
    IRQ 5    Intel(R) 7 Series/C216 Chipset Family SMBus Host Controller - 1E22    OK   
    IRQ 23    Intel(R) 7 Series/C216 Chipset Family USB Enhanced Host Controller - 1E26    OK   
    [Arbeitsspeicher]
    Ressource    Gerät    Status   
    0xF7E00000-0xF7EFFFFF    PCI Standard-PCI-zu-PCI-Brücke    OK   
    0xF7E00000-0xF7EFFFFF    AMD Radeon HD 7800 Series    OK   
    0xE0000000-0xEFFFFFFF    PCI Standard-PCI-zu-PCI-Brücke    OK   
    0xE0000000-0xEFFFFFFF    AMD Radeon HD 7800 Series    OK   
    0xE0000000-0xEFFFFFFF    PCI bus    OK   
    0xA0000-0xBFFFF    PCI Standard-PCI-zu-PCI-Brücke    OK   
    0xA0000-0xBFFFF    AMD Radeon HD 7800 Series    OK   
    0xA0000-0xBFFFF    PCI bus    OK   
    0xF7F38000-0xF7F383FF    Intel(R) 7 Series/C216 Chipset Family USB Enhanced Host Controller - 1E2D    OK   
    0xFED00000-0xFED003FF    Hochpräzisionsereigniszeitgeber    OK   
    0xF7F00000-0xF7F1FFFF    Intel(R) 82579LM Gigabit Network Connection    OK   
    0xF7F39000-0xF7F39FFF    Intel(R) 82579LM Gigabit Network Connection    OK   
    0xF7F20000-0xF7F2FFFF    Intel(R) USB 3.0 eXtensible-Hostcontroller    OK   
    0xD4000-0xD7FFF    PCI bus    OK   
    0xD8000-0xDBFFF    PCI bus    OK   
    0xDC000-0xDFFFF    PCI bus    OK   
    0xE0000-0xE3FFF    PCI bus    OK   
    0xE4000-0xE7FFF    PCI bus    OK   
    0xF7E60000-0xF7E63FFF    High Definition Audio-Controller    OK   
    0xFED40000-0xFED44FFF    Systemplatine    OK   
    0xF7F36000-0xF7F367FF    Intel(R) 7 Series/C216 Chipset Family SATA AHCI Controller - 1E02    OK   
    0xF7F3C000-0xF7F3C00F    Intel(R) Management Engine Interface     OK   
    0xFED1C000-0xFED1FFFF    Hauptplatinenressourcen    OK   
    0xFED10000-0xFED17FFF    Hauptplatinenressourcen    OK   
    0xFED18000-0xFED18FFF    Hauptplatinenressourcen    OK   
    0xFED19000-0xFED19FFF    Hauptplatinenressourcen    OK   
    0xF8000000-0xFBFFFFFF    Hauptplatinenressourcen    OK   
    0xFED20000-0xFED3FFFF    Hauptplatinenressourcen    OK   
    0xFED90000-0xFED93FFF    Hauptplatinenressourcen    OK   
    0xFED45000-0xFED8FFFF    Hauptplatinenressourcen    OK   
    0xFF000000-0xFFFFFFFF    Hauptplatinenressourcen    OK   
    0xFF000000-0xFFFFFFFF    Intel(R) 82802 Firmwarehub    OK   
    0xFEE00000-0xFEEFFFFF    Hauptplatinenressourcen    OK   
    0xF0000000-0xF0000FFF    Hauptplatinenressourcen    OK   
    0xF7F30000-0xF7F33FFF    High Definition Audio-Controller    OK   
    0xF7F35000-0xF7F350FF    Intel(R) 7 Series/C216 Chipset Family SMBus Host Controller - 1E22    OK   
    0xF7F37000-0xF7F373FF    Intel(R) 7 Series/C216 Chipset Family USB Enhanced Host Controller - 1E26    OK   
    [Komponenten]
    [Multimedia]
    [Audiocodecs]
    CODEC    Hersteller    Beschreibung    Status    Datei    Version    Größe    Erstellungsdatum   
    c:\windows\system32\msg711.acm    Microsoft Corporation        OK    C:\Windows\system32\MSG711.ACM    6.1.7600.16385    14,50 KB (14.848 Bytes)    14.07.2009 02:18   
    c:\windows\system32\imaadp32.acm    Microsoft Corporation        OK    C:\Windows\system32\IMAADP32.ACM    6.1.7600.16385    21,50 KB (22.016 Bytes)    14.07.2009 02:18   
    c:\windows\system32\msgsm32.acm    Microsoft Corporation        OK    C:\Windows\system32\MSGSM32.ACM    6.1.7600.16385    28,50 KB (29.184 Bytes)    14.07.2009 02:18   
    c:\windows\system32\msadp32.acm    Microsoft Corporation        OK    C:\Windows\system32\MSADP32.ACM    6.1.7600.16385    23,50 KB (24.064 Bytes)    14.07.2009 02:18   
    c:\windows\system32\l3codeca.acm    Fraunhofer Institut Integrierte Schaltungen IIS    Fraunhofer IIS MPEG Layer-3 Codec    OK    C:\Windows\system32\L3CODECA.ACM    1.9.0.401    79,50 KB (81.408 Bytes)    14.07.2009 02:22   
    [Videocodecs]
    CODEC    Hersteller    Beschreibung    Status    Datei    Version    Größe    Erstellungsdatum   
    c:\windows\system32\msvidc32.dll    Microsoft Corporation        OK    C:\Windows\system32\MSVIDC32.DLL    6.1.7601.17514    38,00 KB (38.912 Bytes)    26.02.2013 17:25   
    c:\windows\system32\msrle32.dll    Microsoft Corporation        OK    C:\Windows\system32\MSRLE32.DLL    6.1.7601.17514    16,00 KB (16.384 Bytes)    26.02.2013 17:25   
    c:\windows\system32\msyuv.dll    Microsoft Corporation        OK    C:\Windows\system32\MSYUV.DLL    6.1.7601.17514    25,00 KB (25.600 Bytes)    26.02.2013 17:24   
    c:\windows\system32\iyuv_32.dll    Microsoft Corporation        OK    C:\Windows\system32\IYUV_32.DLL    6.1.7601.17514    53,00 KB (54.272 Bytes)    26.02.2013 17:24   
    c:\windows\system32\tsbyuv.dll    Microsoft Corporation        OK    C:\Windows\system32\TSBYUV.DLL    6.1.7601.17514    14,50 KB (14.848 Bytes)    26.02.2013 17:24   
    [CD]
    Element    Wert   
    Laufwerk    E:   
    Beschreibung    CD-ROM-Laufwerk   
    Geladene Medien    Nein   
    Medientyp    DVD Writer   
    Name    TSSTcorp DVD+-RW SH-216CB ATA Device   
    Hersteller    (Standard-CD-ROM-Laufwerke)   
    Status    OK   
    Übertragungsrate    -1.00 KB/s   
    SCSI-Zielkennung    0   
    PNP-Gerätekennung    IDE\CDROMTSSTCORP_DVD+-RW_SH-216CB_______________D100____\5&3B425A71&0&1.0.0   
    Treiber    c:\windows\system32\drivers\cdrom.sys (6.1.7601.17514, 144,00 KB (147.456 Bytes), 26.02.2013 17:25)   
    [Audiogerät]
    Element    Wert   
    Name    AMD High Definition Audio Device   
    Hersteller    Advanced Micro Devices   
    Status    OK   
    PNP-Gerätekennung    HDAUDIO\FUNC_01&VEN_1002&DEV_AA01&SUBSYS_00AA0100&REV_1003\5&2B04A216&0&0001   
    Treiber    c:\windows\system32\drivers\atihdw76.sys (7.12.0.7714, 94,50 KB (96.768 Bytes), 14.02.2013 12:41)   
    Name    High Definition Audio-Gerät   
    Hersteller    Microsoft   
    Status    OK   
    PNP-Gerätekennung    HDAUDIO\FUNC_01&VEN_10EC&DEV_0269&SUBSYS_10280577&REV_1001\4&26BB6EE9&0&0001   
    Treiber    c:\windows\system32\drivers\hdaudio.sys (6.1.7601.17514, 342,00 KB (350.208 Bytes), 26.02.2013 17:25)   
    [Anzeige]
    Element    Wert   
    Name    Mirage Driver   
    PNP-Gerätekennung    ROOT\DISPLAY\0000   
    Adaptertyp    Nicht verfügbar, DemoForge-kompatibel   
    Adapterbeschreibung    Mirage Driver   
    Adapter-RAM    Nicht verfügbar   
    Installierte Treiber    Nicht verfügbar   
    Treiberversion    2.0.105.0   
    INF-Datei    oem18.inf (Abschnitt DFMirage)   
    Farbebenen    Nicht verfügbar   
    Farbtabelleneinträge    4294967296   
    Auflösung    1600 x 1200 x 60 Hz   
    Bits/Pixel    32   
    Treiber    c:\windows\system32\drivers\dfmirage.sys (2.0.105.0, 35,58 KB (36.432 Bytes), 21.12.2011 12:45)   
    Name    AMD Radeon HD 7800 Series   
    PNP-Gerätekennung    PCI\VEN_1002&DEV_6819&SUBSYS_E221174B&REV_00\4&45EF1DB&0&0008   
    Adaptertyp    AMD Radeon Graphics Processor (0x6819), Advanced Micro Devices, Inc.-kompatibel   
    Adapterbeschreibung    AMD Radeon HD 7800 Series   
    Adapter-RAM    (2.147.483.648) Bytes   
    Installierte Treiber    aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll   
    Treiberversion    12.104.0.0   
    INF-Datei    oem23.inf (Abschnitt ati2mtag_R575B)   
    Farbebenen    Nicht verfügbar   
    Farbtabelleneinträge    Nicht verfügbar   
    Auflösung    Nicht verfügbar   
    Bits/Pixel    Nicht verfügbar   
    Speicheradresse    0xE0000000-0xEFFFFFFF   
    Speicheradresse    0xF7E00000-0xF7EFFFFF   
    E/A-Port    0x0000E000-0x0000EFFF   
    IRQ-Kanal    IRQ 4294967294   
    E/A-Port    0x000003B0-0x000003BB   
    E/A-Port    0x000003C0-0x000003DF   
    Speicheradresse    0xA0000-0xBFFFF   
    Treiber    c:\windows\system32\drivers\atikmpag.sys (8.14.1.6304, 567,50 KB (581.120 Bytes), 29.03.2013 02:09)   
    [Infrarotgeräte]
    Element    Wert   
    [Eingabegeräte]
    [Tastatur]
    Element    Wert   
    Beschreibung    DameWare Virtual Keyboard Emulation for Standard Keyboard   
    Name    Erweitert (101 oder 102 Tasten)   
    Layout    00000407   
    PNP-Gerätekennung    ROOT\KEYBOARD\0000   
    Anzahl der Funktionstasten    12   
    Treiber    c:\windows\system32\drivers\dwvkbd64.sys (1.0.0.1, 30,00 KB (30.720 Bytes), 15.02.2007 19:00)   
    Beschreibung    USB-Eingabegerät   
    Name    Erweitert (101 oder 102 Tasten)   
    Layout    00000407   
    PNP-Gerätekennung    USB\VID_413C&PID_2107\5&2769C222&0&3   
    Anzahl der Funktionstasten    12   
    Treiber    c:\windows\system32\drivers\hidusb.sys (6.1.7601.17514, 29,50 KB (30.208 Bytes), 26.02.2013 17:24)   
    [Zeigegerät]
    Element    Wert   
    Hardwaretyp    USB-Eingabegerät   
    Tastenanzahl    0   
    Status    OK   
    PNP-Gerätekennung    USB\VID_0461&PID_4E22\5&2769C222&0&4   
    Unterstützte Energieverwaltung    Nein   
    Doppelklickschwellenwert    Nicht verfügbar   
    Links- oder rechtshändig    Nicht verfügbar   
    Treiber    c:\windows\system32\drivers\hidusb.sys (6.1.7601.17514, 29,50 KB (30.208 Bytes), 26.02.2013 17:24)   
    [Modem]
    Element    Wert   
    [Netzwerk]
    [Adapter]
    Element    Wert   
    Name    [00000000] WAN Miniport (SSTP)   
    Adaptertyp    Nicht verfügbar   
    Produkttyp    WAN Miniport (SSTP)   
    Installiert    Ja   
    PNP-Gerätekennung    ROOT\MS_SSTPMINIPORT\0000   
    Letzte Zurücksetzung    03.09.2013 09:20   
    Index    0   
    Dienstname    RasSstp   
    IP-Adresse    Nicht verfügbar   
    IP-Subnetz    Nicht verfügbar   
    Standard-IP-Gateway    Nicht verfügbar   
    DHCP aktiviert    Nein   
    DHCP-Server    Nicht verfügbar   
    DHCP-Lease-Gültigkeitsdauer    Nicht verfügbar   
    DHCP-Lease-Start    Nicht verfügbar   
    MAC-Adresse    Nicht verfügbar   
    Treiber    c:\windows\system32\drivers\rassstp.sys (6.1.7600.16385, 82,00 KB (83.968 Bytes), 14.07.2009 02:10)   
    Name    [00000001] WAN Miniport (IKEv2)   
    Adaptertyp    Nicht verfügbar   
    Produkttyp    WAN Miniport (IKEv2)   
    Installiert    Ja   
    PNP-Gerätekennung    ROOT\MS_AGILEVPNMINIPORT\0000   
    Letzte Zurücksetzung    03.09.2013 09:20   
    Index    1   
    Dienstname    RasAgileVpn   
    IP-Adresse    Nicht verfügbar   
    IP-Subnetz    Nicht verfügbar   
    Standard-IP-Gateway    Nicht verfügbar   
    DHCP aktiviert    Nein   
    DHCP-Server    Nicht verfügbar   
    DHCP-Lease-Gültigkeitsdauer    Nicht verfügbar   
    DHCP-Lease-Start    Nicht verfügbar   
    MAC-Adresse    Nicht verfügbar   
    Treiber    c:\windows\system32\drivers\agilevpn.sys (6.1.7600.16385, 59,00 KB (60.416 Bytes), 14.07.2009 02:10)   
    Name    [00000002] WAN Miniport (L2TP)   
    Adaptertyp    Nicht verfügbar   
    Produkttyp    WAN Miniport (L2TP)   
    Installiert    Ja   
    PNP-Gerätekennung    ROOT\MS_L2TPMINIPORT\0000   
    Letzte Zurücksetzung    03.09.2013 09:20   
    Index    2   
    Dienstname    Rasl2tp   
    IP-Adresse    Nicht verfügbar   
    IP-Subnetz    Nicht verfügbar   
    Standard-IP-Gateway    Nicht verfügbar   
    DHCP aktiviert    Nein   
    DHCP-Server    Nicht verfügbar   
    DHCP-Lease-Gültigkeitsdauer    Nicht verfügbar   
    DHCP-Lease-Start    Nicht verfügbar   
    MAC-Adresse    Nicht verfügbar   
    Treiber    c:\windows\system32\drivers\rasl2tp.sys (6.1.7601.17514, 126,50 KB (129.536 Bytes), 26.02.2013 17:25)   
    Name    [00000003] WAN Miniport (PPTP)   
    Adaptertyp    Nicht verfügbar   
    Produkttyp    WAN Miniport (PPTP)   
    Installiert    Ja   
    PNP-Gerätekennung    ROOT\MS_PPTPMINIPORT\0000   
    Letzte Zurücksetzung    03.09.2013 09:20   
    Index    3   
    Dienstname    PptpMiniport   
    IP-Adresse    Nicht verfügbar   
    IP-Subnetz    Nicht verfügbar   
    Standard-IP-Gateway    Nicht verfügbar   
    DHCP aktiviert    Nein   
    DHCP-Server    Nicht verfügbar   
    DHCP-Lease-Gültigkeitsdauer    Nicht verfügbar   
    DHCP-Lease-Start    Nicht verfügbar   
    MAC-Adresse    Nicht verfügbar   
    Treiber    c:\windows\system32\drivers\raspptp.sys (6.1.7601.17514, 108,50 KB (111.104 Bytes), 26.02.2013 17:24)   
    Name    [00000004] WAN Miniport (PPPOE)   
    Adaptertyp    Nicht verfügbar   
    Produkttyp    WAN Miniport (PPPOE)   
    Installiert    Ja   
    PNP-Gerätekennung    ROOT\MS_PPPOEMINIPORT\0000   
    Letzte Zurücksetzung    03.09.2013 09:20   
    Index    4   
    Dienstname    RasPppoe   
    IP-Adresse    Nicht verfügbar   
    IP-Subnetz    Nicht verfügbar   
    Standard-IP-Gateway    Nicht verfügbar   
    DHCP aktiviert    Nein   
    DHCP-Server    Nicht verfügbar   
    DHCP-Lease-Gültigkeitsdauer    Nicht verfügbar   
    DHCP-Lease-Start    Nicht verfügbar   
    MAC-Adresse    Nicht verfügbar   
    Treiber    c:\windows\system32\drivers\raspppoe.sys (6.1.7600.16385, 90,50 KB (92.672 Bytes), 14.07.2009 02:10)   
    Name    [00000005] WAN Miniport (IPv6)   
    Adaptertyp    Nicht verfügbar   
    Produkttyp    WAN Miniport (IPv6)   
    Installiert    Ja   
    PNP-Gerätekennung    ROOT\MS_NDISWANIPV6\0000   
    Letzte Zurücksetzung    03.09.2013 09:20   
    Index    5   
    Dienstname    NdisWan   
    IP-Adresse    Nicht verfügbar   
    IP-Subnetz    Nicht verfügbar   
    Standard-IP-Gateway    Nicht verfügbar   
    DHCP aktiviert    Nein   
    DHCP-Server    Nicht verfügbar   
    DHCP-Lease-Gültigkeitsdauer    Nicht verfügbar   
    DHCP-Lease-Start    Nicht verfügbar   
    MAC-Adresse    Nicht verfügbar   
    Treiber    c:\windows\system32\drivers\ndiswan.sys (6.1.7601.17514, 160,50 KB (164.352 Bytes), 26.02.2013 17:24)   
    Name    [00000006] WAN Miniport (Network Monitor)   
    Adaptertyp    Nicht verfügbar   
    Produkttyp    WAN Miniport (Network Monitor)   
    Installiert    Ja   
    PNP-Gerätekennung    ROOT\MS_NDISWANBH\0000   
    Letzte Zurücksetzung    03.09.2013 09:20   
    Index    6   
    Dienstname    NdisWan   
    IP-Adresse    Nicht verfügbar   
    IP-Subnetz    Nicht verfügbar   
    Standard-IP-Gateway    Nicht verfügbar   
    DHCP aktiviert    Nein   
    DHCP-Server    Nicht verfügbar   
    DHCP-Lease-Gültigkeitsdauer    Nicht verfügbar   
    DHCP-Lease-Start    Nicht verfügbar   
    MAC-Adresse    Nicht verfügbar   
    Treiber    c:\windows\system32\drivers\ndiswan.sys (6.1.7601.17514, 160,50 KB (164.352 Bytes), 26.02.2013 17:24)   
    Name    [00000007] Intel(R) 82579LM Gigabit Network Connection   
    Adaptertyp    Ethernet 802.3   
    Produkttyp    Intel(R) 82579LM Gigabit Network Connection   
    Installiert    Ja   
    PNP-Gerätekennung    PCI\VEN_8086&DEV_1502&SUBSYS_052C1028&REV_04\3&11583659&0&C8   
    Letzte Zurücksetzung    03.09.2013 09:20   
    Index    7   
    Dienstname    e1cexpress   
    IP-Adresse    10.65.120.137   
    IP-Subnetz    255.255.255.0   
    Standard-IP-Gateway    10.65.120.254   
    DHCP aktiviert    Ja   
    DHCP-Server    10.65.1.3   
    DHCP-Lease-Gültigkeitsdauer    03.10.2013 09:20   
    DHCP-Lease-Start    03.09.2013 09:20   
    MAC-Adresse    90:B1:1C:98:39:E2   
    Speicheradresse    0xF7F00000-0xF7F1FFFF   
    Speicheradresse    0xF7F39000-0xF7F39FFF   
    IRQ-Kanal    IRQ 4294967292   
    Treiber    c:\windows\system32\drivers\e1c62x64.sys (12.2.45.0, 470,83 KB (482.128 Bytes), 26.02.2013 16:15)   
    Name    [00000008] WAN Miniport (IP)   
    Adaptertyp    Nicht verfügbar   
    Produkttyp    WAN Miniport (IP)   
    Installiert    Ja   
    PNP-Gerätekennung    ROOT\MS_NDISWANIP\0000   
    Letzte Zurücksetzung    03.09.2013 09:20   
    Index    8   
    Dienstname    NdisWan   
    IP-Adresse    Nicht verfügbar   
    IP-Subnetz    Nicht verfügbar   
    Standard-IP-Gateway    Nicht verfügbar   
    DHCP aktiviert    Nein   
    DHCP-Server    Nicht verfügbar   
    DHCP-Lease-Gültigkeitsdauer    Nicht verfügbar   
    DHCP-Lease-Start    Nicht verfügbar   
    MAC-Adresse    Nicht verfügbar   
    Treiber    c:\windows\system32\drivers\ndiswan.sys (6.1.7601.17514, 160,50 KB (164.352 Bytes), 26.02.2013 17:24)   
    Name    [00000010] RAS Async Adapter   
    Adaptertyp    WAN (Wide Area Network)   
    Produkttyp    RAS Async Adapter   
    Installiert    Ja   
    PNP-Gerätekennung    SW\{EEAB7790-C514-11D1-B42B-00805FC1270E}\ASYNCMAC   
    Letzte Zurücksetzung    03.09.2013 09:20   
    Index    10   
    Dienstname    AsyncMac   
    IP-Adresse    Nicht verfügbar   
    IP-Subnetz    Nicht verfügbar   
    Standard-IP-Gateway    Nicht verfügbar   
    DHCP aktiviert    Nein   
    DHCP-Server    Nicht verfügbar   
    DHCP-Lease-Gültigkeitsdauer    Nicht verfügbar   
    DHCP-Lease-Start    Nicht verfügbar   
    MAC-Adresse    20:41:53:59:4E:FF   
    Treiber    c:\windows\system32\drivers\asyncmac.sys (6.1.7600.16385, 22,50 KB (23.040 Bytes), 14.07.2009 02:10)   
    [Protokoll]
    Element    Wert   
    Name    MSAFD-Tcpip [TCP/IP]   
    Verbindungsloser Dienst    Nein   
    Garantierte Zustellung    Ja   
    Garantierte Sequenzierung    Ja   
    Maximale Adressgröße    16 Bytes   
    Maximale Nachrichtengröße    0 Bytes   
    Nachrichten-orientiert    Nein   
    Minimale Adressgröße    16 Bytes   
    Pseudodatenstrom-orientiert    Nein   
    Broadcasting-Unterstützung    Nein   
    Unterstützung für Verbindungsdaten    Nein   
    Unterstützung für Trennungsdaten    Nein   
    Unterstützung für Verschlüsselung    Nein   
    Unterstützung für expedierte Daten    Ja   
    Unterstützung für erfolgreiche Schließung    Ja   
    Unterstützung für garantierte Bandbreite    Nein   
    Multicasting-Unterstützung    Nein   
    Name    MSAFD-Tcpip [UDP/IP]   
    Verbindungsloser Dienst    Ja   
    Garantierte Zustellung    Nein   
    Garantierte Sequenzierung    Nein   
    Maximale Adressgröße    16 Bytes   
    Maximale Nachrichtengröße    63,99 KB (65.527 Bytes)   
    Nachrichten-orientiert    Ja   
    Minimale Adressgröße    16 Bytes   
    Pseudodatenstrom-orientiert    Nein   
    Broadcasting-Unterstützung    Ja   
    Unterstützung für Verbindungsdaten    Nein   
    Unterstützung für Trennungsdaten    Nein   
    Unterstützung für Verschlüsselung    Nein   
    Unterstützung für expedierte Daten    Nein   
    Unterstützung für erfolgreiche Schließung    Nein   
    Unterstützung für garantierte Bandbreite    Nein   
    Multicasting-Unterstützung    Ja   
    Name    MSAFD-Tcpip [TCP/IPv6]   
    Verbindungsloser Dienst    Nein   
    Garantierte Zustellung    Ja   
    Garantierte Sequenzierung    Ja   
    Maximale Adressgröße    28 Bytes   
    Maximale Nachrichtengröße    0 Bytes   
    Nachrichten-orientiert    Nein   
    Minimale Adressgröße    28 Bytes   
    Pseudodatenstrom-orientiert    Nein   
    Broadcasting-Unterstützung    Nein   
    Unterstützung für Verbindungsdaten    Nein   
    Unterstützung für Trennungsdaten    Nein   
    Unterstützung für Verschlüsselung    Nein   
    Unterstützung für expedierte Daten    Ja   
    Unterstützung für erfolgreiche Schließung    Ja   
    Unterstützung für garantierte Bandbreite    Nein   
    Multicasting-Unterstützung    Nein   
    Name    MSAFD-Tcpip [UDP/IPv6]   
    Verbindungsloser Dienst    Ja   
    Garantierte Zustellung    Nein   
    Garantierte Sequenzierung    Nein   
    Maximale Adressgröße    28 Bytes   
    Maximale Nachrichtengröße    63,99 KB (65.527 Bytes)   
    Nachrichten-orientiert    Ja   
    Minimale Adressgröße    28 Bytes   
    Pseudodatenstrom-orientiert    Nein   
    Broadcasting-Unterstützung    Ja   
    Unterstützung für Verbindungsdaten    Nein   
    Unterstützung für Trennungsdaten    Nein   
    Unterstützung für Verschlüsselung    Nein   
    Unterstützung für expedierte Daten    Nein   
    Unterstützung für erfolgreiche Schließung    Nein   
    Unterstützung für garantierte Bandbreite    Nein   
    Multicasting-Unterstützung    Ja   
    Name    RSVP-TCPv6-Dienstanbieter   
    Verbindungsloser Dienst    Nein   
    Garantierte Zustellung    Ja   
    Garantierte Sequenzierung    Ja   
    Maximale Adressgröße    28 Bytes   
    Maximale Nachrichtengröße    0 Bytes   
    Nachrichten-orientiert    Nein   
    Minimale Adressgröße    28 Bytes   
    Pseudodatenstrom-orientiert    Nein   
    Broadcasting-Unterstützung    Nein   
    Unterstützung für Verbindungsdaten    Nein   
    Unterstützung für Trennungsdaten    Nein   
    Unterstützung für Verschlüsselung    Ja   
    Unterstützung für expedierte Daten    Ja   
    Unterstützung für erfolgreiche Schließung    Ja   
    Unterstützung für garantierte Bandbreite    Nein   
    Multicasting-Unterstützung    Nein   
    Name    RSVP-TCP-Dienstanbieter   
    Verbindungsloser Dienst    Nein   
    Garantierte Zustellung    Ja   
    Garantierte Sequenzierung    Ja   
    Maximale Adressgröße    16 Bytes   
    Maximale Nachrichtengröße    0 Bytes   
    Nachrichten-orientiert    Nein   
    Minimale Adressgröße    16 Bytes   
    Pseudodatenstrom-orientiert    Nein   
    Broadcasting-Unterstützung    Nein   
    Unterstützung für Verbindungsdaten    Nein   
    Unterstützung für Trennungsdaten    Nein   
    Unterstützung für Verschlüsselung    Ja   
    Unterstützung für expedierte Daten    Ja   
    Unterstützung für erfolgreiche Schließung    Ja   
    Unterstützung für garantierte Bandbreite    Nein   
    Multicasting-Unterstützung    Nein   
    Name    RSVP-UDPv6-Dienstanbieter   
    Verbindungsloser Dienst    Ja   
    Garantierte Zustellung    Nein   
    Garantierte Sequenzierung    Nein   
    Maximale Adressgröße    28 Bytes   
    Maximale Nachrichtengröße    63,99 KB (65.527 Bytes)   
    Nachrichten-orientiert    Ja   
    Minimale Adressgröße    28 Bytes   
    Pseudodatenstrom-orientiert    Nein   
    Broadcasting-Unterstützung    Ja   
    Unterstützung für Verbindungsdaten    Nein   
    Unterstützung für Trennungsdaten    Nein   
    Unterstützung für Verschlüsselung    Ja   
    Unterstützung für expedierte Daten    Nein   
    Unterstützung für erfolgreiche Schließung    Nein   
    Unterstützung für garantierte Bandbreite    Nein   
    Multicasting-Unterstützung    Ja   
    Name    RSVP-UDP-Dienstanbieter   
    Verbindungsloser Dienst    Ja   
    Garantierte Zustellung    Nein   
    Garantierte Sequenzierung    Nein   
    Maximale Adressgröße    16 Bytes   
    Maximale Nachrichtengröße    63,99 KB (65.527 Bytes)   
    Nachrichten-orientiert    Ja   
    Minimale Adressgröße    16 Bytes   
    Pseudodatenstrom-orientiert    Nein   
    Broadcasting-Unterstützung    Ja   
    Unterstützung für Verbindungsdaten    Nein   
    Unterstützung für Trennungsdaten    Nein   
    Unterstützung für Verschlüsselung    Ja   
    Unterstützung für expedierte Daten    Nein   
    Unterstützung für erfolgreiche Schließung    Nein   
    Unterstützung für garantierte Bandbreite    Nein   
    Multicasting-Unterstützung    Ja   
    [WinSock]
    Element    Wert   
    Datei    c:\windows\syswow64\wsock32.dll   
    Größe    15,00 KB (15.360 Bytes)   
    Version    6.1.7600.16385   
    Datei    c:\windows\system32\wsock32.dll   
    Größe    18,00 KB (18.432 Bytes)   
    Version    6.1.7600.16385   
    [Anschlüsse]
    [Seriell]
    Element    Wert   
    Name    Kommunikationsanschluss (COM1)   
    Status    OK   
    PNP-Gerätekennung    ACPI\PNP0501\1   
    Maximale Eingabepuffergröße    0   
    Maximale Ausgabepuffergröße    Nein   
    Einstellbare Baudrate    Ja   
    Einstellbare Datenbits    Ja   
    Einstellbare Flusssteuerung    Ja   
    Einstellbare Parität    Ja   
    Einstellbare Paritätsüberprüfung    Ja   
    Einstellbare Stoppbits    Ja   
    Einstellbarer RLSD    Ja   
    Unterstützt RLSD    Ja   
    Unterstützt 16-Bit-Modus    Nein   
    Unterstützt Sonderzeichen    Nein   
    Baudrate    9600   
    Bits/Byte    8   
    Stoppbits    1   
    Parität    Keine   
    Ausgelastet    Nein   
    Lesen/Schreiben bei Fehler abbrechen    Nein   
    Binärmodus aktiviert    Ja   
    Übertragung bei XOff fortsetzen    Nein   
    CTS-Flusssteuerung (Ausgang)    Nein   
    NULL-Bytes löschen    Nein   
    DSR-Flusssteuerung (Ausgang)    0   
    DSR-Empfindlichkeit    0   
    DTR-Flusssteuerungstyp    Aktivieren   
    EOF-Zeichen    0   
    Fehlerersetzungszeichen    0   
    Fehlerersetzung aktiviert    Nein   
    Ereigniszeichen    0   
    Paritätsprüfung aktiviert    Nein   
    RTS-Flusssteuerungstyp    Aktivieren   
    XOff-Zeichen    19   
    Schwellenwert für XOff-Übertragung    512   
    XOn-Zeichen    17   
    Schwellenwert für XOn-Übertragung    2048   
    XOnXOff-Flusssteuerung (Eingang)    0   
    XOnXOff-Flusssteuerung (Ausgang)    0   
    E/A-Port    0x000003F8-0x000003FF   
    IRQ-Kanal    IRQ 4   
    Treiber    c:\windows\system32\drivers\serial.sys (6.1.7600.16385, 92,00 KB (94.208 Bytes), 14.07.2009 02:00)   
    [Parallel]
    Element    Wert   
    [Speicher]
    [Laufwerke]
    Element    Wert   
    Laufwerk    C:   
    Beschreibung    Lokale Festplatte   
    Komprimiert    Nein   
    Dateissystem    NTFS   
    Größe    95,36 GB (102.388.199.424 Bytes)   
    Freier Speicherplatz    50,60 GB (54.336.200.704 Bytes)   
    Volumename       
    Volumeseriennummer    A8F9F8B0   
    Laufwerk    D:   
    Beschreibung    Lokale Festplatte   
    Komprimiert    Nein   
    Dateissystem    NTFS   
    Größe    370,32 GB (397.626.867.712 Bytes)   
    Freier Speicherplatz    294,11 GB (315.793.809.408 Bytes)   
    Volumename    Daten   
    Volumeseriennummer    62CEA041   
    Laufwerk    E:   
    Beschreibung    CD   
    Laufwerk    F:   
    Beschreibung    Lokale Festplatte   
    Komprimiert    Nein   
    Dateissystem    NTFS   
    Größe    465,76 GB (500.105.216.000 Bytes)   
    Freier Speicherplatz    235,73 GB (253.108.117.504 Bytes)   
    Volumename    FreeAgent Drive   
    Volumeseriennummer    0C33B911   
    Laufwerk    G:   
    Beschreibung    Lokale Festplatte   
    Komprimiert    Nein   
    Dateissystem    FAT32   
    Größe    149,01 GB (160.000.147.456 Bytes)   
    Freier Speicherplatz    69,46 GB (74.584.031.232 Bytes)   
    Volumename    CH   
    Volumeseriennummer    9FDDD801   
    Laufwerk    H:   
    Beschreibung    Netzwerkverbindung   
    Anbietername    \\mail.uke.ads\DFS\Userhome\chottend   
    Laufwerk    N:   
    Beschreibung    Netzwerkverbindung   
    Anbietername    \\mail.uke.ads\dfs\install   
    Laufwerk    P:   
    Beschreibung    Netzwerkverbindung   
    Anbietername    \\mail.uke.ads\dfs\uke\projekte\redaktionukenews   
    Laufwerk    T:   
    Beschreibung    Netzwerkverbindung   
    Anbietername    \\mail.uke.ads\dfs\transfer   
    Laufwerk    U:   
    Beschreibung    Netzwerkverbindung   
    Anbietername    \\mail.uke.ads\dfs\uke   
    [Datenträger]
    Element    Wert   
    Beschreibung    Laufwerk   
    Hersteller    (Standardlaufwerke)   
    Modell    ST500DM002-1BD142 ATA Device   
    Bytes pro Sektor    512   
    Geladene Medien    Ja   
    Medientyp    Festplatte   
    Partitionen    3   
    SCSI-Bus    0   
    SCSI-LUN    0   
    SCSI-Anschluss    0   
    SCSI-Zielkennung    0   
    Sektoren pro Spur    63   
    Größe    465,76 GB (500.105.249.280 Bytes)   
    Zylinder insgesamt    60.801   
    Sektoren insgesamt    976.768.065   
    Spuren insgesamt    15.504.255   
    Spuren pro Zylinder    255   
    Partition    Datenträgernr. 0, Partitionsnr. 0   
    Partitionsgröße    85,00 MB (89.128.960 Bytes)   
    Partitionstartoffset    1.048.576 Bytes   
    Partition    Datenträgernr. 0, Partitionsnr. 1   
    Partitionsgröße    95,36 GB (102.388.203.520 Bytes)   
    Partitionstartoffset    90.177.536 Bytes   
    Partition    Datenträgernr. 0, Partitionsnr. 2   
    Partitionsgröße    370,32 GB (397.626.868.224 Bytes)   
    Partitionstartoffset    102.478.381.056 Bytes   
    Beschreibung    Laufwerk   
    Hersteller    (Standardlaufwerke)   
    Modell    Seagate FreeAgent USB Device   
    Bytes pro Sektor    512   
    Geladene Medien    Ja   
    Medientyp    Wechselmedien   
    Partitionen    1   
    SCSI-Bus    Nicht verfügbar   
    SCSI-LUN    Nicht verfügbar   
    SCSI-Anschluss    Nicht verfügbar   
    SCSI-Zielkennung    Nicht verfügbar   
    Sektoren pro Spur    63   
    Größe    465,76 GB (500.105.249.280 Bytes)   
    Zylinder insgesamt    60.801   
    Sektoren insgesamt    976.768.065   
    Spuren insgesamt    15.504.255   
    Spuren pro Zylinder    255   
    Partition    Datenträgernr. 2, Partitionsnr. 0   
    Partitionsgröße    465,76 GB (500.105.217.024 Bytes)   
    Partitionstartoffset    32.256 Bytes   
    Beschreibung    Laufwerk   
    Hersteller    (Standardlaufwerke)   
    Modell    WD 1600BEV External USB Device   
    Bytes pro Sektor    512   
    Geladene Medien    Ja   
    Medientyp    Wechselmedien   
    Partitionen    1   
    SCSI-Bus    Nicht verfügbar   
    SCSI-LUN    Nicht verfügbar   
    SCSI-Anschluss    Nicht verfügbar   
    SCSI-Zielkennung    Nicht verfügbar   
    Sektoren pro Spur    63   
    Größe    149,05 GB (160.039.272.960 Bytes)   
    Zylinder insgesamt    19.457   
    Sektoren insgesamt    312.576.705   
    Spuren insgesamt    4.961.535   
    Spuren pro Zylinder    255   
    Partition    Datenträgernr. 1, Partitionsnr. 0   
    Partitionsgröße    149,05 GB (160.039.240.704 Bytes)   
    Partitionstartoffset    32.256 Bytes   
    [SCSI]
    Element    Wert   
    [IDE]
    Element    Wert   
    Name    Intel(R) 7 Series/C216 Chipset Family SATA AHCI Controller - 1E02   
    Hersteller    Intel   
    Status    OK   
    PNP-Gerätekennung    PCI\VEN_8086&DEV_1E02&SUBSYS_05771028&REV_04\3&11583659&0&FA   
    E/A-Port    0x0000F090-0x0000F097   
    E/A-Port    0x0000F080-0x0000F083   
    E/A-Port    0x0000F070-0x0000F077   
    E/A-Port    0x0000F060-0x0000F063   
    E/A-Port    0x0000F020-0x0000F03F   
    Speicheradresse    0xF7F36000-0xF7F367FF   
    IRQ-Kanal    IRQ 19   
    Treiber    c:\windows\system32\drivers\msahci.sys (6.1.7601.17514, 30,38 KB (31.104 Bytes), 26.02.2013 17:24)   
    Name    ATA Channel 0   
    Hersteller    (Standard-IDE-ATA/ATAPI-Controller)   
    Status    OK   
    PNP-Gerätekennung    PCIIDE\IDECHANNEL\4&57848B2&0&0   
    Treiber    c:\windows\system32\drivers\atapi.sys (6.1.7600.16385, 23,56 KB (24.128 Bytes), 14.07.2009 01:19)   
    Name    ATA Channel 1   
    Hersteller    (Standard-IDE-ATA/ATAPI-Controller)   
    Status    OK   
    PNP-Gerätekennung    PCIIDE\IDECHANNEL\4&57848B2&0&1   
    Treiber    c:\windows\system32\drivers\atapi.sys (6.1.7600.16385, 23,56 KB (24.128 Bytes), 14.07.2009 01:19)   
    [Drucker]
    Name    Treiber    Anschlussname    Servername   
    Microsoft XPS Document Writer    Microsoft XPS Document Writer    XPSPort:    Nicht verfügbar   
    FreePDF    MS Publisher Color Printer    FreePDFXP1:    Nicht verfügbar   
    Fax    Microsoft Shared Fax Driver    SHRFAX:    Nicht verfügbar   
    An OneNote 2013 senden    Send to Microsoft OneNote 15 Driver    nul:    Nicht verfügbar   
    Adobe PDF    Adobe PDF Converter    Documents\*.pdf    Nicht verfügbar   
    \\Kis2-app-4\CD9282_IRC3080i    Canon iR C3080/3480/3580 UFR II    cd9282.kis2.uke.de    \\Kis2-app-4   
    \\Kis2-app-4\CD9258_IRC3080i    Canon iR C3080/3480/3580 UFR II    cd9258.kis2.uke.de    \\Kis2-app-4   
    [Problemgeräte]
    Gerät    PNP-Gerätekennung    Fehlercode   
    [USB]
    Gerät    PNP-Gerätekennung   
    Intel(R) 7 Series/C216 Chipset Family USB Enhanced Host Controller - 1E2D    PCI\VEN_8086&DEV_1E2D&SUBSYS_05771028&REV_04\3&11583659&0&D0   
    Intel(R) USB 3.0 eXtensible-Hostcontroller    PCI\VEN_8086&DEV_1E31&SUBSYS_05771028&REV_04\3&11583659&0&A0   
    Intel(R) 7 Series/C216 Chipset Family USB Enhanced Host Controller - 1E26    PCI\VEN_8086&DEV_1E26&SUBSYS_05771028&REV_04\3&11583659&0&E8   
    [Softwareumgebung]
    [Systemtreiber]
    Name    Beschreibung    Datei    Typ    Gestartet    Startmodus    Status    Status    Fehlersteuerung    Anhalten annehmen    Beenden annehmen   
    1394ohci    OHCI-konformer 1394-Hostcontroller    c:\windows\system32\drivers\1394ohci.sys    Kerneltreiber    Nein    Manuell    Beendet    OK    Normal    Nein    Nein   
    acpi    Microsoft ACPI-Treiber    c:\windows\system32\drivers\acpi.sys    Kerneltreiber    Ja    Starten    Wird ausgeführt    OK    Kritisch    Nein    Ja   
    acpip

    Digging a little deeper, everytime it crashes, it generates a ProtectiveShutdownLog: The log shows 4 APLN that did not load. Hoping someone from Adobe can jump in and offer some real support.
    Adobe InDesign Protective Shutdown Log
    06/27/12 08:38:45
    Unhandled error condition
    Session started up at 8:37 AM on Wednesday, June 27, 2012
    Version: 7.5.3 - Build: 333
    Error Code 0x20705: "The content is locked and cannot be modified."
    Called to process command 0x21a
    Command Processor Stack (from top to bottom):
    9. Command 0x13513 "Create Hyperlink Text Destination"
    8. Command 0x7304 "Import File"
    7. Command Sequence "Import File"
    6. Command 0x730a "Import File"
    5. Command Sequence "Re-import File"
    4. Command 0x7314 "Re-import File"
    3. Command Sequence "Update"
    2. Command 0x8c59 "Update Link"
    1. Command 0x8c9f "Update Link"
    Registered plugins:
    Name ID Version Build Load Status
    POSITIONTOOL.APLN 0x19b00 7 5 Load Failed
    EDITOR HELPER UI.APLN 0x21101 7 5 Load Failed
    INCOPYCOREUI.APLN 0x21201 7 5 Load Failed
    INCOPYFILEACTIONSUI.APLN 0x21301 7 5 Load Failed

  • CompositionElement sizing issue needs to be addressed.

    Ok, so it's not just the PosterFrame and VideoElement inside a SerialElement that's sizing wrong.  It's anything inside a Parallel or Serial Element that includes an element with a temporal trait, and a static element such as RTMPPosterFrameElement, PosterFrameElement, or ImageElement.
    I just tried to use ScaleMode.LETTERBOX with a ParallelElement that included a progressive AudioElement, and ImageElement.  The ImageElement does not size properly, and can be replicated in your ExamplePlayer flex project.
    Just add the MediaPlayerWrapper to a container with a smaller fixed size (like a canvas container at 320x240 ).  You will notice that no Serial or Parallel Element with a static element will scale properly.
    This needs to be addressed.  The direction for this functionality is great!  Having a Posterframe for Audio and Video is a must ... but it currently does not size properly.  The only acceptable ScaleMode is NONE.

    The Layout system was created after our UI components, and a separate UIComponent was created to work with the Layout system.  We have a backlog item to fix this in the current sprint, starting today.  I have a work around below which demonstrates how to use this little know component call a RegionGateway.   Cheers!
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute"
    creationComplete="init()"
    xmlns:players="com.adobe.strobe.players.*">
    <mx:Script>
    <![CDATA[
    import org.osmf.media.MediaPlayer;
    import org.osmf.metadata.Metadata;
    import org.osmf.gateways.RegionGateway;
    import org.osmf.layout.RegistrationPoint;
    import org.osmf.display.ScaleMode;
    import org.osmf.layout.LayoutUtils;
    import org.osmf.proxies.TemporalProxyElement;
    import org.osmf.utils.URL;
    import org.osmf.media.URLResource;
    import org.osmf.image.ImageLoader;
    import org.osmf.image.ImageElement;
    import org.osmf.composition.SerialElement;
    private static const REMOTE_IMAGE:String = "http://mediapm.edgesuite.net/osmf/image/adobe-lq.png";
    private static const REMOTE_IMAGE2:String = "http://mediapm.edgesuite.net/strobe/content/test/train.jpg";
    private var region:RegionGateway;
    private var serial:SerialElement;
    private function init():void
    serial = new SerialElement();
    serial.addChild(new TemporalProxyElement(5, new ImageElement(new ImageLoader(), new URLResource(new URL(REMOTE_IMAGE)))));
    serial.addChild(new TemporalProxyElement(5, new ImageElement(new ImageLoader(), new URLResource(new URL(REMOTE_IMAGE2)))));
    serial.addChild(new TemporalProxyElement(5, new ImageElement(new ImageLoader(), new URLResource(new URL(REMOTE_IMAGE)))));
    serial.addChild(new TemporalProxyElement(5, new ImageElement(new ImageLoader(), new URLResource(new URL(REMOTE_IMAGE2)))));
    for( var itr:Number = 0; itr < serial.numChildren; ++itr)
    LayoutUtils.setLayoutAttributes(serial.getChildAt(itr).metadata, ScaleMode.LETTERBOX, RegistrationPoint.CENTER);
    LayoutUtils.setRelativeLayout(serial.getChildAt(itr).metadata, 100, 100, 0, 0);
    region = new RegionGateway(serial.metadata);
    wrapper.addChild(region);
    serial.gateway = region;
    var mediaPlayer:MediaPlayer = new MediaPlayer(serial);
    invalidateDisplayList();
    protected override function updateDisplayList(w:Number, h:Number):void
    super.updateDisplayList(w,h);
    if (region)
    LayoutUtils.setAbsoluteLayout(region.metadata, stage.stageWidth, stage.stageHeight);
    ]]>
    </mx:Script>
    <mx:UIComponent
    id="wrapper"
    width="100%"
    height="100%"
    />
    </mx:Application>

  • Loading, playing in "sync" multiple videos with OSMF

    Hi All,
    I've just started to use OSMF in a Flex project.
    I was wondering if it was possible to manage loading 2 videos with OSMF, start playing both videos when they're both downloaded (or when there's enough data downloaded to play them both)
    Both videos have the same length, but I was just wondering if there was a way to do that
    Thanks for the help

    Thanks for the answer Ryan,
    Exactly what I was looking for.
    To take things a bit further, I was wondering if you could tell me if the following was possible (or if the OSMF is meant to be used this way) :
    I'm developing a flex application using the OSMF,  I'd like to use the parallel element (two videos), have of it's elements be displayed in a flex canvas, and have the second element displayed in another canvas, I'd just like to know if that's possible/logical
    Thanks for your help
    Julien

  • SMIL Plugin Example Doesn't Play Nested SequenceElements or ParallelElements

    If you play the following SMIL file in the plug-in sample from Sprint 11 the first element is not played. No matter where you put the nested sequence the item never gets played. I know the intended functionality of the SMIL Plugin is to play nested sequences, yet it doesn't seem to work.
    <smil>
         <head>
              <meta base="http://mediapm.edgesuite.net/strobe/content/test/" />
         </head>
         <body>
              <seq>
                   <seq>
                        <video region="content" src="SpaceAloneHD_sounas_640_500_short.flv" />
                   </seq>
                   <video region="content" src="AFaerysTale_sylviaApostol_640_500_short.flv" />
                    <video region="content" src="elephants_dream_768x428_24_short.flv" />
              </seq>
         </body>
    </smil>
    I looked through the plugin source and was able to show that the nested seq was parsed out, but I'm not sure why the parent MediaElement doesn't play it.

    I just wanted to point out the bug filed does not include the use case of nested parallel elements within a sequence. These, too, get ignored by the SMIL Plugin.
    <smil>
         <head></head>
         <body>
              <seq>
                   <par>
                        <video region="content" src="http://mediapm.edgesuite.net/strobe/content/test/SpaceAloneHD_sounas_640_500_short.flv" />
                        <img region="content" src="http://www.google.com/intl/en_ALL/images/srpr/logo1w.png" />
                   </par>
                   <video region="content" src="http://mediapm.edgesuite.net/strobe/content/test/AFaerysTale_sylviaApostol_640_500_short.flv" />
                   <video region="content" src="http://mediapm.edgesuite.net/strobe/content/test/elephants_dream_768x428_24_short.flv" />
              </seq>
         </body>
    </smil>

  • How can I find an Interactive Photomerge?

    In Photoshop Elements 2, I used to make jpeg images for printing that had, e.g. two images side by side on a 6x4 print, or 9 images in a 3x3 arrangement for a 10x8 print (See example below).Because they were images of different subjects, Photomerge used to give the option of manually placing the images, and of leaving, if wished, a narrow space between one image and the next.
    But now, on my new Windows 8 computer, I have Elements 12, where all the options on Photomerge automatically merge images into one blended image.  I have looked all through the help menu and reference guide, but there doens't seem to be any way of reproducing the layouts I want. Has anyone found a method to achieve the results I seek, either in Elements or in another program? Or will I have revert to Elements 2 on my old computer - and hope that the old pc doesn't give up the ghost?
    Header 1

    Hi Neale
    Thanks for that info and your prompt reply. The discussion thread made interesting reading, but I only had PSE2, so there wasn't an up-to-date enough Photomerge file to transfer to PSE12.  I had a web chat with someone from Adobe last night, but nothing useful came of it, apart from them giving me a link for feedback so I can tell Adobe how very useful their discarded interactive layer was. I have ended up returning PSE12 to Adobe within the 30 day period following purchase, which seemed straightforward enough to do over the phone. In its place, I have just ordered PSE11 from Amazon. Adobe themselves don't sell anything except the current version.
    Regards
    Heather

Maybe you are looking for

  • Plugins are block need to update can't play games on facebook

    Tried to down load adobe plugings but was enable to do so,was blocked from doing so.I also was told that java needed to be updated,I had no sucess.Mozilla says plugins are outdated,needed upgrading.Can you help me?

  • Edit Custom base calendar

    I created a custom base calendar to use with local holidays, which I use for a number of projects. This works fine, but I need to add holidays. That again works fine for each project. But is it possible to edit this base calendar so that the changes

  • Release Encumbrances or Commitments

    Hi,   We are on SRM 5.5 in Extended Classic Mode. There are situations where we have to 'Complete' PO (say the requirement that generated the PO is no longer necessary etc.). Since the PO has been ordered and backend documents generated we have to 'C

  • Trying to update pages

    A year ago or so I was cleaning out my Mac and accidently deleted Pages. I don't remember what version it was, but it came with the iWork 09 pack. Since then I've been using Open Office (which has led to a lot of difficulties), so I asked my father f

  • How do I redownload the entire app?

    I'm reloading my new Mac from scratch to get rid of the old junk.  But I want this program migrated.  How do I redownload the app?  I have my serial number and everything.