Skip to main content

Load data about a video file into SQLite

Project description

video-to-sqlite

PyPI

Load data about a video file into SQLite

Installation

Install this tool using pip:

pip install video-to-sqlite

Usage

To create a SQLite database with metadata about a video, run:

video-to-sqlite videos.db my_video.mp4

The tool will create two tables: videos and frames. If videos.db already exists, the video will be added to the videos table.

To create the tables with a prefix, use --prefix prefix. For example:

video-to-sqlite videos.db cool_video.mp4 --prefix cool_

This will create tables called cool_videos and cool_frames.

Extra processing

Using the library programatically allows extra columns to be added to the database via a callback. Specify the callback argument to cli.main().

The function will be called once per frame in the video. It should accept a numpy ndarray as the single argument, and return a dict. The dict's keys will be added as columns to the DB, and values will be the corresponding values for that row.

An example:

import video_to_sqlite

def my_callback(frame):
    has_a_cat_in_it = ai_cat_image_detector(frame)
    return {'cat': has_a_cat_in_it}

video_to_sqlite.main('my_database.db', 'cool_video.mp4', 'cool_', my_callback)

See callback.py for a working example.

video-to-sqlite --help

Usage: video-to-sqlite DB_PATH VIDEO_FILE PREFIX

  Load data about Python packages from PyPI into SQLite

  Usage example:

      video-to-sqlite videos.db my_video.mp4 my_

  Created tables will be videos and frames

  To create tables called cool_videos, cool_frames use
  --prefix cool_:

      video-to-sqlite videos.db my_video.mp4 --prefix cool_

Options:
  --version            Show the version and exit.
  --prefix TEXT        Prefix to use for the created database tables
  --help               Show this message and exit.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

video-to-sqlite-0.0.2.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

video_to_sqlite-0.0.2-py3-none-any.whl (6.0 kB view details)

Uploaded Python 3

File details

Details for the file video-to-sqlite-0.0.2.tar.gz.

File metadata

  • Download URL: video-to-sqlite-0.0.2.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for video-to-sqlite-0.0.2.tar.gz
Algorithm Hash digest
SHA256 f2f49080492603ea7330613382aaa838839ebf72ceed26d087250c743b0a2fa9
MD5 0b61d2d636da4f983d9b777bb1efa3a2
BLAKE2b-256 74fd01bf3c4eeb0f7ccbb88b8fa3c60e146c1c84294358ca1c88cf377a49222e

See more details on using hashes here.

File details

Details for the file video_to_sqlite-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for video_to_sqlite-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 697163c93fcf9f9416514d9bde97878f6a3ed627714db718429e50d8a1ca0196
MD5 b3c3da1bcd0dff29e0ece944b3871971
BLAKE2b-256 ea73e756a9cf2fa2d4fbc22050265234c5dd5169bdd676d8e1b7ed437af61ab9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page