micha 1 سال پیش
والد
کامیت
6c5ccf0b3c
7فایلهای تغییر یافته به همراه34 افزوده شده و 23 حذف شده
  1. 7 6
      _LibreLightDesk.py
  2. 3 2
      arc/testing/video_import.py
  3. 4 1
      media/player.py
  4. 5 3
      media/video_player.py
  5. 2 1
      tksdl/fix.py
  6. 2 1
      vpu/vpu2_live.py
  7. 11 9
      vpu/vpu_live.py

+ 7 - 6
_LibreLightDesk.py

@@ -62,6 +62,8 @@ import time
 import sys
 import os 
 
+HOME = os.getenv('HOME')
+
 import _thread as thread
 import traceback
 
@@ -360,7 +362,7 @@ class MC():
             self.fader_map.append({"UNIV":0,"DMX":0})
 
         try:
-            fname = "/home/user/LibreLight/fader.json"
+            fname = HOME + "/LibreLight/fader.json"
             f = open(fname)
             lines = f.readlines()
             cprint("FADER MAP",fname)
@@ -1342,7 +1344,7 @@ def save_window_position(save_as=""):
     cprint("save_window_position",[save_as])
     try:
         base = Base()
-        fname = "/home/user/LibreLight"
+        fname = HOME+"/LibreLight"
         fname = base.show_path1 +base.show_name 
         if save_as:
             fname = save_as 
@@ -1384,7 +1386,7 @@ def load_window_position(_filter=""):
     cprint("load_window_position",[_filter])
     try:
         base = Base()
-        fname = "/home/user/LibreLight"
+        fname = HOME+"/LibreLight"
         fname = base.show_path1 +base.show_name 
         fname +=  "/gui.txt"
         cprint("- fname:",fname)
@@ -1842,8 +1844,7 @@ class Base():
 
     def _init(self):
         show_name = "DemoShow"
-        self.home = os.environ['HOME'] 
-        self.show_path0 = self.home +"/LibreLight/"
+        self.show_path0 = HOME +"/LibreLight/"
         self.show_path  = self.show_path0 
         self.show_path1 = self.show_path0 + "show/"
         try:
@@ -2818,7 +2819,7 @@ def _load_fixture_list(frame,cb=None,master=None,bg="black"):
     r+=1
     blist = [] #base._list()
     try:
-        p = "/home/user/LibreLight/fixtures/"
+        p = HOME+"/LibreLight/fixtures/"
         ls = os.listdir(p)
         ls.sort()
         for l in ls:

+ 3 - 2
arc/testing/video_import.py

@@ -4,6 +4,7 @@ import _thread as thread
 import cv2
 import sys
 
+HOME = os.getenv('HOME')
 from optparse import OptionParser
 
 parser = OptionParser()
