0
点赞
收藏
分享

微信扫一扫

electron 监听窗口高端变化

魔都魅影梅杜萨 2024-11-06 阅读 18

下载地址合辑

常用的下载地址:

汇总

vlc 地址: https://www.videolan.org/vlc/index.zh_CN.html
visual 地址:https://my.visualstudio.com/Downloads?q=2013
qt 地址:https://download.qt.io/official_releases/
qtaddin 地址:https://download.qt.io/official_releases/vsaddin/
boost 地址:https://www.boost.org/users/history/
osg:https://github.com/openscenegraph/OpenSceneGraph/tags
FFmpeg 地址:https://github.com/ShiftMediaProject/FFmpeg
OSG编译好的库:https://objexx.com/OpenSceneGraph.html
FFmpeg编译好的库 地址1:https://github.com/BtbN/FFmpeg-Builds
FFmpeg编译好的库 地址2:https://github.com/BtbN/FFmpeg-Builds/tags

OSG相关地址

osg官网地址地址 https://openscenegraph.github.io/openscenegraph.io
osgQt下载地址 https://github.com/openscenegraph/osgQt
osg下载地址 https://github.com/openscenegraph/OpenSceneGraph
在这里插入图片描述

osg三方库下载地址 https://www.osgvisual.org/wiki/Downloads#a3rdPartysmallpackageV11

osg三方库精简版下载地址 https://download.osgvisual.org/3rdParty_VS2017_v141_x64_V11_small.7z

osg三方库完整版下载地址 https://download.osgvisual.org/3rdParty_VS2017_v141_x64_V11_full.7z

在这里插入图片描述

Visual Studio Qt 地址

vs下载地址:
https://docs.microsoft.com/en-us/visualstudio/releasenotes/vs2017-relnotes
qt下载地址:
https://download.qt.io/official_releases/online_installers/
qt插件下载地址:
http://download.qt.io/official_releases/vsaddin/

qt插件安装失败

插件名:qt-vsaddin-msvc2017-2.3.2.vsix

错误为:
在这里插入图片描述
之前没遇到过这种情况,看提示信息是运行权限不够。右键点击可执行文件,没有以管理员权限运行选项。
解决方案:
首先在开始菜单找到Windows Powershell,使用管理员权限运行;
拷贝安装包路径,输入命令如图所示:
在这里插入图片描述
在窗口中会列出文件夹内的文件,ls这个命令可以不用。我只是为什么方便查看。
然后执行安装文件:
在这里插入图片描述
插件就开始安装了。然后使用默认值安装,就ok了。
在这里插入图片描述

Boost库

访问Boost官方网站(https://www.boost.org/)并下载最新版本的Boost库。
boost 地址:https://www.boost.org/users/history/

boost库编译步骤

当使用Visual Studio 2017编译Boost库时,你需要按照以下步骤进行操作:

  1. 下载Boost库
    • 访问Boost官方网站(https://www.boost.org/)并下载最新版本的Boost库。
    • boost 地址:https://www.boost.org/users/history/
  2. 解压Boost库
    • 将Boost库文件解压到你选择的目录中。
  3. 打开“Developer Command Prompt for VS 2017”
    • 在Windows开始菜单中找到“Developer Command Prompt for VS 2017”并以管理员身份运行。
  4. 进入Boost库目录
    • 使用命令cd切换到Boost库的根目录,例如:Copy Code
      cd C:\path\to\boost_1_76_0
  5. 配置Boost库
    • 运行以下命令来配置Boost库:Copy Code
      bootstrap.bat
  6. 编译Boost库
    • 运行以下命令来编译Boost库(使用b2命令):Copy Code
      b2
    • 你也可以通过添加参数来自定义编译过程,例如:Copy Code
      b2 --toolset=msvc-14.1 address-model=64 architecture=x86 link=static runtime-link=shared
  7. 安装Boost库
    • 最后,运行以下命令来安装Boost库:Copy Code
      b2 install
  8. 设置Visual Studio 2017项目
    • 打开你的Visual Studio 2017项目,选择“项目” -> “属性” -> “VC++目录”,并添加Boost库的include目录和lib目录。
  9. 补充
  • msvc-14.0代表Visual Studio 2015的编译器版本。
  • msvc-14.1代表Visual Studio 2017的编译器版本。
  • b2 --toolset=msvc-14.1 install

FFmpeg 地址

FFmpeg 地址:https://github.com/ShiftMediaProject/FFmpeg
ffmeg windows 编译可以参考这两个地址,这里不再展开。
https://www.cnblogs.com/BensonLaur/p/10989115.html
https://github.com/ShiftMediaProject/FFmpeg/releases?page=5

osg编译库

osg编译库下载地址:https://objexx.com/OpenSceneGraph.html

在这里插入图片描述

FFmpeg 编译库
ffmpeg 编译库下载地址:https://github.com/BtbN/FFmpeg-Builds/releases/tag

直通车地址:https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2024-10-14-12-57

这个地址不一定能访问,多刷新几次。可以直接从这个地址进入
在这里插入图片描述

举报

相关推荐

0 条评论