#!/usr/bin/env python
# Copyright (C) 2008-2009 AG Projects. See LICENSE for details.
#

import vlc

class VLCwrapper(object):

    def __init__(self):
        self.vlcEngine = None
        pass

    def init_engine(self):
        """
        Initialize VLC engine for allowing the user to stream video or play incoming video.
        """
        pass

    def stream_to_port(self, ip, port):
        """
        Stream H.264 video to the specified port from the specified local IP.
        """
        pass

    def play_from_port(self, port):
        """
        Play the video stream received on the specified port.
        """
        pass


if __name__ == "__main__":
    pass

