Skip to main content

Web-ready standardized file processing and serialization. Read, load and convert to standard file types with a common interface.

Project description

MediaToolkit

Web-ready standardized file processing and serialization

Features

Read, load and convert to standard file types with a common interface. Especially useful for code that works with multiple file types like images, audio, video, etc.

Load and convert from and to common data types:

  • numpy arrays
  • file paths
  • bytes,
  • base64
  • json
  • urls
  • etc.

Transmit files between services with a common interface

Work with native python libs like BytesIO.

Only use the file types you need, no unnecessary dependencies.

Installation

You can install the package with PIP, or clone the repository.

# install from pypi
pip install media-toolkit
# install without dependencies: this is useful if you only need the basic functionality (working with files)
pip install media-toolkit --no-deps
# if you want to use certain file types, and convenience functions
pip install media-toolkit[VideoFile]  # or [AudioFile, VideoFile, ...]
# install from github for newest release
pip install git+git://github.com/SocAIty/media-toolkit

The package checks if you have missing dependencies for certain file types while using. Use the --no-deps flag for a minimal tiny pure python installation. The package with dependencies is quite small < 39kb itself.

Note: for VideoFile you will also need to install ffmpeg

Usage

Create a media-file from any data type

The library automatically detects the data type and loads it correctly.

from media_toolkit import MediaFile, ImageFile, AudioFile, VideoFile

# could be a path, url, base64, bytesio, file_handle, numpy array ...
arbitrary_data = "...."
# Instantiate an image file
new_file = ImageFile().from_any(arbitrary_data)

All files (ImageFile, AudioFile, VideoFile) types support the same interface / methods.

Explicitly load from a certain type.

This method is more secure than from_any, because it definitely uses the correct method to load the file.

new_file = MediaFile()

new_file.from_file("path/to/file")
new_file.from_file(open("path/to/file", "rb"))
new_file.from_numpy_array(my_array)
new_file.from_bytes(b'bytes')
new_file.from_base64('base64string')
new_file.from_starlette_upload_file(starlette_upload_file)

Convert to any format or write to file

Supports common serialization methods like bytes(), np.array(), dict()

my_file = ImageFile().from_file("path/to/my_image.png")

my_file.save("path/to/new_file.png")  
as_numpy_array = my_file.to_numpy_array()
as_numpy_array = np.array(my_file)

as_bytes = my_file.to_bytes()
as_bytes = bytes(my_file)
as_base64 = my_file.to_base64()
as_json = my_file.to_json()

Working with VideoFiles.

The VideoFiles wrap the famous vidgear package as well as pydub. VideoFiles support extra methods like audio extraction, combining video and audio. Vidgear is a powerful video processing library that supports many video formats and codecs and is known for fast video processing.

# load the video file
vf = VideoFile().from_file("test_files/test_vid_1.mp4")

# extract audio_file
vf.extract_audio("extracted_audio.mp3")

# stream the video
for img, audio in vf.to_video_stream(include_audio=True):
    cv2.imwrite("outtest.png", img)

# add audio to an videofile (supports files and numpy.array)
vf.add_audio("path/to/audio.mp3")

# create a video from a folder
VideoFile().from_dir("path/to/image_folder", audio=f"extracted_audio.mp3", frame_rate=30)

# create a video from a video stream
fromstream = VideoFile().from_video_stream(vf.to_video_stream(include_audio=True))

Web-features

We intent to make transmitting files between services as easy as possible. Here are some examples for services and clients.

FastTaskAPI - Services

The library supports the FastTaskAPI and FastSDK for easy file transmission between services. Simply use the files in the task_endpoint function definition and transmitted data will be converted. Check out the FastTaskAPI documentation for more information.

from fast_task_api import ImageFile, AudioFile, VideoFile

@app.task_endpoint("/my_file_upload")
def my_upload_image(image: ImageFile, audio: AudioFile, video: VideoFile):
    image_as_np_array = np.array(image)

fastAPI - services

You can use the files in fastapi and transform the starlette upload file to a MediaFile.

@app.post("/upload")
async def upload_file(file: UploadFile = File(...)):
    mf = ImageFile().from_starlette_upload_file(file)
    return {"filename": file.filename}

Client with: requests, httpx

To send a MediaFile to an openapi endpoint you can use the following method:

import httpx

my_media_file = ImageFile().from_file("path/to/my_image.png")
my_files = {
  "param_name": my_media_file.to_httpx_send_able_tuple()
  ...
}
response = httpx.Client().post(url, files=my_files)

How it works

If media-file is instantiated with from_* it converts it to an intermediate representation. The to_* methods then convert it to the desired format.

Currently the intermediate representation is supported in memory with (BytesIO).

ToDo:

  • additionally support tempfile backend instead of working bytesio memory mode only.
  • decreasing redundancies for _file_info() method

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

media_toolkit-0.1.2.tar.gz (33.1 kB view details)

Uploaded Source

Built Distribution

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

media_toolkit-0.1.2-py3-none-any.whl (34.3 kB view details)

Uploaded Python 3

File details

Details for the file media_toolkit-0.1.2.tar.gz.

File metadata

  • Download URL: media_toolkit-0.1.2.tar.gz
  • Upload date:
  • Size: 33.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for media_toolkit-0.1.2.tar.gz
Algorithm Hash digest
SHA256 6520d6c45e19e30be59a8dee84cbfe6dbad8c5a4d6ed627f79c65e1295e1ed57
MD5 b36bdca9a2db63dd301579583673a2b6
BLAKE2b-256 7ae0a7e5d813b7e01a7f98b9a3845431d3b8118d6d5f9e947a8739ca3c258cf5

See more details on using hashes here.

File details

Details for the file media_toolkit-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: media_toolkit-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for media_toolkit-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 673fe3cd904863e24bf6536e73da1b1f2e09c98a2d5070116f99f1df2d72bd6e
MD5 d8d01f261f9c83d0d7229c0ea48eb1f7
BLAKE2b-256 05bf94002ff33a93c0593f27ac5b38a1d890e42407c4f6028e0b913354d62aad

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