Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
moyada committed May 5, 2020
1 parent 2e11ec3 commit 54f6d57
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 56 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,14 @@
```shell script
pip3 install Django
pip3 install requests
pip3 install enum
pip3 install json
pip3 install enum34
```

下载解压完运行 `start.sh``run.sh`,通过浏览器打开 [localhost:8000](http://localhost:8000) 进入使用页面。

- 点击`下载`直接下载视频 (经过 md5 处理)
- 点击`解析`获取下载地址

[试用地址](http://119.23.110.20:8000/)
[试用地址](http://www.didaho.com/#/watermark)

> 小破服务器,每天试用 5 次
Binary file modified appfront/dist/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion appfront/dist/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><link rel="shortcut icon" type=image/x-icon href=static/favicon.ico><title>短视频去水印工具</title><link rel="shortcut icon" href=/favicon.ico><link href=/static/css/app.10598307ebb14d82afc04f52e3ff6eb9.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=/static/js/manifest.2ae2e69a05c33dfc65f8.js></script><script type=text/javascript src=/static/js/vendor.bc8d41d95da0f9c3be79.js></script><script type=text/javascript src=/static/js/app.b49e4ea0b5e47c02e016.js></script></body></html>
<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><link rel="shortcut icon" type=image/x-icon href=favicon.ico><title>短视频去水印工具</title><link rel="shortcut icon" href=/favicon.ico><link href=/static/css/app.10598307ebb14d82afc04f52e3ff6eb9.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=/static/js/manifest.2ae2e69a05c33dfc65f8.js></script><script type=text/javascript src=/static/js/vendor.bc8d41d95da0f9c3be79.js></script><script type=text/javascript src=/static/js/app.b49e4ea0b5e47c02e016.js></script></body></html>
Binary file removed appfront/dist/static/favicon.ico
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added appfront/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion appfront/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="static/favicon.ico"/>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico"/>
<title>短视频去水印工具</title>
</head>
<body>
Expand Down
Binary file removed appfront/static/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion core/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ class ErrorResult(Result, Enum):
VIDEO_ADDRESS_NOT_FOUNT = False, '视频地址获取失败.'

def __init__(self, *value):
super().__init__(success=value[0], data=value[1]) # init Song
super(self.__class__, self).__init__(success=value[0], data=value[1])
# super(Enum, self).__init__()

49 changes: 0 additions & 49 deletions tools/analyzer.py

This file was deleted.

0 comments on commit 54f6d57

Please sign in to comment.