Giter Site home page Giter Site logo

pyplaybin's Introduction

pyplaybin

This is a slightly higher-level wrapper for GStreamer's playbin element. It uses asyncio coroutines to wrap GStreamer's asynchronous calls. A simple media player using PyQt5 is provided as an example.

Dependencies

  • Python 3.4 at least (asyncio)
  • python-gi
  • GStreamer obviously

The example depends on

Simple example

import asyncio, signal
from pyplaybin import Playbin

@asyncio.coroutine
def start(filename):
    loop = asyncio.get_event_loop()
    bin = Playbin()

    @asyncio.coroutine
    def stopAll():
        yield from bin.stop()
        loop.stop()
    loop.add_signal_handler(signal.SIGINT, loop.create_task, stopAll())

    yield from bin.play(filename)
    print('== Subtitle tracks:')
    for track in bin.subtitle_tracks():
        print('  %s' % str(track))
    print('== Audio tracks:')
    for track in bin.audio_tracks():
        print('  %s' % str(track))
    print('Type Ctrl-C in the console to stop playback.')

Playbin.start_glib_loop()
loop = asyncio.get_event_loop()
loop.create_task(start('/home/jerome/test.mkv'))
try:
    loop.run_forever()
finally:
    Playbin.stop_glib_loop()

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.