Full screen error

Доброго времени суток. Пишу приложение для Хром. Стартовая страница "Меню". Её

Старый

12.03.2021, 12:22

Аспирант

Отправить личное сообщение для Vahan60

Посмотреть профиль

Найти все сообщения от Vahan60

 

Регистрация: 20.04.2020

Сообщений: 46

FullScreen не срабатывает

Доброго времени суток.

Пишу приложение для Хром. Стартовая страница «Меню». Её задача — сориентировать пользователя какую страницу открыть второй по клику на «Вutton». А вот на этой (второй) странице есть кнопка «FullScreen», по клику переводящий страницу в полноэкранный режим.

Так вот: я хочу сделать так, чтобы по клику на «Вutton» вторая страница открывалась сразу в полноэкранном режиме.

Для этого написал так:

<html>
  <head>
    <meta charset="UTF-8" />
    <title></title>
	<link rel="stylesheet" href="styleSt.css"  />
  </head>
  <body>
	<div class = "menu">
		  <button class = "page"><h1>страница1</h1></button>
          <button class = "page"><h1>страница2</h1></button>
          <button class = "page"><h1>страница3</h1></button>
          <button class = "page"><h1>страница4</h1></button>
    </div>
    
    <script>
      let bd = document.querySelector ("body");
      let page = document.querySelectorAll(".lang");
	  for (let j = 0; j < 4; j++){
      page[j].addEventListener ("click", function() {	  
	      document.location.href = "index2.html";
          bd.requestFullscreen();
          let target = event.target;
          target.style.display = "none";
	  }) 
      };	  
    </script>
  </body>
</html>

Код работает наполовину. Новая страница открывается, но не в полноэкранном режиме.
В чём дело, где я ошибаюсь?

Ответить с цитированием

Старый

12.03.2021, 12:32

Аватар для рони

Профессор

Отправить личное сообщение для рони

Посмотреть профиль

Найти все сообщения от рони

 

Регистрация: 27.05.2010

Сообщений: 32,656

Vahan60,
вторая строка скрипта.

if(document.location.href == "index2.html") bd.requestFullscreen();

Ответить с цитированием

Старый

12.03.2021, 13:05

Аспирант

Отправить личное сообщение для Vahan60

Посмотреть профиль

Найти все сообщения от Vahan60

 

Регистрация: 20.04.2020

Сообщений: 46

Переписал.
Получилось следующее:

Код:

<script>
     
      let bd = document.querySelector ("body");
      let page = document.querySelectorAll(".lang");
	  for (let j = 0; j < 4; j++){
      page[j].addEventListener ("click", function() {	  
	   if(document.location.href == "index2.html") bd.requestFullscreen();
          bd.requestFullscreen();
          let target = event.target;
          target.style.display = "none";
	  }) 
      };	  
    
    </script>

Открывает в полноэкранном режиме, но не переходит на вторую страницу.

Ответить с цитированием

Старый

12.03.2021, 13:36

Аватар для рони

Профессор

Отправить личное сообщение для рони

Посмотреть профиль

Найти все сообщения от рони

 

Регистрация: 27.05.2010

Сообщений: 32,656

Vahan60,

let bd = document.querySelector("body");
if (document.location.href == "index2.html") {
    bd.requestFullscreen();
}
let page = document.querySelectorAll(".lang");
for (let j = 0; j < 4; j++) {
    page[j].addEventListener("click", function() {
        document.location.href = "index2.html"
    })
};

Ответить с цитированием

Старый

12.03.2021, 14:00

Аспирант

Отправить личное сообщение для Vahan60

Посмотреть профиль

Найти все сообщения от Vahan60

 

Регистрация: 20.04.2020

Сообщений: 46

Все равно фулскрин не работает.
Я даже максимально упростил страницу. Указал конкретную кнопку без перебора.

<script>
let bd = document.querySelector("body");
          if (document.location.href == "test2.html") {
             bd.requestFullscreen();
             }   

let page = document.querySelectorAll(".page");
        page[3].addEventListener("click", function() {
        document.location.href = "test2.html"
    });


    </script>

Все равно не получается.

Ответить с цитированием

Старый

12.03.2021, 14:45

Аспирант

Отправить личное сообщение для Vahan60

Посмотреть профиль

Найти все сообщения от Vahan60

 

Регистрация: 20.04.2020

Сообщений: 46

Это максимально упрощенный код первой страницы:

Код:

<html>
  <head>
    <meta charset="UTF-8" />
    <title>TEST</title>
	
  </head>
  <body>

	<div class = "menu">
	  <button class = "page"><h1>страница1</h1></button>
          <button class = "page"><h1>страница2</h1></button>
          <button class = "page"><h1>страница3</h1></button>
          <button class = "page"><h1>страница4</h1></button>
         </div>
    
	<script>
	
      let bd = document.querySelector("body");
          if (document.location.href == "test2.html") {
             bd.requestFullscreen();
             };

	let page = document.querySelectorAll(".page");
        page[3].addEventListener("click", function() {
        document.location.href = "test2.html"
    });	
	
    </script>

  </body>
</html>

А это код второй страницы:

Код:

<html>
  <head>
    <meta charset="UTF-8" />
    <title>TEST2</title>
	
  </head>
  <body>

	<div class = "menu">
	  <button class = "page"><h1>страница1</h1></button>
          <button class = "page"><h1>страница2</h1></button>
          <button class = "page"><h1>страница3</h1></button>   
         </div>
    
  </body>
</html>

При клике на button «страница4» на странице «TEST» страница «TEST2» должна открыться в fullscreen режиме. Но открывается в стандартном режиме.
Почему?

