parent
a1e6f15519
commit
28b4dc6450
10
README.md
10
README.md
|
|
@ -1,13 +1,13 @@
|
||||||
## m3u8d 一款m3u8下载工具
|
## m3u8视频下载工具
|
||||||
* 提供windows图形界面(Qt), mac、linux命令行, linux支持arm和386
|
* 提供windows图形界面(Qt), mac、linux命令行, linux支持arm、386、mipsle
|
||||||
* 使用gomedia转换、合并ts格式为mp4
|
* 程序会自动将下载的ts文件合并转换格式为mp4
|
||||||
* windows自带GUI界面的版本下载: [m3u8d_qt_v1.4.2_windows_amd64.exe](https://github.com/orestonce/m3u8d/releases/download/v1.4.2/m3u8d_qt_v1.4.2_windows_amd64.exe):
|
* windows自带GUI界面的版本下载: [m3u8d_qt_v1.4.3_windows_amd64.exe](https://github.com/orestonce/m3u8d/releases/download/v1.4.3/m3u8d_qt_v1.4.3_windows_amd64.exe):
|
||||||

|

|
||||||
* 全部版本下载, 包括windows图形界面/linux命令行/mac命令行: https://github.com/orestonce/m3u8d/releases
|
* 全部版本下载, 包括windows图形界面/linux命令行/mac命令行: https://github.com/orestonce/m3u8d/releases
|
||||||
|
|
||||||
## 实现说明
|
## 实现说明
|
||||||
* download.go 大部分抄自 https://github.com/llychao/m3u8-downloader
|
* download.go 大部分抄自 https://github.com/llychao/m3u8-downloader
|
||||||
* 使用 https://github.com/yapingcat/gomedia 代替ffmpeg进行格式转换
|
* 使用[gomedia](https://github.com/yapingcat/gomedia) 代替ffmpeg进行格式转换
|
||||||
* 支持跳过前面几个ts文件(一般是广告, 嘿嘿)
|
* 支持跳过前面几个ts文件(一般是广告, 嘿嘿)
|
||||||
* 程序会在下载保存目录创建:
|
* 程序会在下载保存目录创建:
|
||||||
* downloading/ 目录, 用于存放正在下载的分段ts视频, 按照m3u8的url进行划分
|
* downloading/ 目录, 用于存放正在下载的分段ts视频, 按照m3u8的url进行划分
|
||||||
|
|
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
|
|
@ -22,7 +22,7 @@ DEFINES += QT_DEPRECATED_WARNINGS
|
||||||
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
||||||
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
||||||
|
|
||||||
|
RC_FILE += version.rc
|
||||||
SOURCES += \
|
SOURCES += \
|
||||||
main.cpp \
|
main.cpp \
|
||||||
mainwindow.cpp \
|
mainwindow.cpp \
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ MainWindow::MainWindow(QWidget *parent) :
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
QIntValidator* vd = new QIntValidator;
|
QIntValidator* vd = new QIntValidator(this);
|
||||||
vd->setRange(0, 9999);
|
vd->setRange(0, 9999);
|
||||||
ui->lineEdit_SkipTsCountFromHead->setValidator(vd);
|
ui->lineEdit_SkipTsCountFromHead->setValidator(vd);
|
||||||
ui->lineEdit_SkipTsCountFromHead->setPlaceholderText("[0,9999]");
|
ui->lineEdit_SkipTsCountFromHead->setPlaceholderText("[0,9999]");
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,37 @@
|
||||||
|
IDI_ICON1 ICON "favicon.ico"
|
||||||
|
|
||||||
|
#if defined(UNDER_CE)
|
||||||
|
#include <winbase.h>
|
||||||
|
#else
|
||||||
|
#include <winver.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
VS_VERSION_INFO VERSIONINFO
|
||||||
|
FILEVERSION 1,4,3,0
|
||||||
|
PRODUCTVERSION 1,4,3,0
|
||||||
|
FILEFLAGSMASK 0x3fL
|
||||||
|
#ifdef _DEBUG
|
||||||
|
FILEFLAGS VS_FF_DEBUG
|
||||||
|
#else
|
||||||
|
FILEFLAGS 0x0L
|
||||||
|
#endif
|
||||||
|
FILEOS VOS__WINDOWS32
|
||||||
|
FILETYPE VFT_DLL
|
||||||
|
FILESUBTYPE 0x0L
|
||||||
|
BEGIN
|
||||||
|
BLOCK "StringFileInfo"
|
||||||
|
BEGIN
|
||||||
|
BLOCK "080404b0"
|
||||||
|
BEGIN
|
||||||
|
VALUE "ProductVersion", "1.4.3.0\0"
|
||||||
|
VALUE "ProductName", "m3u8视频下载工具\0"
|
||||||
|
VALUE "LegalCopyright", "https://github.com/orestonce/m3u8d\0"
|
||||||
|
VALUE "FileDescription", "m3u8视频下载工具\0"
|
||||||
|
END
|
||||||
|
END
|
||||||
|
|
||||||
|
BLOCK "VarFileInfo"
|
||||||
|
BEGIN
|
||||||
|
VALUE "Translation", 0x804, 1200
|
||||||
|
END
|
||||||
|
END
|
||||||
Loading…
Reference in New Issue