Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
numpy
matplotlib
gpxpy
python-ffmpeg
ffmpeg-python
geopandas
descartes
contextily
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages
import pathlib
from gpmf import __version__
__version__ = "0.1"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great! Remove the __version__ definition in gpmf/__init__.py too so we don't have duplicate definitions that risk being out of sync.


HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
Expand All @@ -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"
Expand Down