├── .gitignore ├── LICENSE ├── README.md ├── dwencode ├── __init__.py ├── __main__.py ├── concatenate.py ├── encode.py ├── example.bat ├── ffpath.py ├── probe │ ├── __init__.py │ ├── ffprobe.py │ └── quicktime.py ├── pyav.py └── thumbnail.py └── dwencode_example.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwencode/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwencode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwencode/HEAD/README.md -------------------------------------------------------------------------------- /dwencode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwencode/HEAD/dwencode/__init__.py -------------------------------------------------------------------------------- /dwencode/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwencode/HEAD/dwencode/__main__.py -------------------------------------------------------------------------------- /dwencode/concatenate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwencode/HEAD/dwencode/concatenate.py -------------------------------------------------------------------------------- /dwencode/encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwencode/HEAD/dwencode/encode.py -------------------------------------------------------------------------------- /dwencode/example.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwencode/HEAD/dwencode/example.bat -------------------------------------------------------------------------------- /dwencode/ffpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwencode/HEAD/dwencode/ffpath.py -------------------------------------------------------------------------------- /dwencode/probe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwencode/HEAD/dwencode/probe/__init__.py -------------------------------------------------------------------------------- /dwencode/probe/ffprobe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwencode/HEAD/dwencode/probe/ffprobe.py -------------------------------------------------------------------------------- /dwencode/probe/quicktime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwencode/HEAD/dwencode/probe/quicktime.py -------------------------------------------------------------------------------- /dwencode/pyav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwencode/HEAD/dwencode/pyav.py -------------------------------------------------------------------------------- /dwencode/thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwencode/HEAD/dwencode/thumbnail.py -------------------------------------------------------------------------------- /dwencode_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwencode/HEAD/dwencode_example.png --------------------------------------------------------------------------------