BonDriver for EPGStation that could be used in BonDriver-based software like TVTest, EDCB, BonRecTest, etc.
Built in Visual Studio 2019. You must choose the right architecture (x86/x64).
https://github.com/xqq/BonDriver_EPGStation/releases
You must put BonDriver_EPGStation.yml
in the same folder as the dll and keep the same file name.
baseURL: http://192.168.1.101 # required
version: v2 # required, v1 or v2
mpegTsStreamingMode: 0 # required
showInactiveServices: false # optional, default to false
userAgent: BonDriver_EPGStation # optional
proxy: socks5://127.0.0.1:1080 # optional, protocol could be http/https/socks4/socks4a/socks5/socks5h
headers: # optional
X-Real-Ip: 114.514.810.893
basicAuth: # optional, deprecated
user: admin
password: admin
CMake >=3.13 and a C++17 compatible compiler is necessary.
git clone https://github.com/xqq/BonDriver_EPGStation.git
cd BonDriver_EPGStation
git submodule update --init --recursive
The cmake configuring of libcurl could be extremely slow and you should just wait patiently.
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=MinSizeRel -A Win32 .. # Build for x86 (Win32)
cmake -DCMAKE_BUILD_TYPE=MinSizeRel -A x64 .. # or Build for x64 (x64)
cmake --build . --config MinSizeRel -j8
Visual Studio 2019 (CMake development) or CLion (MSVC toolchain) is recommended.
MIT License
Copyright (c) 2021 magicxqq <xqq@xqq.im>