wangkun 2 rokov pred
commit
9f79776cc6
2 zmenil súbory, kde vykonal 114 pridanie a 0 odobranie
  1. 63 0
      .gitignore
  2. 51 0
      README.md

+ 63 - 0
.gitignore

@@ -0,0 +1,63 @@
+# ---> Python
+# Byte-compiled / optimized / DLL files
+__pycache__/
+*.py[cod]
+*$py.class
+
+# C extensions
+*.so
+
+# Distribution / packaging
+.Python
+env/
+build/
+develop-eggs/
+dist/
+downloads/
+eggs/
+.eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+*.egg-info/
+.installed.cfg
+*.egg
+
+# PyInstaller
+#  Usually these files are written by a python script from a template
+#  before PyInstaller builds the exe, so as to inject date/other infos into it.
+*.manifest
+*.spec
+
+# Installer logs
+pip-log.txt
+pip-delete-this-directory.txt
+
+# Unit test / coverage reports
+htmlcov/
+.tox/
+.coverage
+.coverage.*
+.cache
+nosetests.xml
+coverage.xml
+*,cover
+
+# Translations
+*.mo
+*.pot
+
+# Django stuff:
+*.log
+
+# Sphinx documentation
+docs/_build/
+
+# PyBuilder
+target/
+
+.DS_Store
+.idea/
+

+ 51 - 0
README.md

@@ -0,0 +1,51 @@
+音乐相册小程序爬虫:https://git.yishihui.com/Server/crawler_music_album
+
+云文档:https://w42nne6hzg.feishu.cn/sheets/shtcnT6zvmfsYe1g0iv4pt7855g?sheet=f5a76e
+
+ffmpeg==1.4
+ffmpeg_python==0.2.0
+loguru==0.6.0
+oss2==2.15.0
+requests==2.27.1
+urllib3==1.26.9
+python==3.10
+
+执行入口:
+
+cd ./crawler_music_album
+
+python3 main/run_recommend.py 
+
+
+#**********2022/7/13**********#
+
+1. 基础筛选门槛 
+
+- 播放量≥20000
+
+- 分享量≥200
+
+- 视频时长≥1分钟
+
+
+2. 视频下载门槛
+
+- 标题为空的视频,不进行下载。
+
+- 视频时长<1分钟,不进行下载。
+
+- 分享率<1%的视频,不进行下载(分享量/播放量)
+
+- 标题中含有以下词汇的视频,直接过滤掉,不进行下载。
+
+
+3. 视频上传
+
+- 渠道号:YINYUEXIANGCE
+
+- 所有的视频随机分配到9个账号上: 20631253, 20631254, 20631255, 20631256, 20631257,20631258, 20631259, 20631260, 20631261
+
+- 标题和封面用原视频标题封面
+
+- 运行时间间隔:10 分钟
+