VLC 很棒

VLC 很棒

我是一名讲师。我为学生进行现场开发演示。

最近我买了一台支持高分辨率的17.3英寸笔记本电脑。

投影仪分辨率较低,因此例如这个屏幕空间的 1/4 就足以显示我想要向学生展示的东西。

我希望能够将屏幕的其余部分用于其他目的,例如用于只有我想看到的笔记。这些笔记对学生不可见。

我该如何实现这一点?欢迎​​使用免费/廉价软件。我安装了 Windows 10。

答案1

VLC 很棒

在 VLC 中将桌面作为捕获设备打开

Media > Open Capture Device... > Capture Mode: Desktop > Play

使用裁剪屏幕

Tools > Effects and Filters > Video Effects > Crop

将 VLC 窗口移动到正在投影的屏幕上,然后按F使其全屏化。

打开视频效果窗口的 VLC 捕获屏幕截图


脚本

一旦您知道所需的裁剪值,如果您想要快速双击解决方案,您应该能够创建一个名为的文件vlc-presentation.bat并将其复制并粘贴到其中:

"C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" --fullscreen --qt-fullscreen-screennumber=0 --no-qt-fs-controller --video-filter=croppadd --croppadd-croptop=100 --croppadd-cropbottom=100 --croppadd-cropleft=250 --croppadd-cropright=250 screen://

需要理解的内容很多,因此这里有来自 VLC 帮助输出的一些解释:

-f, --fullscreen, --no-fullscreen
                             Fullscreen video output (default disabled)
      Start video in fullscreen mode (default disabled)

--qt-fullscreen-screennumber=<integer [-2147483648 .. 2147483647]>
                             Define which screen fullscreen goes
      Screennumber of fullscreen, instead of same screen where interface is

--qt-fs-controller, --no-qt-fs-controller
                             Show a controller in fullscreen mode (default
                             enabled)
      Show a controller in fullscreen mode (default enabled)

--video-filter=<string>    Video filter module
      This adds post-processing filters to enhance the picture quality, for
      instance deinterlacing, or distort the video.

 Video scaling filter    Crop:
  --croppadd-croptop=<integer [0 .. 2147483647]>
                             Pixels to crop from top
      Number of pixels to crop from the top of the image.

  --croppadd-cropbottom=<integer [0 .. 2147483647]>
                             Pixels to crop from bottom
      Number of pixels to crop from the bottom of the image.

  --croppadd-cropleft=<integer [0 .. 2147483647]>
                             Pixels to crop from left
      Number of pixels to crop from the left of the image.

  --croppadd-cropright=<integer [0 .. 2147483647]>
                             Pixels to crop from right
      Number of pixels to crop from the right of the image.

您需要根据计算机上安装 VLC 的位置、希望全屏 vlc 窗口出现在哪个屏幕上以及希望裁剪多少来调整命令。

我不确定您是否可以告诉 vlc 应该捕获哪个屏幕。


鼠标光标

由于原因,VLC 无法直接记录桌面上的鼠标光标。

但是,您可以添加参数--screen-mouse-image来告诉 VLC 使用小图标而不是鼠标光标:

"C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" --fullscreen --qt-fullscreen-screennumber=0 --no-qt-fs-controller --screen-mouse-image=C:\Users\msbob\Pictures\mouse-cursor.png --video-filter=croppadd --croppadd-croptop=100 --croppadd-cropbottom=100 --croppadd-cropleft=250 --croppadd-cropright=250 screen://

答案2

回复很晚了,但对于仍然在寻找类似东西的人来说。

  1. 在 PowerPoint 中,您可以在 PowerPoint 中工作,并在工作的同时将演示文稿设置在第二个屏幕上。在这种情况下,您可以在 PPT 画布上工作,而其他人只能看到画布。

  2. OBS 工作室,有 YouTube 教程

相关内容