/usr/lib/python2.7/dist-packages/pymecavideo/globdef.py is in python-mecavideo 6.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 | # -*- coding: utf-8 -*-
licence = {}
licence['en'] = """
pymecavideo version %s:
a program to track moving points in a video frameset
Copyright (C) 2007-2008 Jean-Baptiste Butet <ashashiwa@gmail.com>
Copyright (C) 2007-2008 Georges Khaznadar <georgesk@ofset.org>
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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
"""
licence['fr'] = u"""
pymecavideo version %s :
un programme pour tracer les trajectoires des points dans une vidéo.
Copyright (C) 2007-2008 Jean-Baptiste Butet <ashashiwa@gmail.com>
Copyright (C) 2007-2008 Georges Khaznadar <georgesk@ofset.org>
Ce projet est un logiciel libre : vous pouvez le redistribuer, le modifier selon les terme de la GPL (GNU Public License) dans les termes de la Free Software Foundation concernant la version 3 ou plus de la dite licence.
Ce programme est fait avec l'espoir qu'il sera utile mais SANS AUCUNE GARANTIE. Lisez la licence pour plus de détails.
<http://www.gnu.org/licenses/>.
"""
import sys
import os
import subprocess
from PyQt4.QtGui import QDesktopServices
# from PyQt4.QtGui import *
#
# Version de pymecavideo
#
VERSION = "5.3"
def testerDossier(listDir, defaut=""):
for dir in listDir:
if os.path.exists(dir):
return dir
return defaut
#
# Dossier de l'application
#
FILE_ENCODING = sys.getfilesystemencoding()
DEFAUT_ENCODING = "utf-8"
print "FILE_ENCODING", FILE_ENCODING
######################################################################################
def toFileEncoding(path):
try:
path = path.decode(DEFAUT_ENCODING)
return path.encode(FILE_ENCODING)
except:
return path
if sys.platform == 'win32':
#
# Les deuxlignes suivantes permettent de lancer le script pymecavideo.py depuis n'importe
# quel répertoire sans que l'utilisation de chemins
# relatifs ne soit perturbée
#
PATH = os.path.dirname(os.path.abspath(sys.argv[0]))
PATH = os.path.split(PATH)[0]
os.chdir(PATH)
sys.path.append(PATH)
else:
pass
#
# Dossier des données "temporaires" (video*.jpg, crop*.jpg, out.avi)
#
if sys.platform == 'win32':
#On récupèreᅠ le dossier "Application data"
#On lit la clef de registre indiquant le type d'installation
import win32api, win32con
try:
regkey = win32api.RegOpenKeyEx(win32con.HKEY_LOCAL_MACHINE, 'SOFTWARE\\pymecavideo', 0, win32con.KEY_READ)
(value, keytype) = win32api.RegQueryValueEx(regkey, 'DataFolder')
APP_DATA_PATH = value
if not os.path.exists(APP_DATA_PATH):
os.makedirs(APP_DATA_PATH)
except:
APP_DATA_PATH = PATH
sys.path.append(os.path.join(PATH, 'bin'))
else:
datalocation = os.path.join("%s" % QDesktopServices.storageLocation(QDesktopServices.DataLocation), "pymecavideo")
PATH = APP_DATA_PATH = datalocation
if not os.path.exists(datalocation):
subprocess.call("mkdir -p %s" %datalocation, shell=True)
#
# Nom du dossier des images extraites et des vidéos créées
#
IMG_PATH = os.path.join(APP_DATA_PATH, "images_extraites")
NEWVID_PATH = os.path.join(APP_DATA_PATH, "videos_recodees")
if not os.path.exists(NEWVID_PATH):
os.makedirs(NEWVID_PATH)
#
# Dossier gnuplot
#
def GetGnuplotPath():
paths = os.environ['PATH'].split(os.pathsep)
if 'PROGRAMFILES' in os.environ.keys():
paths.append(os.environ['PROGRAMFILES'])
GNUPLOT_PATH = None
for p in paths:
if os.access(os.path.join(p, "gnuplot"), os.X_OK):
GNUPLOT_PATH = p
if GNUPLOT_PATH != None:
return os.path.join(GNUPLOT_PATH, "gnuplot", "binary")
else:
return ""
GNUPLOT_PATH = GetGnuplotPath()
# Dossier "home"
#
HOME_PATH = unicode(QDesktopServices.storageLocation(8), 'iso-8859-1')
#
# Dossier "video"
#
if sys.platform == 'win32':
VIDEO_PATH = os.path.join(PATH, "data", "video")
else:
VIDEO_PATH = testerDossier((os.path.join("..", "data", "video"),
'/usr/share/pymecavideo/video',
'/usr/share/python-mecavideo/video'),
APP_DATA_PATH)
#
# Dossier pour testfilm.py
#
PYMECA_SHARE = testerDossier(('/usr/share/pymecavideo',
'/usr/share/python-mecavideo',
'.'),
'/usr/share/pymecavideo')
#
# Dossier de pymecavideo.conf
#
if sys.platform == 'win32':
CONF_PATH = APP_DATA_PATH
else:
CONF_PATH = PATH
#
# Dossier des icones
#
if sys.platform == 'win32':
ICON_PATH = os.path.join(PATH, "data", "icones")
else:
ICON_PATH = testerDossier((os.path.join("..", "data", "icones"),
'/usr/share/python-mecavideo/icones', '/usr/share/pymecavideo/icones'))
#
# Dossier des langues
#
if sys.platform == 'win32':
LANG_PATH = os.path.join(PATH, r"data", r"lang")
else:
LANG_PATH = testerDossier((os.path.join("..", "data", "lang"),
'/usr/share/pyshared/pymecavideo/lang', '/usr/share/python-mecavideo/lang',
'/usr/share/pymecavideo/lang'))
#
# Dossier "data"
#
if sys.platform == 'win32':
DATA_PATH = os.path.join(PATH, "data")
else:
#DATA_PATH = os.path.join(PATH,"..","data")
DATA_PATH = testerDossier((os.path.join("..", "data"),
'/usr/share/python-mecavideo/', '/usr/share/pymecavideo/'))
#
# Dossier de l'aide
#
if sys.platform == 'win32':
HELP_PATH = os.path.join(PATH, "data", "help")
else:
HELP_PATH = testerDossier((os.path.join("..", "data", "help"), "/usr/share/doc/python-mecavideo/html",
"/usr/share/doc/HTML/fr/pymecavideo"))
#
# Nom du fichier de sortie AVI
#
AVI_OUT = os.path.join(IMG_PATH, "out.avi")
ERROR_FILE = os.path.join(APP_DATA_PATH, 'pymecavideo.exe' + '.log')
#
# Nom des fichiers "crop" et "video"
#
CROP = "crop"
VIDEO = "video"
SUFF = "%04d.jpg"
#
# Gestion des Popen()
#
def GetChildStdErr():
""" Renvoie le handler par défaut pour les Popen()
(pour contourner un bug ... sous windows)
"""
if sys.platform == 'win32':
import win32process
if hasattr(sys.stderr, 'fileno'):
childstderr = sys.stderr
elif hasattr(sys.stderr, '_file') and hasattr(sys.stderr._file, 'fileno'):
childstderr = sys.stderr._file
else:
# Give up and point child stderr at nul
childStderrPath = 'nul'
childstderr = open(childStderrPath, 'a')
return childstderr, win32process.CREATE_NO_WINDOW
else:
return None, 0
|