A Python client wrapper for the video streaming receiver Fcast.
Project description
FCAST_Client Wrapper Documentation
This is a Python client wrapper for the video streaming receiver found at fcast on GitLab. The FCAST_Client class provides an easy-to-use interface to communicate with the reciever and control video playback.
Installation
Ensure you have Python installed and the required libraries. This wrapper uses the socket, json, and struct libraries which are part of the Python standard library.
Usage
First, create an instance of the FCAST_Client:
client = FCAST_Client(host="your_host_here", port=46899)
Methods
play
Plays a video.
client.play(container="video/mp4", url="http://example.com/video.mp4")
Parameters:
container: The MIME type (e.g., "video/mp4").url: The URL to load (optional).content: The content to load (e.g., a DASH manifest, optional).time: The time to start playing in seconds (optional).
pause
Pauses the video.
client.pause()
resume
Resumes the video.
client.resume()
stop
Stops the video.
client.stop()
seek
Seeks to a specific time in the video.
client.seek(time=120) # Seeks to 2 minutes into the video.
Parameters:
time: The time to seek to in seconds.
set_volume
Sets the volume of the video.
client.set_volume(volume=0.5) # Sets the volume to 50%.
Parameters:
volume: The volume level (0.0 - 1.0).
close
Closes the connection to the reciever.
client.close()
Example of Usage with fcast
To use the FCAST_Client wrapper with the fcast reciever, follow the steps below:
-
Ensure the
fcastreciever is running and listening on the desired host and port. -
Create an instance of the
FCAST_Clientand connect to thefcastreciever:
from fcast import FCAST_Client
# Replace with the appropriate host and port of your fcast reciever
client = FCAST_Client(host="your_host_here", port=46899)
- Play a video:
# Play a video from a URL
client.play(container="video/mp4", url="http://example.com/video.mp4")
- Control the video playback:
import time
# Pause the video after 5 seconds
time.sleep(5)
client.pause()
# Resume playback after another 5 seconds
time.sleep(5)
client.resume()
# Seek to 2 minutes into the video after 5 seconds
time.sleep(5)
client.seek(time=120)
# Adjust the volume to 50%
client.set_volume(volume=0.5)
- Once done, close the connection:
client.close()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fcast_client-0.3.tar.gz.
File metadata
- Download URL: fcast_client-0.3.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5bd815598c775553f0780c465f0f0adafdb4ecc07ad7f3b3f030d9c24aac007d
|
|
| MD5 |
49ece94f3aebb2cd36f5f5ebeecce4da
|
|
| BLAKE2b-256 |
20dc4699d25f79367c10b6635a70381366c503f529d150f6797acbc6d68950a4
|
File details
Details for the file fcast_client-0.3-py3-none-any.whl.
File metadata
- Download URL: fcast_client-0.3-py3-none-any.whl
- Upload date:
- Size: 3.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f0ebd90a142d3e3fe26ba51a4797650644837207d77b9f1d79f3eb59e436add
|
|
| MD5 |
711fa92b6b08492556d0079ee3f3cf67
|
|
| BLAKE2b-256 |
d6266bad0c15118f55d55ef7e293a740e760168f5634841683104c8392b2c23d
|