Ответить с цитированием

Старый

12.03.2021, 15:21

Аватар для рони

Профессор

Отправить личное сообщение для рони

Посмотреть профиль

Найти все сообщения от рони

 

Регистрация: 27.05.2010

Сообщений: 32,656

Vahan60,
потому что вторая страница не знает ни о каких кликах на первой странице.



Последний раз редактировалось рони, 12.03.2021 в 15:23.

Ответить с цитированием

Старый

12.03.2021, 15:23

Аватар для рони

Профессор

Отправить личное сообщение для рони

Посмотреть профиль

Найти все сообщения от рони

 

Регистрация: 27.05.2010

Сообщений: 32,656

Vahan60,
это вниз на вторую страницу.

let bd = document.querySelector("body");
          
             bd.requestFullscreen();

это на первую

let page = document.querySelectorAll(".page");
        page[3].addEventListener("click", function() {
        document.location.href = "test2.html"
    });

Ответить с цитированием

Старый

13.03.2021, 10:01

Аспирант

Отправить личное сообщение для Vahan60

Посмотреть профиль

Найти все сообщения от Vahan60

 

Регистрация: 20.04.2020

Сообщений: 46

Нее. Не хочет

Код:

<html>
  <head>
    <meta charset="UTF-8" />
    <title>TEST</title>
	
  </head>
  <body>
	<div class = "menu">
		  <button class = "page"><h1>страница1</h1></button>
          <button class = "page"><h1>страница2</h1></button>
          <button class = "page"><h1>страница3</h1></button>
          <button class = "page"><h1>страница4</h1></button>
    </div>
    
	<script>
	
	let page = document.querySelectorAll(".page");
        page[3].addEventListener("click", function() {
        document.location.href = "test2.html"
    });


    </script>

  </body>
</html>

Код:

<html>
  <head>
    <meta charset="UTF-8" />
    <title>TEST2</title>
	
  </head>
  <body>
	<div class = "menu">
		  <button class = "page"><h1>страница1</h1></button>
          <button class = "page"><h1>страница2</h1></button>
          <button class = "page"><h1>страница3</h1></button>
          
    </div>
    <script>
	
	let bd = document.querySelector("body");
             bd.requestFullscreen();

    </script>
  </body>
</html>

Еще и консоль ругается :

«test2.html:17 Failed to execute ‘requestFullscreen’ on ‘Element’: API can only be initiated by a user gesture.
(anonymous) @ test2.html:17″

«test2.html:17 Uncaught (in promise) TypeError: fullscreen error
at test2.html:17″

Ответить с цитированием

Старый

13.03.2021, 10:09

Аватар для рони

Профессор

Отправить личное сообщение для рони

Посмотреть профиль

Найти все сообщения от рони

 

Регистрация: 27.05.2010

Сообщений: 32,656

Сообщение от Vahan60

Еще и консоль ругается :

переход в полноэкранный режим, возможен только по выбору пользователя.

Ответить с цитированием

Gerd199

19 / 17 / 5

Регистрация: 06.03.2014

Сообщений: 3,046

1

Не удается открыть плеер в полном окне

20.03.2022, 22:12. Показов 309. Ответов 4

Метки нет (Все метки)


Javascript
1
2
3
4
5
6
7
window.onorientationchange = e => {
          if(window.orientation == 90) {
                if (this.player.requestFullscreen) this.player.requestFullscreen();
                else if (this.player.mozRequestFullScreen) this.player.mozRequestFullScreen();
                else if (this.player.webkitRequestFullScreen) this.player.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);
         }
};

Не могу понять в чем тут дело?

Код

Failed to execute 'requestFullscreen' on 'Element': API can only be initiated by a user gesture.

Ecли повесить событие на кнопку и при клике на нее, окно на полный экран открывается без проблем…

__________________
Помощь в написании контрольных, курсовых и дипломных работ, диссертаций здесь



0



Модератор

Эксперт JS

4843 / 3059 / 934

Регистрация: 07.09.2019

Сообщений: 4,798

20.03.2022, 23:14

2

Собственно, здесь и объясняется причина:

API can only be initiated by a user gesture

Требуется какое-то действие пользователя на странице. И по моему опыту, подобные ограничения обойти практически невозможно.



0



19 / 17 / 5

Регистрация: 06.03.2014

Сообщений: 3,046

21.03.2022, 00:14

 [ТС]

3

У многих плееров такая возможность есть, знать бы как они это сделали. Было бы здорово.



0



Gerd199

19 / 17 / 5

Регистрация: 06.03.2014

Сообщений: 3,046

21.03.2022, 10:19

 [ТС]

4

Когда действия пользователя нету, а шибка есть к примеру

Код

Uncaught (in promise) TypeError: fullscreen error
    at Object.fullscreen (adr.php:570)
    at window.onorientationchange (adr.php:556)

Ругается на строчку

Javascript
1
this.player.requestFullscreen();

Пытаюсь ее поймать, прежде чем исполнить последующий код

Javascript
1
2
3
4
5
6
7
8
9
10
11
12
13
try {
       if(!this.bd.classList.contains('fullscreen'))
             this.player.requestFullscreen();
                
} catch (err) {
        this.blockerror = 1;
        console.log('sddsdsds')
}
this.player.onfullscreenerror = event => (this.blockerror = 1);
           
console.log(this.blockerror);
 
this.bd.classList.toggle('fullscreen');

Никак не выходит…



0



19 / 17 / 5

Регистрация: 06.03.2014

Сообщений: 3,046

21.03.2022, 21:25

 [ТС]

5

Хелпс



0



IT_Exp

Эксперт

