~luisbg/freemix/head

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/usr/bin/env python

# Copyright (C) 2008 Luis de Bethencourt
# <luisbg@ubuntu.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
# USA


"""play videos randomly"""

import sys, os
sys.path.append("../src")

from engine import Engine
from controller import Controller

import time
import optparse
import random

class Tool:
    def __init__(self):
        usage = """shuffle.py [input_folder]"""
        parser = optparse.OptionParser(usage = usage)
        (options, args) = parser.parse_args()

        if len(args) == 0:
            print "A video folder needs to be specified."
            exit()
        else:
            self.folder = args[0]
            if self.folder.endswith("/"):
                self.folder = self.folder[:-1]

        engine = Engine()
        controller = Controller(engine)

        self.tree = []
        ls = os.listdir(self.folder)

        # Populating database of files in input directory.
        self.browse_folder(ls, self.folder, self.tree)

        length = len(self.tree)
        print ""
        print "Founded " + str(length) + " videos."
        print ""

        while True: 
            video = random.choice(self.tree)
            controller.play(video, 1.0, 0)
            print "playing " + video
            time.sleep(3)

    def browse_folder(self, folder, dir, tree):
        '''Creates a tree of all the files and folder inside the in    put dir.'''

        for files in folder:
            if not files.startswith(".") and (not files == folder):
                files = dir + "/" + files
                tree.append(files)
                if os.path.isdir(files):
                    temp = files[files.find(self.folder_short):]
                    temp = "".join("%s/" % (n) for n in \
                    temp.split("/")[1:])
                    new = os.listdir(files)
                    self.browse_folder(new, files, tree)
        

if __name__ == "__main__":
    try:
        print "Welcome to freemix shuffle... enjoy!"
        tool = Tool()

    except SystemExit:
        raise