Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

example usage of media callbacks #138

Merged
merged 4 commits into from Jun 4, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
160 changes: 160 additions & 0 deletions examples/play_buffer.py
@@ -0,0 +1,160 @@
#!/usr/bin/env python3

import argparse
import ctypes as ct
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This saves 4 bytes, but hampers readability. I think it would be nice to keep a plain import ctypes

import os

import vlc

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would help to have some docstring here, explaining the overall goal of the example and describing in simple sentences how it works, and the APIs it uses.

class StreamProviderDir(object):
def __init__(self, rootpath, file_ext):
self._media_files = []
self._rootpath = rootpath
self._file_ext = file_ext
self._index = 0

def open(self):
"""
this function is responsible of opening the media.
it could have been done in the __init__, but it is just an example

in this case it scan the specified folder, but it could also scan a
remote url or whatever you prefer.
"""

print("read file list")
for entry in os.listdir(self._rootpath):
if os.path.splitext(entry)[1] == f".{self._file_ext}":
self._media_files.append(os.path.join(self._rootpath, entry))
self._media_files.sort()

print("playlist:")
for index,media_file in enumerate(self._media_files):
print(f"[{index}] {media_file}")

def release_resources(self):
"""
In this example this function is just a placeholder,
in a more complex example this may release resources after the usage,
e.g. closing the socket from where we retrieved media data
"""
print("releasing stream provider")

def seek(self, offset):
"""
Again, a placeholder, not useful for the example
"""
print(f"requested seek with offset=", offset)

def get_data(self):
"""
It reads the current file in the list and returns the binary data
In this example it reads from file, but it could have downloaded data from an url
"""
print(f"reading file [{self._index}] ", end='')

if self._index == len(self._media_files):
print("file list is over")
return b''

print(f"{self._media_files[self._index]}")
with open(self._media_files[self._index], 'rb') as stream:
data = stream.read()

self._index = self._index + 1

return data


# HERE THERE ARE THE CALLBACKS USED BY THE MEDIA CREATED IN THE "MAIN"
# a callback in its simplest form is a python function decorated with the specific @vlc.CallbackDecorators.*

@vlc.CallbackDecorators.MediaOpenCb
def media_open_cb(opaque, data_pointer, size_pointer):
print("OPEN", opaque, data_pointer, size_pointer)

stream_provider = ct.cast(opaque, ct.POINTER(ct.py_object)).contents.value

stream_provider.open()

data_pointer.contents.value = opaque
size_pointer.value = 1 ** 64 - 1

return 0

@vlc.CallbackDecorators.MediaReadCb
def media_read_cb(opaque, buffer, length):
print("READ", opaque, buffer, length)

stream_provider = ct.cast(opaque, ct.POINTER(ct.py_object)).contents.value

new_data = stream_provider.get_data()
bytes_read = len(new_data)

if bytes_read > 0:
buffer_array = ct.cast(buffer, ct.POINTER(ct.c_char * bytes_read))
for index, b in enumerate(new_data):
buffer_array.contents[index] = ct.c_char(b)

print(f"just read f{bytes_read}B")
return bytes_read

@vlc.CallbackDecorators.MediaSeekCb
def media_seek_cb(opaque, offset):
print("SEEK", opaque, offset)

stream_provider = ct.cast(opaque, ct.POINTER(ct.py_object)).contents.value

stream_proivder.seek(offset)

return 0

@vlc.CallbackDecorators.MediaCloseCb
def media_close_cb(opaque):
print("CLOSE", opaque)

stream_provider = ct.cast(opaque, ct.POINTER(ct.py_object)).contents.value

stream_provider.release_resources()


# MAIN
if __name__ == '__main__':
parser = argparse.ArgumentParser(
description='play files found in specified media folder (in alphabetic order)',
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument(
'media_folder',
help='where to find files to play')
parser.add_argument(
'--extension',
default='ts',
help='file extension of the files to play')
args = parser.parse_args()

# helper object acting as media data provider
# it is just to highlight how the opaque pointer in the callback can be used
# and that the logic can be isolated from the callbacks
stream_provider = StreamProviderDir(args.media_folder, args.extension)

# these two lines to highlight how to pass a python object using ctypes
# it is verbose, but you can see the steps required
stream_provider_obj = ct.py_object(stream_provider)
stream_provider_ptr = ct.byref(stream_provider_obj)

# create an instance of vlc
instance = vlc.Instance()

# setup the callbacks for the media
media = instance.media_new_callbacks(
media_open_cb,
media_read_cb,
media_seek_cb,
media_close_cb,
stream_provider_ptr)
player = media.player_new_from_media()

# play/stop
player.play()
input("press enter to quit")
player.stop()