Skip to main content

A cython implementation of an ffmpeg based player.

Project description

FFPyPlayer is a python binding for the FFmpeg library for playing and writing media files.

For more information: https://matham.github.io/ffpyplayer/index.html

To install: https://matham.github.io/ffpyplayer/installation.html

TravisCI status Appveyor status Supported Python versions Latest Version on PyPI

Usage example

Playing a file:

>>> from ffpyplayer.player import MediaPlayer
>>> import time

>>> player = MediaPlayer(filename)
>>> val = ''
>>> while val != 'eof':
...     frame, val = player.get_frame()
...     if val != 'eof' and frame is not None:
...         img, t = frame
...         # display img

Writing a video file:

>>> from ffpyplayer.writer import MediaWriter
>>> from ffpyplayer.pic import Image

>>> w, h = 640, 480
>>> # write at 5 fps.
>>> out_opts = {'pix_fmt_in':'rgb24', 'width_in':w, 'height_in':h,
...     'codec':'rawvideo', 'frame_rate':(5, 1)}
>>> writer = MediaWriter('output.avi', [out_opts])

>>> # Construct image
>>> size = w * h * 3
>>> buf = bytearray([int(x * 255 / size) for x in range(size)])
>>> img = Image(plane_buffers=[buf], pix_fmt='rgb24', size=(w, h))

>>> for i in range(20):
...     writer.write_frame(img=img, pts=i / 5., stream=0)

Converting images:

>>> from ffpyplayer.pic import Image, SWScale
>>> w, h = 500, 100
>>> size = w * h * 3
>>> buf = bytearray([int(x * 255 / size) for x in range(size)])

>>> img = Image(plane_buffers=[buf], pix_fmt='rgb24', size=(w, h))
>>> sws = SWScale(w, h, img.get_pixel_format(), ofmt='yuv420p')

>>> img2 = sws.scale(img)
>>> img2.get_pixel_format()
'yuv420p'
>>> planes = img2.to_bytearray()
>>> map(len, planes)
[50000, 12500, 12500, 0]

Download files

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

Source Distribution

ffpyplayer-4.5.3.tar.gz (89.1 kB view details)

Uploaded Source

Built Distributions

ffpyplayer-4.5.3-cp313-cp313-win_amd64.whl (61.0 MB view details)

Uploaded CPython 3.13Windows x86-64

ffpyplayer-4.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ffpyplayer-4.5.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (28.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ffpyplayer-4.5.3-cp313-cp313-macosx_11_0_arm64.whl (18.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ffpyplayer-4.5.3-cp313-cp313-macosx_10_13_x86_64.whl (20.3 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ffpyplayer-4.5.3-cp313-cp313-macosx_10_13_universal2.whl (38.3 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

ffpyplayer-4.5.3-cp312-cp312-win_amd64.whl (61.0 MB view details)

Uploaded CPython 3.12Windows x86-64

ffpyplayer-4.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ffpyplayer-4.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (28.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ffpyplayer-4.5.3-cp312-cp312-macosx_11_0_arm64.whl (18.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ffpyplayer-4.5.3-cp312-cp312-macosx_10_13_x86_64.whl (20.3 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ffpyplayer-4.5.3-cp312-cp312-macosx_10_13_universal2.whl (38.3 MB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

ffpyplayer-4.5.3-cp311-cp311-win_amd64.whl (61.0 MB view details)

Uploaded CPython 3.11Windows x86-64

ffpyplayer-4.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ffpyplayer-4.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (28.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ffpyplayer-4.5.3-cp311-cp311-macosx_11_0_arm64.whl (18.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ffpyplayer-4.5.3-cp311-cp311-macosx_10_13_x86_64.whl (20.3 MB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

ffpyplayer-4.5.3-cp311-cp311-macosx_10_13_universal2.whl (38.3 MB view details)

Uploaded CPython 3.11macOS 10.13+ universal2 (ARM64, x86-64)

ffpyplayer-4.5.3-cp310-cp310-win_amd64.whl (61.0 MB view details)

Uploaded CPython 3.10Windows x86-64

ffpyplayer-4.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ffpyplayer-4.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (27.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ffpyplayer-4.5.3-cp310-cp310-macosx_11_0_arm64.whl (18.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ffpyplayer-4.5.3-cp310-cp310-macosx_10_13_x86_64.whl (20.3 MB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

ffpyplayer-4.5.3-cp310-cp310-macosx_10_13_universal2.whl (38.3 MB view details)

Uploaded CPython 3.10macOS 10.13+ universal2 (ARM64, x86-64)

ffpyplayer-4.5.3-cp39-cp39-win_amd64.whl (61.0 MB view details)

Uploaded CPython 3.9Windows x86-64

ffpyplayer-4.5.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ffpyplayer-4.5.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (27.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

ffpyplayer-4.5.3-cp39-cp39-macosx_11_0_arm64.whl (18.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ffpyplayer-4.5.3-cp39-cp39-macosx_10_13_x86_64.whl (20.3 MB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

ffpyplayer-4.5.3-cp39-cp39-macosx_10_13_universal2.whl (38.3 MB view details)

Uploaded CPython 3.9macOS 10.13+ universal2 (ARM64, x86-64)

File details

Details for the file ffpyplayer-4.5.3.tar.gz.

File metadata

  • Download URL: ffpyplayer-4.5.3.tar.gz
  • Upload date:
  • Size: 89.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for ffpyplayer-4.5.3.tar.gz
Algorithm Hash digest
SHA256 8b9623e04997ba7bbf5476313aa8d9eae2665c65f403b5deff4ac51f16155e7e
MD5 078868fbc2e6a82c3530dd0dc0ddc1be
BLAKE2b-256 8a04bbb7a314c526d1aa055057c243de36ebce8d2828dabe1f2b96a9e3c53157

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ffpyplayer-4.5.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 61.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for ffpyplayer-4.5.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2dc1dc9dc6fddc7812c8451e14544aa01ecdaaee8c2ca705187925c3ff75d12d
MD5 1639a01f1b1b2928761dd5f5464fb2c8
BLAKE2b-256 98c36ee450f9a27be85be648f46b38997b3942f513e14c0959cd203ab11bacf0

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 586b04cd59b1bc3a759d9772de281172480e166778693474249ae1e1254a427f
MD5 6a2bb0e40678981c2e5619734b24d15e
BLAKE2b-256 e2ab2fc7817e12e0498a17b3fd86710ff32252df73e32cce8cbb5c4780063875

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e012cc1c943570009fad024a675bdf43b31e8e1d0c0709715e611bdf5ab3959
MD5 0ca72561acb7e6f89012079d6fd1181a
BLAKE2b-256 bf628bd52cce95d8844208003c8141cf945861249fef6349e2576dc00378013f

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50917a4b25fd648ed76991d1703cd5940bcce9b3b0e824108483b2f4fce244f9
MD5 c5dd39e47c21c1ca0075e7780c52c58d
BLAKE2b-256 3958aa5a1e54e371d70f05c84d4f25a7fd19efd791a9b71d18fafee48756a67d

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 549151bb125c9f2a6d7ebddf62290459a1624cf1a9562e78ff07ead537fdbbae
MD5 504b80c731e6b5c7d2441c63c128b088
BLAKE2b-256 adad42ef5792179d57b8a70e0129bdb41a741ed0865bf0ddb134c34dfe89b630

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 441888f42b76dbd7c3005f44d7145f713a1d8ce23351bbc480b9fa05e4662afb
MD5 684e25c3a59ecfb1abe674efb3f6e1c3
BLAKE2b-256 1f701f3d79162dffd0832d092756fb5bf36f6e91ea11a8c5f9c58d4ab0b11daf

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ffpyplayer-4.5.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 61.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for ffpyplayer-4.5.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7eefb1060e2df8534eec245e1f7e228b4b53853a0b4f508a124b4b83c6f2c56c
MD5 1faa738475e88e88c07cebc242249664
BLAKE2b-256 bff873ceb1830f1ba37ab44167214717947db0a2ca1678a1ba31906e3ad7869c

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b92f2b399b25404b688093b605109ef647a7b4314d6bbb24a81c738646e77b87
MD5 ad7401e60b22c03dc242889d4db645de
BLAKE2b-256 466eaf8d576777dae551fbf7061fc300a8bbc462d7c36a7c3e01938cd77f0867

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2545160450f8dacb1de0f37b2438a61a301610a1f50c1878edf87d19ed9782a1
MD5 3776b30c36263d4d0b44ac1ca316bd6f
BLAKE2b-256 3dacef562054a5a5120d8a1cca38f652b55062154bb9c20e57a8e5d9f50b1641

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c79aa4c82b414689377b1e0111c61b12c8b2b3b0ed961670ec5f1fbd873b967
MD5 3e22aab2e7e62daf1e034d23b2d60328
BLAKE2b-256 3eb61608abf09e0c0b3c9a68c7a2b64655beb8e4620a084527fa6fa60e61bee2

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bb4bd6d9d1ee37cfe8f470aa9b49dc79f1b4761c2c5b44e4784740c8efb8cc22
MD5 c612af8f5ef215fd30788fbd92306886
BLAKE2b-256 8a19e080682db8bd706e87bf516dc96452d9af78cc024dfcf52e7f52eea92250

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 666bfed646b52014895f30c8d9d10b416a616911ae496a643f9980b45cc24b74
MD5 1d0cd939cbda5729bb7bad5f42206b5d
BLAKE2b-256 30c1d8619d7056b6e1b093727f8549339603acc271a127a7fdd374b649ffcb0e

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ffpyplayer-4.5.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 61.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for ffpyplayer-4.5.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3e613fe88c2fd1f3f7c9f84b3e153c90b1222f7e4dbf92a280d449c6217256bf
MD5 e599ab1e942e33403be985aa85d89039
BLAKE2b-256 5446a1c88f27fb03a8fa9f36ff9d0a98259028c9e8261a77b6b65d7a1a5bcf0b

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29490c57b86c5e48ed0d12c974ca83ee4dd7d2cc360f400115e64e8afb4436ef
MD5 55589ec07becedc7cddabafe3078d589
BLAKE2b-256 1b9a4fe815abda74043465575cc52242db4f8a2d88a59123ed04de8f8fb7a6b7

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2d4f6c779ae5038e321e84e1da7570f9ea9ae3d7993054c60ad1338c2d5da38
MD5 4fd1b86348f898067dd0bba74e4a4b43
BLAKE2b-256 e81200b1d9c3801dc7ff450f08202b2e9e46fae2f512331c9a5eb67a0598555a

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b592ee9f6c71ba8d768ebc032ce30e3aaeff3be3c4cba2fcf7fed4a36071f169
MD5 06484c221b8f9330373aafedfa098125
BLAKE2b-256 f3e99d4bdf1516d6593dfd447efced34030e5f5e51770fee1aef3b0d1c969bef

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a5728d1b3e4a2e449893b766eab4e35fcccb1e6e53a2c3321bf745f1a86c27cf
MD5 94c6b80f707cd2f4ebf4385505691c2f
BLAKE2b-256 df3203d63ed11d9d6bec683a85ddf1a8b3b17f25d3a1b71e31d9975ea6af294a

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp311-cp311-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp311-cp311-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 7c9799e86a4c197c647e3ece6a8a1d026b2deb21e0a5b5bffbf49eac2a876168
MD5 fd326e4033a2d43e153f799d41eed250
BLAKE2b-256 80548a77e5868569915e059adad6f4f80d77532eacf31c0522bebe05552c5a71

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ffpyplayer-4.5.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 61.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.11

File hashes

Hashes for ffpyplayer-4.5.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 73caa0c12ce57dfa033280e9b4b3dfb7965d15c18f190b56d57b16b4b014c3b9
MD5 1848d4d3ef1ccab3f6b53e96ea78dc12
BLAKE2b-256 2b704db140644c6f73efe3df1f9787502749065c6982a98c12060a63ac2e0b32

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa7d590016e95258dcbe82e972a2bea0fea1ec408cbd9f19e710bfcde6b4a397
MD5 159c994abbd3353511d78a19a9968984
BLAKE2b-256 36dd98ef3692717d964901280a084b200c472b52d0402a92999b415d61e9adc3

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4343948aa3f031e3ba44593587b81f89ce15f8c756cad3d52fc75df1d71b02a0
MD5 e2e0c761a8e96749b249a3370bef4a64
BLAKE2b-256 ae9f882919be0471af12ae7328e9e7969f678394cee3143faf2fb4416fe58fe6

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0db8f81229c5f53e3c4cd60b378b5ecd6a9c40edde12e7f64eab67a52bd49ec3
MD5 c0b9bf840cc5c5287f88af4e0eced59d
BLAKE2b-256 059aa067edbf8414bb7e3b0ef4d4e2c1958184e5386299debfb6570175f27563

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3a5fbae10ce1de3946856dc19937daae3631c076ee98c248d4d889be8ca06320
MD5 dcc4c8cb790cfcd69269e6387b844462
BLAKE2b-256 f8ce9b1e1edfb1ea364df5b98d6b4ea205e703ab4a94b6900b2f8b9a7386d0c2

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp310-cp310-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp310-cp310-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9c8cc4bbbfe5f01ab0568a941927972310b63fad4663f8c08712c25d23b2a8e8
MD5 a61626772ec84e989b123466f0c2745a
BLAKE2b-256 5b2a8bbffd8dd39422dd7c20a8d71156a092a0b99b1792a4698e811e7d96585d

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: ffpyplayer-4.5.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 61.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.13

File hashes

Hashes for ffpyplayer-4.5.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0335ee8e0c603799a2b76cd8e125632942f48990ee55c9747c5541744184b218
MD5 3f559fc4d75d2f2ac79fc85bfd840ec1
BLAKE2b-256 7c3d6915bebfd55e913d95409d9586a895af1ec33ad417b522a8eac3934cc736

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f37e5eba45bbf042a4756e72f4621864f51f949399960037438171a4bd47675b
MD5 0213a49921fc259a6e284b929c632833
BLAKE2b-256 cce4e055137e445ffabda385cd35d297d8c7ea6c1b48f78588775e9917dc1839

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ddb132009b3109e6d6978bd5c89b1d9ca04c19966fe2bebd4a1cccf2ff8bbab
MD5 633d9115ca0490eaa633cba658787901
BLAKE2b-256 e112c38487c16ba0bf08ecabb070eacc6bbc3c922be2617ab7878fa67af7186c

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f750f0b9e1274bf4db89ef1c83681f40474a37636a76ebfdb729ff99611de66c
MD5 470f05aac3225ffa0442c6f3dfef46b2
BLAKE2b-256 dc05197fa95f8fe669bb7ae3a0dcf44ecd6fdea31703e660e41b3d00bd6af605

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 951e65db450aec868df31c84b2d8b10ed854f80688f7360d829d641709917067
MD5 73f35b89925a3f0dccc8ee1f92293396
BLAKE2b-256 c755b06f4cf7c76208a4e8034cc1ffe2ec481ecfac5e56ca3c18b11c75eb8161

See more details on using hashes here.

File details

Details for the file ffpyplayer-4.5.3-cp39-cp39-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.3-cp39-cp39-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 6ab4283201c6e07fd976f830ae0fb96157d904c33e5366415b50fcdec80a3247
MD5 504567549115377704a8a06b2e809397
BLAKE2b-256 b28700ad2cead3ee272822052a3c39ab85dabff323e5b1d0efe66268e9479b1c

See more details on using hashes here.

Supported by

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