87844 / 49110 / 22898

Регистрация: 17.06.2006

Сообщений: 92,604

21.03.2022, 21:25

5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and
privacy statement. We’ll occasionally send you account related emails.

Already on GitHub?
Sign in
to your account


Closed

brentrug opened this issue

Feb 27, 2019

· 2 comments


Closed

TypeError: fullscreen error

#122

brentrug opened this issue

Feb 27, 2019

· 2 comments

Comments

@brentrug

Hi,

I get this error:

TypeError: fullscreen error
  at Object.<anonymous> (/js/trainer_scripts.js:3176:1323)
  at new Promise (<anonymous>)
  at Object.request (/js/trainer_scripts.js:3176:1127)
  at go_fullscreen (/js/trainer_scripts.js:2118:20)
  at begin_test (/js/trainer_scripts.js:5412:20)
...
(2 additional frame(s) were not displayed)

Version:

/*!

  • screenfull
  • v4.0.1 — 2019-02-18
  • (c) Sindre Sorhus; MIT License
    */

Chrome 71.0.3578
browser.name Chrome

Code snippets:
screencapture-sentry-io-organizations-gurtner-it-solutions-issues-909149567-2019-02-27-08_45_53

@brentrug

So I figured out, that it happens, when I switch the tab or press ESC…

Then I get this error from Chrome:

Failed to execute 'requestFullscreen' on 'Element': API can only be initiated by a user gesture.

@brentrug

Issue resolved!

The problem was inside my programming. I called the fullscreen request after some seconds again and a again, which is no problem if one remains in fullscreen.

But if you change the tab or exit the fullscreen, then in Chrome its not allowed to go into fullscreen without user interaction.

1 participant

@brentrug

Содержание

  1. Minecraft full screen problem
  2. 4 Answers 4
  3. Minecraft Forums
  4. Fullscreen Crash
  5. Fullscreen Crash
  6. Minecraft Forums
  7. Minecraft 1.8.1 Fullscreen Error

Minecraft full screen problem

In Minecraft but when I press F11 it looks like it’s zoomed in. I play on Windows. I have tried to do when I start the game, it start in full screen mode but still don’t work Graphic card AMD Radeon HD 7800 Series

4 Answers 4

  1. Locate your javaw.exe file, default is something like this «C:Program FilesJavajre8bin», in official launcher it is in «runtimejre-x64bin» folder
  2. Right click — properties
  3. Select Compatibility, click «Change High DPI settings»
  4. Tick «Override high DPI scaling behavior», select «Application»
  5. Restart Minecraft

I believe I know what you are talking about, and if so, follow these steps:

  1. Go into your pause menu, into «Options«
  2. Then go to «Video Settings»
  3. Then you are going to want to change your «GUI Scale» from «Auto» to «Normal«

It’s probably the difference between Minecraft’s own fullscreen mode, and the Windows version / graphics card version of it. When you press F11, it’s just stretched, but when you go into the options and choose fullscreen, Minecraft will render your screen.

Try going into fullscreen through Minecraft, and if that doesn’t work, plug in your monitor to something else that isn’t the graphics card.

Источник

Minecraft Forums

This thread was marked as Locked by user-6840779 .

Fullscreen Crash

    li» data-page-inline=»False» data-scroll-inline=»False»>

  • Coal Miner
  • Join Date: 2/3/2012
  • Posts: 108
  • Member Details

Whenever I try to go to fullscreen, I get a crash message. Here it is.
This is on a brand new .minecraft

—- Minecraft Crash Report —-
// You’re mean.

Time: 4/30/13 7:12 PM
Description: Updating screen events

java.lang.IllegalStateException: Keyboard must be created before you can read events
at org.lwjgl.input.Keyboard.next(Keyboard.java:467)
at axr.m(SourceFile:114)
at net.minecraft.client.Minecraft.l(SourceFile:1078)
at net.minecraft.client.Minecraft.K(SourceFile:574)
at net.minecraft.client.Minecraft.run(SourceFile:526)
at java.lang.Thread.run(Unknown Source)

— Head —
Stacktrace:
at org.lwjgl.input.Keyboard.next(Keyboard.java:467)
at axr.m(SourceFile:114)

— Affected screen —
Details:
Screen name: bkg
Stacktrace:
at net.minecraft.client.Minecraft.l(SourceFile:1078)
at net.minecraft.client.Minecraft.K(SourceFile:574)
at net.minecraft.client.Minecraft.run(SourceFile:526)
at java.lang.Thread.run(Unknown Source)

— System Details —
Details:
Minecraft Version: 1.5.1
Operating System: Windows 8 (amd64) version 6.2
Java Version: 1.7.0_21, Oracle Corporation
Java VM Version: Java HotSpot™ 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 3514686336 bytes (3351 MB) / 4116054016 bytes (3925 MB) up to 7635533824 bytes (7281 MB)
JVM Flags: 2 total; -Xmx8192m -Xms4096m
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
Suspicious classes: No suspicious classes found.
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
LWJGL: 2.4.2
OpenGL:

Источник

Fullscreen Crash

So, I’m at my wits end. When I try to enter fullscreen my game crashes and gives me this error message

—- Minecraft Crash Report —-
// This doesn’t make any sense!

Time: 9/29/14 6:28 PM
Description: Unexpected error

java.lang.RuntimeException: No OpenGL context found in the current thread.
at org.lwjgl.opengl.GLContext.getCapabilities(GLContext.java:124)
at org.lwjgl.opengl.GL11.glGetError(GL11.java:1299)
at bsu.b(SourceFile:822)
at bsu.as(SourceFile:882)
at bsu.a(SourceFile:314)
at net.minecraft.client.main.Main.main(SourceFile:120)

