all repos — videocr @ 7b607e5ca7b7d058e9f4cc108b6c75b9ef7e1ba0

Extract hardcoded subtitles from videos using machine learning

.gitignore (view raw)

  1.DS_Store
  2
  3# Byte-compiled / optimized / DLL files
  4__pycache__/
  5*.py[cod]
  6*$py.class
  7
  8# C extensions
  9*.so
 10
 11# Distribution / packaging
 12.Python
 13build/
 14develop-eggs/
 15dist/
 16downloads/
 17eggs/
 18.eggs/
 19lib/
 20lib64/
 21parts/
 22sdist/
 23var/
 24wheels/
 25pip-wheel-metadata/
 26share/python-wheels/
 27*.egg-info/
 28.installed.cfg
 29*.egg
 30MANIFEST
 31
 32# PyInstaller
 33#  Usually these files are written by a python script from a template
 34#  before PyInstaller builds the exe, so as to inject date/other infos into it.
 35*.manifest
 36*.spec
 37
 38# Installer logs
 39pip-log.txt
 40pip-delete-this-directory.txt
 41
 42# Unit test / coverage reports
 43htmlcov/
 44.tox/
 45.nox/
 46.coverage
 47.coverage.*
 48.cache
 49nosetests.xml
 50coverage.xml
 51*.cover
 52.hypothesis/
 53.pytest_cache/
 54
 55# Translations
 56*.mo
 57*.pot
 58
 59# Django stuff:
 60*.log
 61local_settings.py
 62db.sqlite3
 63
 64# Flask stuff:
 65instance/
 66.webassets-cache
 67
 68# Scrapy stuff:
 69.scrapy
 70
 71# Sphinx documentation
 72docs/_build/
 73
 74# PyBuilder
 75target/
 76
 77# Jupyter Notebook
 78.ipynb_checkpoints
 79
 80# IPython
 81profile_default/
 82ipython_config.py
 83
 84# pyenv
 85.python-version
 86
 87# pipenv
 88#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
 89#   However, in case of collaboration, if having platform-specific dependencies or dependencies
 90#   having no cross-platform support, pipenv may install dependencies that don’t work, or not
 91#   install all needed dependencies.
 92#Pipfile.lock
 93
 94# celery beat schedule file
 95celerybeat-schedule
 96
 97# SageMath parsed files
 98*.sage.py
 99
100# Environments
101.env
102.venv
103env/
104venv/
105ENV/
106env.bak/
107venv.bak/
108
109# Spyder project settings
110.spyderproject
111.spyproject
112
113# Rope project settings
114.ropeproject
115
116# mkdocs documentation
117/site
118
119# mypy
120.mypy_cache/
121.dmypy.json
122dmypy.json
123
124# Pyre type checker
125.pyre/