~ubuntu-branches/ubuntu/saucy/freemix/saucy

« back to all changes in this revision

Viewing changes to src/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Luis de Bethencourt
  • Date: 2009-02-14 17:04:04 UTC
  • Revision ID: james.westby@ubuntu.com-20090214170404-9dmt4t7qljg2qn23
Tags: upstream-0.2
ImportĀ upstreamĀ versionĀ 0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
#
 
3
# Copyright (c) 2009 Luis de Bethencourt <luisbg@ubuntu.com> 
 
4
#
 
5
# This program is free software; you can redistribute it and/or modify
 
6
# it under the terms of the GNU General Public License as published by
 
7
# the Free Software Foundation; either version 2, or (at your option)
 
8
# any later version.
 
9
#
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU Lesser General Public
 
16
# License along with this program; if not, write to the Free Software
 
17
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
 
18
# USA
 
19
 
 
20
"""
 
21
freemix is a free live video editing software, intended for and made by freedom loving live video artists.
 
22
 
 
23
Based on pygtk and gstreamer, freemix gives the video artist a videosources table and a sequencer to mix videos live. While handling the sequencer bpm, video pitch and much more.
 
24
"""
 
25
 
 
26
__author__ = "Luis de Bethencourt <luisbg@ubuntu.com>"
 
27
__copyright__ = "Luis de Bethencourt <luisbg@ubuntu.com>"
 
28
# Here you put the people who collaborate in the project
 
29
__credits__ = """
 
30
Luis de Bethencourt <luisbg@ubuntu.com>
 
31
Alberto Ruiz <aruiz@gnome.org>
 
32
Jan Schmidt <thaytan@noraisin.net>
 
33
Juanje Ojeda <jojeda@emergya.es>
 
34
"""
 
35
__license__ = "GPL-2"
 
36
__version__ = "0.2"
 
37
 
 
38
__all__ = ["freemix", "controller", "engine", "gui", "sequencer", "videosource"]
 
39