— System Details —
Details:
Minecraft Version: 1.8
Operating System: Windows 8.1 (x86) version 6.3
Java Version: 1.7.0_67, Oracle Corporation
Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
Memory: 64107360 bytes (61 MB) / 199815168 bytes (190 MB) up to 1060372480 bytes (1011 MB)
JVM Flags: 6 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx1G -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:-UseAdaptiveSizePolicy -Xmn128M
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
Launched Version: 1.8
LWJGL: 2.9.1
OpenGL:

RuntimeException: No OpenGL context found in the current thread.
GL Caps: Using GL 1.3 multitexturing.
Using GL 1.3 texture combiners.
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
Shaders are available because OpenGL 2.1 is supported.
VBOs are available because OpenGL 1.5 is supported.

Using VBOs: No
Is Modded: Probably not. Jar signature remains and client brand is untouched.
Type: Client (map_client.txt)
Resource Packs: []
Current Language: English (US)
Profiler Position: N/A (disabled)

I’m using a GTX 770 and a 4770k. I’ve reinstalled minecraft and tried all the nVidia drivers up to this point. I don’t want someone telling me to just use windowed mode (which is what I’ve found all over the internet) because that’s not how you fix a problem.

Источник

Minecraft Forums

Minecraft 1.8.1 Fullscreen Error

When I start up Minecraft on windowed mode, go to the video options, and change the fullscreen to «on» the Minecraft window minimizes itself and I am unable to bring the window back up. I can hear the music playing, Task Manager says it’s running, and I can see it on my desktop bar. However clicking on the icon on my bar will only flash the main menu at me before minimizing again. When I close the program and restart it, it will proceed to minimize itself once it reaches the main menu. I have to go to the options file and set the fullscreen to false to be able to use the program.

Originally I restarted my computer because I wasn’t sure if it was the program or my laptop. Upon finishing the restart I was able to start Minecraft and enter fullscreen again. Yet today when I logged on and tried starting the game, I was forced to change the options file again. Since then I’ve spent a couple hours searching the web for anyone else having this issue and any possible fixes.

I’ve tried to delete Minecraft completely from my computer and do a complete reinstall. Nada. I tried updating my computer, checking the processes for anything that might be lagging the program (since my computer sucks to begin with), and changing the resolution/theme/graphics of my computer. Nope.

I suspect it may actually be my computer because I’ve already played 1.8.1 a couple times since it was released and haven’t had this problem.

My computer is a Dell Inspiron 5423 with 6 GB of RAM, a 64 bit operating system, an Intel processor (1.7 GHz), and an unknown (probably basic Intel stuff) graphics card. I’m running Windows 7.

Has this happened to anyone else? Better yet, does anyone else know how to fix this issue? I’d be much obliged if you’d share your wisdom before I murder my laptop.

  • Resident Fuzzball
  • Join Date: 10/26/2012
  • Posts: 8,771
  • Location: Malaysia
  • Minecraft: cestislife
  • Member Details

Intel cards are just that bad when it comes to rendering.

  • Tree Puncher
  • Join Date: 4/12/2011
  • Posts: 17
  • Member Details

I can completely agree with you that they are that bad. I’m working on saving for a computer that doesn’t crash from overheating after 45 minutes.

Hopefully I did this correctly. And thank you already for the help!

1.7GHz
Memory: 6144MB RAM
Available OS Memory: 6022MB RAM
Page File: 4226MB used, 7815MB 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.
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: Intel(R) HD Graphics 4000
Manufacturer: Intel Corporation
Chip type: Intel(R) HD Graphics Family
DAC type: Internal
Device Key: EnumPCIVEN_8086&DEV_0166&SUBSYS_057E1028&REV_09
Display Memory: 1696 MB
Dedicated Memory: 64 MB
Shared Memory: 1632 MB
Current Mode: 1366 x 768 (32 bit) (60Hz)
Monitor Name: Generic PnP Monitor
Monitor Model: unknown
Monitor Id: CMN1476
Native Mode: 1366 x 768(p) (60.012Hz)
Output Type: Internal
Driver Name: igdumd64.dll,igd10umd64.dll,igd10umd64.dll,igdumd32,igd10umd32,igd10umd32
Driver File Version: 9.17.0010.2932 (English)
Driver Version: 9.17.10.2932
DDI Version: 11
Driver Model: WDDM 1.1
Driver Attributes: Final Retail
Driver Date/Size: 12/14/2012 02:42:34, 12615680 bytes
WHQL Logo’d: Yes
WHQL Date Stamp:
Device Identifier:
Vendor ID: 0x8086
Device ID: 0x0166
SubSys ID: 0x057E1028
Revision ID: 0x0009
Driver Strong Name: oem102.inf:Intel.Mfg.NTamd64:iIVBM0:9.17.10.2932:pciven_8086&dev_0166
Rank Of Driver: 00E02001
Video Accel: ModeMPEG2_A ModeMPEG2_C ModeWMV9_C ModeVC1_C
Deinterlace Caps: : Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
<335aa36e-7884-43a4-9c91-7f87faf3e37e>: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
<5a54a0c9-c7ec-4bd9-8ede-f3c75dc4393b>: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
<335aa36e-7884-43a4-9c91-7f87faf3e37e>: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
<5a54a0c9-c7ec-4bd9-8ede-f3c75dc4393b>: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
<335aa36e-7884-43a4-9c91-7f87faf3e37e>: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
<5a54a0c9-c7ec-4bd9-8ede-f3c75dc4393b>: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
<335aa36e-7884-43a4-9c91-7f87faf3e37e>: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
<5a54a0c9-c7ec-4bd9-8ede-f3c75dc4393b>: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
<335aa36e-7884-43a4-9c91-7f87faf3e37e>: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
<5a54a0c9-c7ec-4bd9-8ede-f3c75dc4393b>: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
<335aa36e-7884-43a4-9c91-7f87faf3e37e>: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
<5a54a0c9-c7ec-4bd9-8ede-f3c75dc4393b>: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
<335aa36e-7884-43a4-9c91-7f87faf3e37e>: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
<5a54a0c9-c7ec-4bd9-8ede-f3c75dc4393b>: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
<335aa36e-7884-43a4-9c91-7f87faf3e37e>: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
<5a54a0c9-c7ec-4bd9-8ede-f3c75dc4393b>: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
D3D9 Overlay: Supported
DXVA-HD: Supported
DDraw Status: Enabled
D3D Status: Enabled
AGP Status: Enabled

