🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

telemetry-parser

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

telemetry-parser

0.3.0
PyPI
Maintainers
1

telemetry-parser-py

Library to parse real-time metadata embedded in video files or telemetry from other sources.

Supported formats:

Example usage:

import telemetry_parser

tp = telemetry_parser.Parser('sample.mp4')
print('Camera: ', tp.camera)
print('Model: ', tp.model)

# return all telemetry as an array of dicts
print('Telemetry', tp.telemetry())

# format the values with units etc
print('Telemetry formatted', tp.telemetry(human_readable = True))

# return only gyro and accel with timestamps, normalized to a single orientation and scaled to deg/s and m/s2
print('Normalized IMU', tp.normalized_imu())

Building

  • Setup virtual env: python -m venv .env ; source .env/bin/activate
  • Install maturin: pip install maturin
  • Build python wheels: maturin build --release
  • Resulting wheels will be in target/wheels/ directory
  • Install using pip: pip install telemetry_parser_py-0.1.0-cp39-none-win_amd64.whl

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts