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.2.tar.gz (88.9 kB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13 Windows x86-64

ffpyplayer-4.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.6 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.13 macOS 10.13+ x86-64

ffpyplayer-4.5.2-cp313-cp313-macosx_10_13_universal2.whl (38.4 MB view details)

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

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

Uploaded CPython 3.12 Windows x86-64

ffpyplayer-4.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.13+ x86-64

ffpyplayer-4.5.2-cp312-cp312-macosx_10_13_universal2.whl (38.4 MB view details)

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

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

Uploaded CPython 3.11 Windows x86-64

ffpyplayer-4.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.13+ x86-64

ffpyplayer-4.5.2-cp311-cp311-macosx_10_13_universal2.whl (38.4 MB view details)

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

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

Uploaded CPython 3.10 Windows x86-64

ffpyplayer-4.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.13+ x86-64

ffpyplayer-4.5.2-cp310-cp310-macosx_10_13_universal2.whl (38.4 MB view details)

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

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

Uploaded CPython 3.9 Windows x86-64

ffpyplayer-4.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.13+ x86-64

ffpyplayer-4.5.2-cp39-cp39-macosx_10_13_universal2.whl (38.4 MB view details)

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

ffpyplayer-4.5.2-cp38-cp38-win_amd64.whl (61.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

ffpyplayer-4.5.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

ffpyplayer-4.5.2-cp38-cp38-macosx_11_0_arm64.whl (18.1 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

ffpyplayer-4.5.2-cp38-cp38-macosx_10_13_x86_64.whl (20.3 MB view details)

Uploaded CPython 3.8 macOS 10.13+ x86-64

ffpyplayer-4.5.2-cp38-cp38-macosx_10_13_universal2.whl (38.4 MB view details)

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

ffpyplayer-4.5.2-cp37-cp37m-win_amd64.whl (61.0 MB view details)

Uploaded CPython 3.7m Windows x86-64

ffpyplayer-4.5.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

ffpyplayer-4.5.2-cp37-cp37m-macosx_10_13_x86_64.whl (20.3 MB view details)

Uploaded CPython 3.7m macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: ffpyplayer-4.5.2.tar.gz
  • Upload date:
  • Size: 88.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for ffpyplayer-4.5.2.tar.gz
Algorithm Hash digest
SHA256 f9affdc12ebba4649f116973b9e4e057d06761bc63758594a91ec85f168752fe
MD5 1ffe90ed26cdb1e9d197ed58cae0a087
BLAKE2b-256 e1799312fdca7165231323a80a817d53ce90c614fe29208fe0f9608d484ac591

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cf934b5832919b672fe1cfac0bcd44317866118ebaa3148f9beb9037e722f38e
MD5 925f429f2f850bba16598c266e32c7b9
BLAKE2b-256 38096b6a3869053e3eb35f35e42ea26614606fef7c70f166992766be507f365c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fba6a26d622632f35ee8634ffc94a8b3441026af0d67b5f8bfe330a42e013c5c
MD5 62173b6a493016851723171b1f50c363
BLAKE2b-256 2cfaf56081a541c10c8c00fa5f62a9e376738a5e1f9de313e9b9b4ac579bfbef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28dfa5f95e7cf91a3ccd500d5cd3216a038f21fa73e8bd90a8e29fa43123331c
MD5 d410b7fde920cda0685a4456507af704
BLAKE2b-256 0ae4f54c66c0f75c96c67674b8f5e7eb588a2c251b44d9c56133a5a869553abb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 083d84282da799b4b6145e49e0d22075be6ff5054723cedde8ddfd1b733a656e
MD5 5bf4e0bae0febb8ab58e6500a40b3226
BLAKE2b-256 52dc9ebb05702b3c9e423ebe8979c20841b2edf5a0f54451c734e1f8470ceebd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 98fbe080f8bc29b382b8ba87c711cf72fa92b7704659582c2e54c8154f2696c5
MD5 b2fe01dfa50fe455894826c85b87bfbd
BLAKE2b-256 1b998414d7470943b551274cfd0ed0bd760d5e7ccce0edd772d55e3cb135838a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 616b6d0664f6f63e462acaba23bbfdf83fcc0e5035f728a6b5baaa0b4ad46acb
MD5 98066f630d4ce3a95b1997c5b17952b4
BLAKE2b-256 4333eb6a57fd87ccbd98ab3b0961ce0a83bc762641ccbabba9300adb5b2241fa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 adf326af7720208518315e0e55dfc52511f45b27f36947968d698027e9994e12
MD5 19bad0fab26e5594380da8b04feb9740
BLAKE2b-256 5fcce99a091a6eef6c00746d8fbebc90115b06dc968f22183161aa7ccf642636

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79b7df8fb0b95b0fe53a6a1ec65b3648db4f25e674506defdb3a3ce26cc93493
MD5 3d8ce085e590e67f8dad20eff752bf33
BLAKE2b-256 0d0e0d333c5b1cd858f9925dadebdaeac1d28dacd628b92124935daaa93cc5cb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9b7660853896a2d3bcba7684e5351975949bbdc537aaa56926b6e3be1be74726
MD5 4708272588607efe89daafc13dde9d6f
BLAKE2b-256 a7786849a99205899c5c8c7f8073d2376c9c2ce6742b8f45f9671cd8bc4af120

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 6f81da5265bbd827805c46a5ee3b8770c4b6c4a6ec6774f85dc608c23873f4ea
MD5 2b194b1748edca81cdacf150f08d7194
BLAKE2b-256 6a4c6333fe2ae84541aa8d840db722a0564aff268b921a82b63ba2c2f50d54f4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 866affd631ad98e34c3423137fc02b5b00224118318df8c9b2c5462889eee582
MD5 3734bd1ab0e1d8e6c10f5f6f1936eb72
BLAKE2b-256 206b7aa8804a30f3c87fdc7d0ec3215fe1628449db6e925af86050be76b2cd14

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb75d0ad5d6accd302032db22c07639a955dee7d1fb172490b8b2f8c4f4fd685
MD5 83c164a749e6b884a172a74b63a2dc92
BLAKE2b-256 e89a2738989628e482609138e404089e3b51cfa2ac26e40dd4fded72efd427da

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98ab4840778739f81fe449945db154e9a0b76d524d918d51b467a4d23b37ed4e
MD5 5007e911eacd666dea59dd7a135097d7
BLAKE2b-256 a9b4f79a6a3cd60d22b3d9d3831faf4d45c8c308bc7bb338e16791e6d0efd255

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e08736070655f4fdd56a187f8bd41837bdb63d3f12a687979e29ce1b1e436919
MD5 89d9679c72e394a63ad48568054dee91
BLAKE2b-256 45a4e5d4d2480b12ea409df5990bb656f31a44ca49ab1d6de4e56c6db1a3b181

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp311-cp311-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 8ebb6ba7c5464b5dfb0e335c76845ebee84aabdd4172b7d946868204b35c6f06
MD5 57b86227400b7a5997f9661b32c51d84
BLAKE2b-256 ba2604f485c47d71a0f80259bbc5fb29db7cc1869375da4a2a47719ee491915e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 89224e7d4642ceb18f9f19e3c8e9f9cab1f1849af04f7f7dc553234783e4720c
MD5 7652e4aa05a5ee6ed380d6ac74221981
BLAKE2b-256 231291656070e8c84b5e18088f93e66e22e0acfc2ae000d55cc5378f3780ed89

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ea1b98d4ddffaaa01e519edbf0f67d4759ba100ad09b0f4dce5c21584b493b0
MD5 6406dfa4aed661ed21773235c7812fa1
BLAKE2b-256 4c03f83daf08f6937e241893a22e27457016aefddd8d1d8685ce98ebc9f0f645

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e4aa2dcca53ad445519bda58a7e6b8b808aa5f272eaa92a26f2e4ab152cdf65
MD5 369947118f9411adcd7eb7d1297bd3a4
BLAKE2b-256 e9318e665be12992c93527fad3c7e52ac3b7bbf826117e53e6f56b8b690224e3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6d51ccd761db50a248f2164eb65d352f7ce90ab747e6f1fd06bd3e2cb4702f75
MD5 3b22b0cb0fc11b3ea7b87f661bbbb2bf
BLAKE2b-256 0f6c4d3d06ac0f0c748c10dfe96905a669df054e97a9bdd26157606759255f6b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp310-cp310-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 5d5ccd2bad0884c4e711dfd55f369733f33f8a6fdffda8b48bf02f1212e8cc7a
MD5 1bf41998caaeada541bc72bfdf19e1fa
BLAKE2b-256 0ba9072852acc54e04f2d815f3a90e2a40d064c1cca0ff769361baf3919809b3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2e4bd6b1fd527c0472a57ace0ec0d76fbc23ca549041ecc19c83f99e75f46b62
MD5 5875d6c48074b81f2a621ea76b673ef5
BLAKE2b-256 ba31541fb12ae10fc2933c5ec1ab2f545b6b3f25b333215a8d64b7ce81caa7e6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa47757a9f4f8eb934fea49bddd6de50f64d16274fe16188841ee9802bb2d811
MD5 04ec7b3cbd6c9e75d45c351fe5c40069
BLAKE2b-256 a4398fdc979c2fd2964dfe0124c8789e40374ccd7472dbb7f305293ee709a464

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbfbfe02cb65aff35fcce93694904a0cfd7c6841a497aa7f2ba48caa276523a5
MD5 af6c046cbabceae4532be2540123f840
BLAKE2b-256 55b10c1629a562fae687e61aa0648257b241504b927fc65c3385c805efc5709c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fa74b94a62bf5cbb36e4b58169110fd33c06effc65d3d4556388d6cb6e816ba5
MD5 3663fbf9e6a1fde38f6f3f9b8d152b75
BLAKE2b-256 5fc214e1d298f72b93819da84d3c18285816cca783748f19002853a5d86fdf9b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp39-cp39-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f0fbbb07f62dd3746cfd99cfcf02391c5dc1b1c78943e52eecea41fa24c86ff8
MD5 f63bde894f604c7d84e5de35e7a2af0c
BLAKE2b-256 5c637164da5e01397387f37a926dbce7fe2fb665fd3123d55e4098baa4b9913a

See more details on using hashes here.

Provenance

File details

Details for the file ffpyplayer-4.5.2-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 59c194816583323e9a6ba82d3c8ee7c4a60e09613b4a2486ceae03215b4a9e1f
MD5 e1f971a0090c3a598534ec262edb7fdb
BLAKE2b-256 7c5d04d796832373e676917f13ccae4a19fc22ea93a965d10b3457af8bfff99e

See more details on using hashes here.

Provenance

File details

Details for the file ffpyplayer-4.5.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a23372c7a0c3174ddcf2b490f5695ca758bf69b06271f948ab67e9148ca565e1
MD5 161c7d7993693052d4b8e3c788cf2bba
BLAKE2b-256 96fc85e374d2f224cf8a6fc13b6783a7c60a25ca33410d602e7e26f76e07e231

See more details on using hashes here.

Provenance

File details

Details for the file ffpyplayer-4.5.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 779dbcc9f74da27fa34cf6651f86fd6b86906ef3f825dda852eb59f7eb901f54
MD5 a66c62e44ad370ffdbf9028ccf4028ea
BLAKE2b-256 f80297ea26e9007266acb2cd973c129c7e2ab3bb40ccfde6187029d97dadb92c

See more details on using hashes here.

Provenance

File details

Details for the file ffpyplayer-4.5.2-cp38-cp38-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1efcd1eb73512f12456609e609ca1282dd120ecb39aeb2246f0d48002861d99e
MD5 d0d2e8f01154a53e680389779f8262e1
BLAKE2b-256 9dfdca30631e156c67ac5caa5babbccd086f01d17785bcfdbaa297994158ef74

See more details on using hashes here.

Provenance

File details

Details for the file ffpyplayer-4.5.2-cp38-cp38-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp38-cp38-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e8008adada598b49a579fad28c6082348eed0c77581009657696276682fa30a5
MD5 58771e862736efcd64c07aa212e40eb2
BLAKE2b-256 c5cf7e43cc80eacf0d2d1314eb19142cf047280b6344914aa465788476a7451e

See more details on using hashes here.

Provenance

File details

Details for the file ffpyplayer-4.5.2-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 58cb6984846f240d8ba9e969b2d79af747578a56805880481ed8d99f26ce81dd
MD5 1c9faf403996eba789ed188876d820b3
BLAKE2b-256 4bee234e48ae45048e34d8620685bfd411f93f34b759048bdee696ca0fd20283

See more details on using hashes here.

Provenance

File details

Details for the file ffpyplayer-4.5.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f0d5fb1dc4d1b41ed0a5739862af7af9fe38dd0e52994369d5c2478a859c38d
MD5 472e86222e80925100139ad94cd96df2
BLAKE2b-256 4791426ba11f06d761c6eb29b8b98700294902154e101038cc84fa83f3fc88ad

See more details on using hashes here.

Provenance

File details

Details for the file ffpyplayer-4.5.2-cp37-cp37m-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ffpyplayer-4.5.2-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2fc4d0c64ae00d208036646831ce0aba7735d59a47b4cb4d775fbf9b91b8af00
MD5 d77e8aeacf9d6be42b10cca385d7d5d7
BLAKE2b-256 033bff3f1030ccb37b05ef9f39339a4b7a9829a34ac3b053254c41965f2b88bb

See more details on using hashes here.

Provenance

Supported by

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