————-
Sound Devices
————-
Description: Speakers / Headphones (IDT High Definition Audio CODEC)
Default Sound Playback: Yes
Default Voice Playback: Yes
Hardware ID: HDAUDIOFUNC_01&VEN_111D&DEV_76E0&SUBSYS_1028057E&REV_1001
Manufacturer ID: 1
Product ID: 100
Type: WDM
Driver Name: stwrt64.sys
Driver Version: 6.10.6393.0000 (English)
Driver Attributes: Final Retail
WHQL Logo’d: Yes
Date and Size: 3/12/2012 23:39:18, 536064 bytes
Other Files:
Driver Provider: IDT
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: Communications Headphones (IDT High Definition Audio CODEC)
Default Sound Playback: No
Default Voice Playback: No
Hardware ID: HDAUDIOFUNC_01&VEN_111D&DEV_76E0&SUBSYS_1028057E&REV_1001
Manufacturer ID: 1
Product ID: 100
Type: WDM
Driver Name: stwrt64.sys
Driver Version: 6.10.6393.0000 (English)
Driver Attributes: Final Retail
WHQL Logo’d: Yes
Date and Size: 3/12/2012 23:39:18, 536064 bytes
Other Files:
Driver Provider: IDT
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: Microphone Array (IDT High Definition Audio CODEC)
Default Sound Capture: Yes
Default Voice Capture: No
Driver Name: stwrt64.sys
Driver Version: 6.10.6393.0000 (English)
Driver Attributes: Final Retail
Date and Size: 3/12/2012 23:39:18, 536064 bytes
Cap Flags: 0x1
Format Flags: 0xFFFFF

Description: Stereo Mix (IDT High Definition Audio CODEC)
Default Sound Capture: No
Default Voice Capture: No
Driver Name: stwrt64.sys
Driver Version: 6.10.6393.0000 (English)
Driver Attributes: Final Retail
Date and Size: 3/12/2012 23:39:18, 536064 bytes
Cap Flags: 0x1
Format Flags: 0xFFFFF

Description: Microphone (IDT High Definition Audio CODEC)
Default Sound Capture: No
Default Voice Capture: Yes
Driver Name: stwrt64.sys
Driver Version: 6.10.6393.0000 (English)
Driver Attributes: Final Retail
Date and Size: 3/12/2012 23:39:18, 536064 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: HID-compliant consumer control device
Attached: 1
Controller ID: 0x0
Vendor/Product ID: 0xFEEB, 0xDEEF
FF Driver: n/a

Poll w/ Interrupt: No

————
USB Devices
————
+ USB Root Hub
| Vendor/Product ID: 0x8086, 0x1E2D
| Matching Device ID: usbroot_hub20
| Service: usbhub
|
+-+ Generic USB Hub
| | Vendor/Product ID: 0x8087, 0x0024
| | Location: Port_#0001.Hub_#0001
| | Matching Device ID: usbclass_09
| | Service: usbhub

————
PS/2 Devices
————
+ Standard PS/2 Keyboard
| Matching Device ID: *pnp0303
| Service: i8042prt
|
+ Terminal Server Keyboard Driver
| Matching Device ID: rootrdp_kbd
| Upper Filters: kbdclass
| Service: TermDD
|
+ Dell Touchpad
| Matching Device ID: *dll057e
| Upper Filters: SynTP
| Service: i8042prt
|
+ Terminal Server Mouse Driver
| Matching Device ID: rootrdp_mou
| Upper Filters: mouclass
| Service: TermDD

————————
Disk & DVD/CD-ROM Drives
————————
Drive: C:
Free Space: 318.9 GB
Total Space: 462.8 GB
File System: NTFS
Model: Hitachi HTS545050A7E380

Drive: D:
Model: HL-DT-ST DVD+-RW GU60N
Driver: c:windowssystem32driverscdrom.sys, 6.01.7601.17514 (English), , 0 bytes

—————
System Devices
—————
Name: High Definition Audio Controller
Device ID: PCIVEN_8086&DEV_1E20&SUBSYS_057E1028&REV_043&11583659&0&D8
Driver: n/a

Name: Intel(R) Mobile Express Chipset SATA RAID Controller
Device ID: PCIVEN_8086&DEV_282A&SUBSYS_057E1028&REV_043&11583659&0&FA
Driver: n/a

Name: Intel(R) 7 Series/C216 Chipset Family PCI Express Root Port 6 — 1E1A
Device ID: PCIVEN_8086&DEV_1E1A&SUBSYS_057E1028&REV_C43&11583659&0&E5
Driver: n/a

Name: Intel(R) HM77 Express Chipset LPC Controller — 1E57
Device ID: PCIVEN_8086&DEV_1E57&SUBSYS_057E1028&REV_043&11583659&0&F8
Driver: n/a

