diff --git a/README.md b/README.md index dd04d4a..be78bd7 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ More information on the format is available on the The primay aim of this project was to be able to extract GPS tracks from GoPro video files, so the GPS part is more tested. -We use `python-ffmpeg` to extract the GPMF stream from video files. +We use `ffmpeg-python` to extract the GPMF stream from video files. ```python import gpmf diff --git a/requirements.txt b/requirements.txt index 873e242..a4abd39 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ numpy matplotlib gpxpy -python-ffmpeg +ffmpeg-python geopandas descartes contextily diff --git a/setup.py b/setup.py index 9067e98..f2d144b 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages import pathlib -from gpmf import __version__ +__version__ = "0.1" HERE = pathlib.Path(__file__).parent README = (HERE / "README.md").read_text() @@ -17,7 +17,7 @@ packages=find_packages(), install_requires=[ "numpy", "pandas", "gpxpy", - "python-ffmpeg", "geopandas", + "ffmpeg-python", "geopandas", "contextily", "descartes" ], url="https://github.com/alexis-mignon/pygpmf"