@@ -12,7 +13,7 @@ parser.add_option("", "--videoplayer", dest="videoplayer",#default=1,
 (options, args) = parser.parse_args()
 
 PLAYLIST = []
-play_list = "/home/user/LibreLight/video/" #.format(path)
+play_list = HOME+"/LibreLight/video/" #.format(path)
 
 def open_playlist():
     print()
@@ -64,7 +65,7 @@ class Vopen2():
             self._run = 0
             self.fps = 1
             self.scale = 1
-            self.fpath = "/home/user/LibreLight/video/"
+            self.fpath = HOME+"/LibreLight/video/"
             self.fname = "xx.mp4"
             self.cv2 = cv2
             self.dim = 0

+ 4 - 1
media/player.py

@@ -3,8 +3,11 @@ import vlc
  
 # importing time module
 import time
+import os
+
+HOME = os.getenv('HOME')
  
-media_path = "/home/user/LibreLight/music/"  
+media_path = HOME+"/LibreLight/music/"  
 fname = "1.mp3"
 def play(): 
     # creating vlc media player object

+ 5 - 3
media/video_player.py

@@ -6,13 +6,15 @@ import pygame.font
 import time
 import os
 
+HOME = os.getenv('HOME')
+
 pygame.init() 
 
 class Vopen():
     def __init__(self):
-        self.fname = '/home/user/Downloads/video.mp4'
-        self.fname = '/home/user/Downloads/video.ogv'
-        self.fname = '/home/user/Downloads/bbb_sunflower_480x320.mp4'
+        self.fname = HOME+'/Downloads/video.mp4'
+        self.fname = HOME+'/Downloads/video.ogv'
+        self.fname = HOME+'/Downloads/bbb_sunflower_480x320.mp4'
         self.scale = 80 #%
         self.x = 0
         self.y = 0

+ 2 - 1
tksdl/fix.py

@@ -5,6 +5,7 @@ import time
 import os
 import sys
 
+HOME = os.getenv('HOME')
 START = time.time()
 _START = time.time()
 
@@ -39,7 +40,7 @@ parser.add_option("-g", "--gobo-ch", dest="gobo_ch",#default=1,
 def load_window_position():
     try:
         base = Base()
-        fname = "/home/user/LibreLight"
+        fname = HOME+"/LibreLight"
         fname = base.show_path1 +base.show_name 
         fname +=  "/gui.txt"
         print("load_window_position",fname)

+ 2 - 1
vpu/vpu2_live.py

@@ -4,6 +4,7 @@ import random
 import time
 import os
 
+HOME = os.getenv('HOME')
 
 from optparse import OptionParser
 ...
@@ -484,7 +485,7 @@ def rDMX(univ,dmx):
     return univ*512+dmx
 
 grid_file = "/tmp/vpu_grid.csv"
-grid_file = "/home/user/LibreLight/vpu_grid_hd.csv"
+grid_file = HOME+"/LibreLight/vpu_grid_hd.csv"
 
 def generate_grid():
     log = open(grid_file,"w")

+ 11 - 9
vpu/vpu_live.py

@@ -7,6 +7,8 @@ import sys
 import traceback
 import gc
 
+HOME = os.getenv('HOME')
+
 import _thread as thread
 
 
@@ -147,8 +149,8 @@ class Vopen():
         global PLAYLIST
 
         self._id = _id
-        self.fpath = '/home/user/Downloads/'
-        self.fpath = '/home/user/LibreLight/video/'
+        self.fpath = HOME+'/Downloads/'
+        self.fpath = HOME+'/LibreLight/video/'
         self.fname = '' #'bbb_sunflower_480x320.mp4'
         #self.fname = 'no-video.mp4'
         try:
@@ -804,9 +806,9 @@ fr = font.render("hallo" ,1, (200,0,255))
 
 PIXEL_MAPPING = 0
 grid_file = "/tmp/vpu_grid_hd.csv"
-text_file = "/home/user/LibreLight/vpu_text_hd.csv"
+text_file = HOME+"/LibreLight/vpu_text_hd.csv"
 play_list = "/tmp/vpu_playlist_hd.csv"
-play_list = "/home/user/LibreLight/video/" #.format(path)
+play_list = HOME+"/LibreLight/video/" #.format(path)
 pm_wy = 0
 if options.pixel_mapping:
     PIXEL_MAPPING = 1
@@ -816,15 +818,15 @@ if options.pixel_mapping:
     path = path.replace(".","-")
     path = path.replace("\"","-")
     path = path.replace("'","-")
-    grid_file = "/home/user/LibreLight/vpu_grid_hd{}.csv".format(path)
-    text_file = "/home/user/LibreLight/vpu_text_hd{}.csv".format(path)
-    play_list = "/home/user/LibreLight/vpu_playlist_hd{}.csv".format(path)
-    play_list = "/home/user/LibreLight/video/" #.format(path)
+    grid_file = HOME+"/LibreLight/vpu_grid_hd{}.csv".format(path)
+    text_file = HOME+"/LibreLight/vpu_text_hd{}.csv".format(path)
+    play_list = HOME+"/LibreLight/vpu_playlist_hd{}.csv".format(path)
+    play_list = HOME+"/LibreLight/video/" #.format(path)
     #_x = 8
     #_y = 8
 
 print("  ",[options.pixel_mapping],"grid_file",grid_file)
-#grid_file = "/home/user/LibreLight/vpu_grid_hd.csv"
+#grid_file = HOME+"/LibreLight/vpu_grid_hd.csv"
 
 
 MAIN_SIZE=(600,500)