Name: Intel(R) 7 Series/C216 Chipset Family PCI Express Root Port 4 — 1E16
Device ID: PCIVEN_8086&DEV_1E16&SUBSYS_057E1028&REV_C43&11583659&0&E3
Driver: n/a

Name: Intel(R) Management Engine Interface
Device ID: PCIVEN_8086&DEV_1E3A&SUBSYS_057E1028&REV_043&11583659&0&B0
Driver: n/a

Name: Intel(R) 7 Series/C216 Chipset Family PCI Express Root Port 1 — 1E10
Device ID: PCIVEN_8086&DEV_1E10&SUBSYS_057E1028&REV_C43&11583659&0&E0
Driver: n/a

Name: Intel(R) USB 3.0 eXtensible Host Controller
Device ID: PCIVEN_8086&DEV_1E31&SUBSYS_057E1028&REV_043&11583659&0&A0
Driver: n/a

Name: Intel(R) HD Graphics 4000
Device ID: PCIVEN_8086&DEV_0166&SUBSYS_057E1028&REV_093&11583659&0&10
Driver: n/a

Name: Intel(R) 7 Series/C216 Chipset Family USB Enhanced Host Controller — 1E2D
Device ID: PCIVEN_8086&DEV_1E2D&SUBSYS_057E1028&REV_043&11583659&0&D0
Driver: n/a

Name: 3rd Gen Core processor DRAM Controller — 0154
Device ID: PCIVEN_8086&DEV_0154&SUBSYS_057E1028&REV_093&11583659&0&00
Driver: n/a

Name: Intel(R) 7 Series/C216 Chipset Family USB Enhanced Host Controller — 1E26
Device ID: PCIVEN_8086&DEV_1E26&SUBSYS_057E1028&REV_043&11583659&0&E8
Driver: n/a

Name: Atheros AR8162/8166/8168 PCI-E Fast Ethernet Controller (NDIS 6.20)
Device ID: PCIVEN_1969&DEV_1090&SUBSYS_057E1028&REV_104&1989D4AF&0&00E5
Driver: n/a

Name: Synaptics SMBus Driver
Device ID: PCIVEN_8086&DEV_1E22&SUBSYS_057E1028&REV_043&11583659&0&FB
Driver: n/a

Name: Dell Wireless 1703 802.11b/g/n (2.4GHz)
Device ID: PCIVEN_168C&DEV_0032&SUBSYS_02091028&REV_014&1E50BB3&0&00E3
Driver: n/a

DirectShow Filters:
WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7601.17514
WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7601.17514
WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7601.17514
MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7601.17514
WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7601.18221
WMV9 Advanced Profile Decoder,0x00600800,1,1,wvc1dmod.dll,10.00.0000.1218
Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
CyberLink Audio Effect (PDVD9),0x00200000,1,1,ClAudFx.ax,6.00.0000.8417
WMT VIH2 Fix,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.1109
Record Queue,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.1109
WMT Switch Filter,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.1109
WMT Virtual Renderer,0x00200000,1,0,WLXVAFilt.dll,15.04.3508.1109
WMT DV Extract,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.1109
WMT Virtual Source,0x00200000,0,1,WLXVAFilt.dll,15.04.3508.1109
WMT Sample Information Filter,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.1109
DV Muxer,0x00400000,0,0,qdv.dll,6.06.7601.17514
Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7601.17713
CyberLink Digest Filter (PDVD9),0x00200000,2,2,DigestFilter.dll,1.00.0000.3314
CyberLink TimeStretch Filter (PDVD9),0x00200000,1,1,clauts.ax,2.00.0000.3404
WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7601.17514
Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7601.17514
AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7601.17713
VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7601.17713
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
CyberLink Tzan Filter (PDVD9),0x00200000,1,1,CLTzan.ax,3.05.0000.4703
StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7601.17528
MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17713
Creative Video Processing Filter,0x00200000,1,1,VidProcU.ax,1.01.0016.0000
MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7601.17713
SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
CyberLink HD/BD Mixer (PDVD9),0x00200000,1,2,CLHBMixer.ax,2.00.0000.2422
VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
CyberLink Video/SP Decoder (PDVD9),0x00602000,2,3,CLVsd.ax,8.04.6940.3427
MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7601.17528
CyberLink AudioCD Filter (PDVD9),0x00200000,0,1,CLAudioCD.ax,5.00.0000.7823
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
Cyberlink Demuxer 2.0,0×00200000,1,1,CLDemuxer2.ax,2.00.0006.2317
CyberLink Audio Decoder (PDVD9),0x00201000,1,1,Claud.ax,8.04.0000.3630
Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17713
Cyberlink SubTitle Importor (PDVD9),0x00200000,2,1,CLSubTitle.ax,2.00.0000.0416
MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7601.17713
PlayReady DMO Wrapper,0x00600002,1,1,PRDMOW

