Name | dji-drone-metadata-embedder JSON |
Version |
1.0.5
JSON |
| download |
home_page | None |
Summary | Python CLI for embedding DJI drone telemetry from SRT logs into MP4 videos |
upload_time | 2025-07-22 17:18:42 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.10 |
license | MIT License
Copyright (c) 2024 DJI Drone Metadata Embedder Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. |
keywords |
dji
drone
gps
metadata
srt
telemetry
video
|
VCS |
 |
bugtrack_url |
|
requirements |
rich
ffmpeg-python
piexif
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# DJI Drone Metadata Embedder
[![Winget]][winget]
[![GitHub Release]][release]
[![PyPI]][pypi]
A Python tool to embed telemetry data from DJI drone SRT files into MP4 video files.
This tool extracts GPS coordinates, altitude, camera settings and other telemetry data from SRT files and embeds
them as metadata in the corresponding video files.
> **Note**
>
> The core functionality should work for embedding telemetry from DJI drones,
> but the tool is still undergoing active testing and refinement. Expect
> breaking changes and incomplete features as stability issues are addressed.
See the [Development Roadmap](docs/development_roadmap.md) for plans to expand this CLI tool into a Windows
application with a graphical interface.
For detailed setup instructions and a quick-start tutorial, see
[docs/installation.md](docs/installation.md) and [docs/user_guide.md](docs/user_guide.md).
Common problems are covered in [docs/troubleshooting.md](docs/troubleshooting.md).
Answers to frequently asked questions can be found in the [FAQ](docs/faq.md).
## Easy Windows install
```powershell
iwr -useb https://raw.githubusercontent.com/CallMarcus/dji-drone-metadata-embedder/master/tools/bootstrap.ps1 | iex
```
```powershell
winget install -e --id CallMarcus.DJI-Embed
```
If winget reports **"No package found"**, the package is still pending publication. Use the PowerShell one-liner above instead.
You can also download a ready-to-run **dji-embed.exe** from the [GitHub Releases page](https://github.com/CallMarcus/dji-drone-metadata-embedder/releases) if `winget` is unavailable.
### Windows – manual path
```powershell
winget install -e --id Python.Python.3
winget install -e --id Gyan.FFmpeg
winget install -e --id PhilHarvey.ExifTool
pip install dji-metadata-embedder
```
## macOS / Linux quick-start
```bash
brew install ffmpeg exiftool
sudo apt update && sudo apt install ffmpeg exiftool
pip install dji-drone-metadata-embedder
```
```bash
docker run --rm -v "$PWD":/data callmarcus/dji-embed -i *.MP4
```
<details>
<summary>Advanced</summary>
- Build from source with `pip install -r requirements.txt`
- Use the provided `Dockerfile` for custom images
- Review CI scripts under `.github/workflows`
</details>
## Features
- **Batch Processing**: Process entire directories of DJI drone footage automatically
- **GPS Metadata Embedding**: Embed GPS coordinates as standard metadata tags
- **Subtitle Track Preservation**: Keep telemetry data as subtitle track for overlay viewing
- **Multiple Format Support**: Handles different DJI SRT telemetry formats
- **Telemetry Export**: Export flight data to JSON, GPX, or CSV formats
- **DAT Flight Log Support**: Merge `.DAT` flight logs into metadata
- **Cross-Platform**: Works on Windows, macOS, and Linux
- **Progress Bar**: See processing status while videos are being embedded
## Supported DJI Models
The tool has been tested with:
- DJI Mini 3 Pro
- DJI Mini 4 Pro
- DJI Mavic 3
- DJI Air 2S
- Other models using similar SRT formats
## Requirements
- Python 3.6 or higher
- FFmpeg
- ExifTool (optional, for additional metadata embedding)
## Usage
If the command `python` is not recognized, use `py` instead.
### Basic Usage
Process a single directory:
```bash
dji-embed /path/to/drone/footage
```
### Options
```bash
dji-embed [OPTIONS] [DIRECTORY]
Arguments:
DIRECTORY Directory containing MP4 and SRT files
Options:
-o, --output Output directory (default: ./processed)
--exiftool Also use ExifTool for GPS metadata
--check Only check dependencies
--doctor Show system information and dependency status
--dat FILE Merge specified DAT flight log
--dat-auto Auto-detect DAT logs matching videos
--redact MODE Redact GPS data (none, drop, fuzz)
--verbose Show detailed progress
--quiet Suppress progress bar and most output
```
By default, processing shows a progress bar for each file.
Use `--verbose` for detailed output or `--quiet` to reduce messages.
The `--doctor` option does not require a directory argument.
### Examples
Process footage with custom output directory:
```bash
dji-embed "D:\DroneFootage\Flight1" -o "D:\ProcessedVideos"
```
Process with ExifTool for additional metadata:
```bash
dji-embed "D:\DroneFootage\Flight1" --exiftool
```
Check dependencies:
```bash
dji-embed --check "D:\DroneFootage"
```
Run the environment doctor:
```bash
dji-embed --doctor
```
### Convert Telemetry to Other Formats
Extract GPS track to GPX:
```bash
python -m dji_metadata_embedder.telemetry_converter gpx DJI_0001.SRT
```
Export telemetry to CSV:
```bash
python -m dji_metadata_embedder.telemetry_converter csv DJI_0001.SRT -o telemetry.csv
```
Batch convert directory to GPX:
```bash
python -m dji_metadata_embedder.telemetry_converter gpx /path/to/srt/files --batch
```
Batch convert directory to CSV:
```bash
python -m dji_metadata_embedder.telemetry_converter csv /path/to/srt/files --batch
```
### Check Existing Metadata
You can check if your videos or photos already contain GPS or altitude
information using the metadata checker script:
```bash
python -m dji_metadata_embedder.metadata_check DJI_0001.MP4
python -m dji_metadata_embedder.metadata_check /path/to/footage
```
See [docs/METADATA_CHECKER.md](docs/METADATA_CHECKER.md) for details.
## Output
The tool creates a `processed` subdirectory containing:
- `*_metadata.MP4` - Video files with embedded metadata and telemetry subtitles
- `*_telemetry.json` - Flight summary with GPS data, altitude, and camera settings
Example JSON output:
```json
{
"filename": "DJI_0158.MP4",
"first_gps": [59.302335, 18.203059],
"average_gps": [59.302336, 18.203058],
"max_altitude": 132.86,
"max_relative_altitude": 1.5,
"flight_duration": "00:00:00 - 00:00:32",
"num_gps_points": 967,
"camera_settings": {
"iso": "2700",
"shutter": "1/30.0",
"fnum": "170"
},
"location": "Stockholm, Sweden"
}
```
## How It Works
1. **SRT Parsing**: Extracts telemetry data from DJI SRT subtitle files
2. **Metadata Embedding**: Uses FFmpeg to:
- Add SRT as subtitle track (preserves all telemetry)
- Embed GPS coordinates in video metadata
- Add altitude and other metadata tags
3. **No Re-encoding**: Uses stream copy for fast processing without quality loss
4. **Summary Generation**: Creates JSON files with flight statistics
## SRT Format Support
The tool supports multiple DJI SRT formats:
### Format 1 (DJI Mini 3 Pro):
```
[latitude: 59.302335] [longitude: 18.203059] [rel_alt: 1.300 abs_alt: 132.860]
```
### Format 2 (Older models):
```
GPS(59.302335,18.203059,132.860)
```
## Use Cases
- **Photo Management**: Videos become searchable by location in Windows Photos, Google Photos, etc.
- **Video Editing**: Telemetry subtitle track can be used for overlay effects
- **Flight Analysis**: Export GPX tracks for Google Earth visualization
- **Archival**: Preserve all flight data within the video file itself
## Troubleshooting
See [docs/troubleshooting.md](docs/troubleshooting.md) for additional tips.
### "Python was not found"
Use `py` instead of `python`:
```bash
dji-embed /path/to/footage
```
### "ffmpeg is not recognized"
Ensure FFmpeg is in your PATH. Test with:
```bash
ffmpeg -version
```
`ffmpeg` uses a single dash here. Typing `ffmpeg --version` will result in `Unrecognized option '--version'`.
### No GPS data in JSON
Check that your SRT files contain GPS coordinates. Open an SRT file to verify the format.
## Contributing
Contributions are welcome! Please feel free to submit issues or pull requests.
### Adding Support for New Models
If your DJI model uses a different SRT format:
1. Open an issue with a sample SRT file
2. Or submit a PR with regex patterns for the new format
## Release
See [docs/RELEASE.md](docs/RELEASE.md) for instructions on publishing a new version.
## License
MIT License - see LICENSE file for details
## Acknowledgments
- Thanks to the DJI drone community for format documentation
- FFmpeg and ExifTool teams for their excellent tools
## Related Projects
- [exiftool](https://exiftool.org/) - Read/write metadata in media files
- [ffmpeg](https://ffmpeg.org/) - Media processing framework
- [gpx.py](https://github.com/tkrajina/gpxpy) - GPX file parser (for further processing)
## Disclaimer
This tool is not affiliated with or endorsed by DJI. Use at your own risk.
[Winget]: https://img.shields.io/badge/winget-CallMarcus.DJI--Embed-blue?logo=windows
[winget]: https://winget.run/pkg/CallMarcus/DJI-Embed
[GitHub Release]: https://img.shields.io/github/v/release/CallMarcus/dji-drone-metadata-embedder?logo=github
[release]: https://github.com/CallMarcus/dji-drone-metadata-embedder/releases
[PyPI]: https://img.shields.io/pypi/v/dji-drone-metadata-embedder?logo=pypi
[pypi]: https://pypi.org/project/dji-drone-metadata-embedder/
Raw data
{
"_id": null,
"home_page": null,
"name": "dji-drone-metadata-embedder",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": "dji, drone, gps, metadata, srt, telemetry, video",
"author": null,
"author_email": "\"Marcus W.\" <marcus.westermark@altal.fi>",
"download_url": "https://files.pythonhosted.org/packages/29/23/46bcb0525aafa466abf745956225d1ecbc876e4a720a706d412ef20fa5c8/dji_drone_metadata_embedder-1.0.5.tar.gz",
"platform": null,
"description": "# DJI Drone Metadata Embedder\n\n[![Winget]][winget]\n[![GitHub Release]][release]\n[![PyPI]][pypi]\n\nA Python tool to embed telemetry data from DJI drone SRT files into MP4 video files.\nThis tool extracts GPS coordinates, altitude, camera settings and other telemetry data from SRT files and embeds\nthem as metadata in the corresponding video files.\n\n> **Note**\n> \n> The core functionality should work for embedding telemetry from DJI drones,\n> but the tool is still undergoing active testing and refinement. Expect\n> breaking changes and incomplete features as stability issues are addressed.\n\nSee the [Development Roadmap](docs/development_roadmap.md) for plans to expand this CLI tool into a Windows\napplication with a graphical interface.\nFor detailed setup instructions and a quick-start tutorial, see\n[docs/installation.md](docs/installation.md) and [docs/user_guide.md](docs/user_guide.md).\nCommon problems are covered in [docs/troubleshooting.md](docs/troubleshooting.md).\nAnswers to frequently asked questions can be found in the [FAQ](docs/faq.md).\n\n## Easy Windows install\n\n```powershell\niwr -useb https://raw.githubusercontent.com/CallMarcus/dji-drone-metadata-embedder/master/tools/bootstrap.ps1 | iex\n```\n\n```powershell\nwinget install -e --id CallMarcus.DJI-Embed\n```\n\nIf winget reports **\"No package found\"**, the package is still pending publication. Use the PowerShell one-liner above instead.\n\nYou can also download a ready-to-run **dji-embed.exe** from the [GitHub Releases page](https://github.com/CallMarcus/dji-drone-metadata-embedder/releases) if `winget` is unavailable.\n\n### Windows \u2013 manual path\n\n```powershell\nwinget install -e --id Python.Python.3\nwinget install -e --id Gyan.FFmpeg\nwinget install -e --id PhilHarvey.ExifTool\npip install dji-metadata-embedder\n```\n\n## macOS / Linux quick-start\n\n```bash\nbrew install ffmpeg exiftool\nsudo apt update && sudo apt install ffmpeg exiftool\npip install dji-drone-metadata-embedder\n```\n\n```bash\ndocker run --rm -v \"$PWD\":/data callmarcus/dji-embed -i *.MP4\n```\n\n<details>\n<summary>Advanced</summary>\n\n- Build from source with `pip install -r requirements.txt`\n- Use the provided `Dockerfile` for custom images\n- Review CI scripts under `.github/workflows`\n\n</details>\n\n\n## Features\n\n- **Batch Processing**: Process entire directories of DJI drone footage automatically\n- **GPS Metadata Embedding**: Embed GPS coordinates as standard metadata tags\n- **Subtitle Track Preservation**: Keep telemetry data as subtitle track for overlay viewing\n- **Multiple Format Support**: Handles different DJI SRT telemetry formats\n- **Telemetry Export**: Export flight data to JSON, GPX, or CSV formats\n- **DAT Flight Log Support**: Merge `.DAT` flight logs into metadata\n- **Cross-Platform**: Works on Windows, macOS, and Linux\n- **Progress Bar**: See processing status while videos are being embedded\n\n## Supported DJI Models\n\nThe tool has been tested with:\n- DJI Mini 3 Pro\n- DJI Mini 4 Pro\n- DJI Mavic 3\n- DJI Air 2S\n- Other models using similar SRT formats\n\n## Requirements\n\n- Python 3.6 or higher\n- FFmpeg\n- ExifTool (optional, for additional metadata embedding)\n\n## Usage\n\nIf the command `python` is not recognized, use `py` instead.\n\n### Basic Usage\n\nProcess a single directory:\n```bash\ndji-embed /path/to/drone/footage\n```\n\n### Options\n\n```bash\ndji-embed [OPTIONS] [DIRECTORY]\n\nArguments:\n DIRECTORY Directory containing MP4 and SRT files\n\nOptions:\n -o, --output Output directory (default: ./processed)\n --exiftool Also use ExifTool for GPS metadata\n --check Only check dependencies\n --doctor Show system information and dependency status\n --dat FILE Merge specified DAT flight log\n --dat-auto Auto-detect DAT logs matching videos\n --redact MODE Redact GPS data (none, drop, fuzz)\n --verbose Show detailed progress\n --quiet Suppress progress bar and most output\n```\n\nBy default, processing shows a progress bar for each file.\nUse `--verbose` for detailed output or `--quiet` to reduce messages.\nThe `--doctor` option does not require a directory argument.\n\n### Examples\n\nProcess footage with custom output directory:\n```bash\ndji-embed \"D:\\DroneFootage\\Flight1\" -o \"D:\\ProcessedVideos\"\n```\n\nProcess with ExifTool for additional metadata:\n```bash\ndji-embed \"D:\\DroneFootage\\Flight1\" --exiftool\n```\n\nCheck dependencies:\n```bash\ndji-embed --check \"D:\\DroneFootage\"\n```\n\nRun the environment doctor:\n```bash\ndji-embed --doctor\n```\n\n### Convert Telemetry to Other Formats\n\nExtract GPS track to GPX:\n```bash\npython -m dji_metadata_embedder.telemetry_converter gpx DJI_0001.SRT\n```\n\nExport telemetry to CSV:\n```bash\npython -m dji_metadata_embedder.telemetry_converter csv DJI_0001.SRT -o telemetry.csv\n```\n\nBatch convert directory to GPX:\n```bash\npython -m dji_metadata_embedder.telemetry_converter gpx /path/to/srt/files --batch\n```\n\nBatch convert directory to CSV:\n```bash\npython -m dji_metadata_embedder.telemetry_converter csv /path/to/srt/files --batch\n```\n\n### Check Existing Metadata\n\nYou can check if your videos or photos already contain GPS or altitude\ninformation using the metadata checker script:\n\n```bash\npython -m dji_metadata_embedder.metadata_check DJI_0001.MP4\npython -m dji_metadata_embedder.metadata_check /path/to/footage\n```\n\nSee [docs/METADATA_CHECKER.md](docs/METADATA_CHECKER.md) for details.\n\n## Output\n\nThe tool creates a `processed` subdirectory containing:\n\n- `*_metadata.MP4` - Video files with embedded metadata and telemetry subtitles\n- `*_telemetry.json` - Flight summary with GPS data, altitude, and camera settings\n\nExample JSON output:\n```json\n{\n \"filename\": \"DJI_0158.MP4\",\n \"first_gps\": [59.302335, 18.203059],\n \"average_gps\": [59.302336, 18.203058],\n \"max_altitude\": 132.86,\n \"max_relative_altitude\": 1.5,\n \"flight_duration\": \"00:00:00 - 00:00:32\",\n \"num_gps_points\": 967,\n \"camera_settings\": {\n \"iso\": \"2700\",\n \"shutter\": \"1/30.0\",\n \"fnum\": \"170\"\n },\n \"location\": \"Stockholm, Sweden\"\n}\n```\n\n## How It Works\n\n1. **SRT Parsing**: Extracts telemetry data from DJI SRT subtitle files\n2. **Metadata Embedding**: Uses FFmpeg to:\n - Add SRT as subtitle track (preserves all telemetry)\n - Embed GPS coordinates in video metadata\n - Add altitude and other metadata tags\n3. **No Re-encoding**: Uses stream copy for fast processing without quality loss\n4. **Summary Generation**: Creates JSON files with flight statistics\n\n## SRT Format Support\n\nThe tool supports multiple DJI SRT formats:\n\n### Format 1 (DJI Mini 3 Pro):\n```\n[latitude: 59.302335] [longitude: 18.203059] [rel_alt: 1.300 abs_alt: 132.860]\n```\n\n### Format 2 (Older models):\n```\nGPS(59.302335,18.203059,132.860)\n```\n\n## Use Cases\n\n- **Photo Management**: Videos become searchable by location in Windows Photos, Google Photos, etc.\n- **Video Editing**: Telemetry subtitle track can be used for overlay effects\n- **Flight Analysis**: Export GPX tracks for Google Earth visualization\n- **Archival**: Preserve all flight data within the video file itself\n\n## Troubleshooting\n\nSee [docs/troubleshooting.md](docs/troubleshooting.md) for additional tips.\n### \"Python was not found\"\nUse `py` instead of `python`:\n```bash\ndji-embed /path/to/footage\n```\n\n### \"ffmpeg is not recognized\"\nEnsure FFmpeg is in your PATH. Test with:\n```bash\nffmpeg -version\n```\n`ffmpeg` uses a single dash here. Typing `ffmpeg --version` will result in `Unrecognized option '--version'`.\n\n### No GPS data in JSON\nCheck that your SRT files contain GPS coordinates. Open an SRT file to verify the format.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit issues or pull requests.\n\n### Adding Support for New Models\n\nIf your DJI model uses a different SRT format:\n1. Open an issue with a sample SRT file\n2. Or submit a PR with regex patterns for the new format\n\n## Release\n\nSee [docs/RELEASE.md](docs/RELEASE.md) for instructions on publishing a new version.\n\n## License\n\nMIT License - see LICENSE file for details\n\n## Acknowledgments\n\n- Thanks to the DJI drone community for format documentation\n- FFmpeg and ExifTool teams for their excellent tools\n\n## Related Projects\n\n- [exiftool](https://exiftool.org/) - Read/write metadata in media files\n- [ffmpeg](https://ffmpeg.org/) - Media processing framework\n- [gpx.py](https://github.com/tkrajina/gpxpy) - GPX file parser (for further processing)\n\n## Disclaimer\n\nThis tool is not affiliated with or endorsed by DJI. Use at your own risk.\n\n[Winget]: https://img.shields.io/badge/winget-CallMarcus.DJI--Embed-blue?logo=windows\n[winget]: https://winget.run/pkg/CallMarcus/DJI-Embed\n[GitHub Release]: https://img.shields.io/github/v/release/CallMarcus/dji-drone-metadata-embedder?logo=github\n[release]: https://github.com/CallMarcus/dji-drone-metadata-embedder/releases\n[PyPI]: https://img.shields.io/pypi/v/dji-drone-metadata-embedder?logo=pypi\n[pypi]: https://pypi.org/project/dji-drone-metadata-embedder/\n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2024 DJI Drone Metadata Embedder Contributors\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.",
"summary": "Python CLI for embedding DJI drone telemetry from SRT logs into MP4 videos",
"version": "1.0.5",
"project_urls": {
"Homepage": "https://github.com/CallMarcus/dji-drone-metadata-embedder",
"Issues": "https://github.com/CallMarcus/dji-drone-metadata-embedder/issues",
"Repository": "https://github.com/CallMarcus/dji-drone-metadata-embedder.git"
},
"split_keywords": [
"dji",
" drone",
" gps",
" metadata",
" srt",
" telemetry",
" video"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "9f900d9ad3a1c084fe8a1def3cc126963aba31629b994fb2500c4582cbfe3481",
"md5": "2cd8f9438da4f0dcda4cce90e6ac29ef",
"sha256": "2c8815ef519a8358d9e5804486d072038474494420bf620669dedc3579be8a38"
},
"downloads": -1,
"filename": "dji_drone_metadata_embedder-1.0.5-py3-none-any.whl",
"has_sig": false,
"md5_digest": "2cd8f9438da4f0dcda4cce90e6ac29ef",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 26792,
"upload_time": "2025-07-22T17:18:41",
"upload_time_iso_8601": "2025-07-22T17:18:41.638686Z",
"url": "https://files.pythonhosted.org/packages/9f/90/0d9ad3a1c084fe8a1def3cc126963aba31629b994fb2500c4582cbfe3481/dji_drone_metadata_embedder-1.0.5-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "292346bcb0525aafa466abf745956225d1ecbc876e4a720a706d412ef20fa5c8",
"md5": "7eddc600a620ee7926ed7072f6f04632",
"sha256": "39d21bec6a23df129f30bc6e7f1c680183d15ccfbebdccd94b2fed5cbd129d0c"
},
"downloads": -1,
"filename": "dji_drone_metadata_embedder-1.0.5.tar.gz",
"has_sig": false,
"md5_digest": "7eddc600a620ee7926ed7072f6f04632",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 19666,
"upload_time": "2025-07-22T17:18:42",
"upload_time_iso_8601": "2025-07-22T17:18:42.975434Z",
"url": "https://files.pythonhosted.org/packages/29/23/46bcb0525aafa466abf745956225d1ecbc876e4a720a706d412ef20fa5c8/dji_drone_metadata_embedder-1.0.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-22 17:18:42",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "CallMarcus",
"github_project": "dji-drone-metadata-embedder",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "rich",
"specs": [
[
">=",
"13.0"
]
]
},
{
"name": "ffmpeg-python",
"specs": [
[
">=",
"0.2"
]
]
},
{
"name": "piexif",
"specs": [
[
">=",
"1.1"
]
]
}
],
"lcname": "dji-drone-metadata-embedder"
}