├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── Examples │ ├── 1simple.md │ └── 2dvd_bounce.md ├── Video │ ├── 1video.md │ ├── 2converters.md │ ├── 3audio.md │ └── 4other.md ├── assets │ ├── dvd.mp4 │ ├── logo.png │ └── simple.mp4 └── index.md ├── examples ├── audio.wav ├── dvd bounce │ ├── audio.wav │ ├── dvd-logo.png │ └── main.py └── hello_world.py ├── logo.png ├── mkdocs.yml ├── pyproject.toml └── src └── fmov ├── __init__.py └── video.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/README.md -------------------------------------------------------------------------------- /docs/Examples/1simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/docs/Examples/1simple.md -------------------------------------------------------------------------------- /docs/Examples/2dvd_bounce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/docs/Examples/2dvd_bounce.md -------------------------------------------------------------------------------- /docs/Video/1video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/docs/Video/1video.md -------------------------------------------------------------------------------- /docs/Video/2converters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/docs/Video/2converters.md -------------------------------------------------------------------------------- /docs/Video/3audio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/docs/Video/3audio.md -------------------------------------------------------------------------------- /docs/Video/4other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/docs/Video/4other.md -------------------------------------------------------------------------------- /docs/assets/dvd.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/docs/assets/dvd.mp4 -------------------------------------------------------------------------------- /docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/docs/assets/logo.png -------------------------------------------------------------------------------- /docs/assets/simple.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/docs/assets/simple.mp4 -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/docs/index.md -------------------------------------------------------------------------------- /examples/audio.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/examples/audio.wav -------------------------------------------------------------------------------- /examples/dvd bounce/audio.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/examples/dvd bounce/audio.wav -------------------------------------------------------------------------------- /examples/dvd bounce/dvd-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/examples/dvd bounce/dvd-logo.png -------------------------------------------------------------------------------- /examples/dvd bounce/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/examples/dvd bounce/main.py -------------------------------------------------------------------------------- /examples/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/examples/hello_world.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/logo.png -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/fmov/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/src/fmov/__init__.py -------------------------------------------------------------------------------- /src/fmov/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylandibeneditto/fmov/HEAD/src/fmov/video.py --------------------------------------------------------------------------------