1.DLL,1.03.2297.0000
DV Splitter,0x00600000,1,2,qdv.dll,6.06.7601.17514
Video Mixing Renderer 9,0×00200000,1,0,quartz.dll,6.06.7601.17713
CyberLink Line21 Decoder (PDVD9),0x00200000,0,2,CLLine21.ax,4.00.0000.10324
MS PR Source Filter,0x00200000,0,2,PRSource.dll,1.03.2297.0000
Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7601.17514
CyberLink MPEG Splitter,0x00200000,1,2,CLSplter.ax,3.04.0000.4013
ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7601.17713
Video Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17713
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.17713
Creative MJPEG Decoder 2,0×00200000,1,1,CtMJPGDec2.ax,1.01.0016.0000
Video Renderer,0x00400000,1,0,quartz.dll,6.06.7601.17713
Cyberlink SubTitle Importor 2.0 (PDVD9),0x00200000,1,0,CLSubTitle.ax,2.00.0000.0416
CyberLink FLV Splitter (PDVD9),0x00800001,1,1,CLFLVSplitter.ax,1.00.0000.1030
File Writer,0x00200000,1,0,WLXVAFilt.dll,15.04.3508.1109
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
CyberLink Audio Wizard,0x00201010,1,1,CLAudWizard.ax,1.00.0000.4414
File writer,0x00200000,1,0,qcap.dll,6.06.7601.17514
iTV Data Sink,0x00600000,1,0,itvdata.dll,6.06.7601.17514
CyberLink Audio Spectrum Analyzer (PDVD9),0x00200000,1,1,CLAudSpa.ax,1.00.0000.7113
iTV Data Capture filter,0x00600000,1,1,itvdata.dll,6.06.7601.17514
CyberLink DVD Navigator (PDVD9),0x00200000,0,3,CLNavX.ax,8.01.0000.3411
CyberLink MPEG-4 Splitter (PDVD9),0x00200000,1,2,clm4splt.ax,1.01.0000.2906
CyberLink RealMedia Splitter (PDVD9),0x00600000,1,1,CLRMSplitter.ax,1.00.0000.1103
DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7601.18611
Overlay Mixer2,0x00200000,1,1,qdvd.dll,6.06.7601.18611
AVI Draw,0x00600064,9,1,quartz.dll,6.06.7601.17713
CyberLink HAM Decoder,0x00600000,0,1,CLCvd.ax,1.00.9320.3521
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
CyberLink RealAudio Decoder (PDVD9),0x00600000,1,1,CLRMAud.ax,1.00.0000.1225
DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7601.17514
CyberLink Video Decoder (PDVD9),0x00200000,1,2,CLCvd.ax,1.00.9320.3521
SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7601.18501
Null Renderer,0x00200000,1,0,qedit.dll,6.06.7601.18501
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
CyberLink RealVideo Decoder (PDVD9),0x00600000,1,1,CLRMVD.ax,1.00.0000.1225
QIC1802 Demux,0x00200000,1,1,qicdemux.ax,1.00.0000.1621
Overlay Mixer,0x00200000,0,0,qdvd.dll,6.06.7601.18611
AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17713
AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7601.17713
Wave Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
File stream renderer,0x00400000,1,1,quartz.dll,6.06.7601.17713
Creative Correct TimeStamp Filter,0x00200000,1,1,CTFrFix.ax,1.01.0016.0000
Amazon Format Change Fixer,0x00200000,1,1,FormatChangeFix.ax,2.02.0000.0153
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
Creative H264 No Quality Control Filter,0x00200000,1,0,CTH264NoQC.ax,1.01.0018.0000
Line 21 Decoder 2,0×00600002,1,1,quartz.dll,6.06.7601.17713
File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7601.17713
File Source (URL),0x00400000,0,1,quartz.dll,6.06.7601.17713
Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7601.17514
Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7601.17514
CyberLink Matroska Splitter (PDVD9),0x00200000,1,2,CLMKVSplter.ax,1.00.0000.2811
BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7601.17669
Qic To Anxb,0x00200000,1,1,QicToAnxb.dll,1.00.0000.2325
MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7601.17713

WDM Streaming Tee/Splitter Devices:
Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514

Video Compressors:
WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7601.17514
MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7601.17713
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,0×00200000,1,1,qcap.dll,6.06.7601.17514
VP60® Simple Profile ,0x00200000,1,1,qcap.dll,6.06.7601.17514
VP61® Advanced Profile,0x00200000,1,1,qcap.dll,6.06.7601.17514

Audio Compressors:
WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
PCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
GSM 6.10,0×00200000,1,1,quartz.dll,6.06.7601.17713
Messenger Audio Codec,0x00200000,1,1,quartz.dll,6.06.7601.17713
CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7601.17713
CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7601.17713
MPEG Layer-3,0×00200000,1,1,quartz.dll,6.06.7601.17713

Audio Capture Sources:
Microphone Array (IDT High Defi,0x00200000,0,0,qcap.dll,6.06.7601.17514
Microphone (IDT High Definition,0x00200000,0,0,qcap.dll,6.06.7601.17514
Stereo Mix (IDT High Definition,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.17713
Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7601.17713

WDM Streaming Capture Devices:
,0x00000000,0,0,,
MicIn2,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
MuxedIn,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
,0x00000000,0,0,,
Integrated Webcam,0x00200000,1,1,ksproxy.ax,6.01.7601.17514

WDM Streaming Rendering Devices:
HpOut,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
,0x00000000,0,0,,
,0x00000000,0,0,,
Speaker/HP,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:
Integrated Webcam,0x00200000,1,1,ksproxy.ax,6.01.7601.17514

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 / Headphones (IDT High,0x00200000,1,0,quartz.dll,6.06.7601.17713
CyberLink Audio Renderer (PDVD9),0x00200000,1,0,cladr.ax,7.00.0000.3603
Communications Headphones (IDT ,0x00200000,1,0,quartz.dll,6.06.7601.17713
Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7601.17713
Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7601.17713
DirectSound: Communications Headphones (IDT High Definition Audio CODEC),0x00200000,1,0,quartz.dll,6.06.7601.17713
DirectSound: Speakers / Headphones (IDT High Definition Audio CODEC),0x00200000,1,0,quartz.dll,6.06.7601.17713

—————
EVR Power Information
—————
Current Setting: <5c67a112-a4c9-483f-b4a7-1d473becafdc>(Quality)
Quality Flags: 2576
Enabled:
Force throttling
Allow half deinterlace
Allow scaling
Decode Power Usage: 100
Balanced Flags: 1424
Enabled:
Force throttling
Allow batching
Force half deinterlace
Force scaling
Decode Power Usage: 50
PowerFlags: 1424
Enabled:
Force throttling
Allow batching
Force half deinterlace
Force scaling
Decode Power Usage: 0

Источник

  1. /*!

  2. * screenfull

  3. * v4.0.0 - 2018-12-15

  4. * (c) Sindre Sorhus; MIT License

  5. */

  6. !function(){"use strict";var u="undefined"!=typeof window&&void 0!==window.document?window.document:{},e="undefined"!=typeof module&&module.exports,t="undefined"!=typeof Element&&"ALLOW_KEYBOARD_INPUT"in Element,c=function(){for(var e,n=[["requestFullscreen","exitFullscreen","fullscreenElement","fullscreenEnabled","fullscreenchange","fullscreenerror"],["webkitRequestFullscreen","webkitExitFullscreen","webkitFullscreenElement","webkitFullscreenEnabled","webkitfullscreenchange","webkitfullscreenerror"],["webkitRequestFullScreen","webkitCancelFullScreen","webkitCurrentFullScreenElement","webkitCancelFullScreen","webkitfullscreenchange","webkitfullscreenerror"],["mozRequestFullScreen","mozCancelFullScreen","mozFullScreenElement","mozFullScreenEnabled","mozfullscreenchange","mozfullscreenerror"],["msRequestFullscreen","msExitFullscreen","msFullscreenElement","msFullscreenEnabled","MSFullscreenChange","MSFullscreenError"]],r=0,l=n.length,t={};r<l;r++)if((e=n[r])&&e[1]in u){for(r=0;r<e.length;r++)t[n[0][r]]=e[r];return t}return!1}(),l={change:c.fullscreenchange,error:c.fullscreenerror},n={request:function(l){return new Promise(function(e){var n=c.requestFullscreen,r=function(){this.off("change",r),e()}.bind(this);l=l||u.documentElement,/ Version/5.1(?:.d+)? Safari//.test(navigator.userAgent)?l[n]():l[n](t?Element.ALLOW_KEYBOARD_INPUT:{}),this.on("change",r)}.bind(this))},exit:function(){return new Promise(function(e){var n=function(){this.off("change",n),e()}.bind(this);u[c.exitFullscreen](),this.on("change",n)}.bind(this))},toggle:function(e){return this.isFullscreen?this.exit():this.request(e)},onchange:function(e){this.on("change",e)},onerror:function(e){this.on("error",e)},on:function(e,n){var r=l[e];r&&u.addEventListener(r,n,!1)},off:function(e,n){var r=l[e];r&&u.removeEventListener(r,n,!1)},raw:c};c?(Object.defineProperties(n,{isFullscreen:{get:function(){return Boolean(u[c.fullscreenElement])}},element:{enumerable:!0,get:function(){return u[c.fullscreenElement]}},enabled:{enumerable:!0,get:function(){return Boolean(u[c.fullscreenEnabled])}}}),e?module.exports=n:window.screenfull=n):e?module.exports=!1:window.screenfull=!1}();

Update:

Looks like I found a solution to this problem on my own. Still to post this problem and then a solution I think is good for those in the future that find themselves in the same boat as I was. Hopefully an internet search for keywords or browsing this forum will bring them here. I still believe the updates that Wargaming released had something to do with screwing up my version. Their lack of a Linux supported-version of WoWs and their other products is a direct reason why players like me run into so many problems using work-around methods to play their games. Think about it as if you are Wargaming, there are people out there that want to play your product and some may even be willing to pay you large amounts of money in terms of subscriptions and purchases and you will not support their operating systems. On the assumption that Wargaming doesn’t want another revenue stream well who am I to question that.

Solution:

This solution may not work with your computer or OS but its worth a shot. The problem I have found with my computer in running WoWS through Steam is not the game itself but the Proton compatibility program Steam uses to trick WoWS into running on Linux under the false premise that its actually Windows OS. On the assumption that you are getting that «Interface::enumerateDevices: No fullscreen display modes were detected!» error message like the screenshot in my previous post  the Proton version you are running is heading into problems with how it runs the program when activated. Before this happened I had my Proton settings set to the experimental version and never had a problem. After my break from the game and the month of several updates well… Taking a shot in the dark I selected another version of Proton which in this case was the most up-to-date version released so far, Proton 7. I ran WoWS afterward and will you look at that the game started normally and I was able to play it again just fine.

Here’s what I did:

1. Start Steam and login.

2. Scroll down to World of Warships in your game list and right click on it.

3. Select Properties and then within the pop-up box on the left pane select the compatibility tab.

4. Make sure the  «Force the use of a specific Steam compatibility tool» box is checked.

5. Then on the scroll down tab below select a different Proton version then the one that is already selected. I advise for you to go with the one that is the most recently updated version if its not already selected.

6. Exit out of the pop-up box.

7. Click play on World of Warships and wait for Proton to update itself.

8. After the update is done the game should start like used to before the problem, and you can then jump right into battle.

Again this may not work for you based on your computer specifics but I really hope it does so you have less aggravation and more fun playing the game.

Понравилась статья? Поделить с друзьями:
  • Game center ошибка 4009
  • Fujida zoom okko wifi ошибка памяти
  • Game center как изменить ник
  • Galletto 1260 error sk1
  • Galaxy wearable установка невозможна непредвиденная ошибка