Changeset 292 for indytube/trunk
- Timestamp:
- 11/26/07 11:22:41 (14 months ago)
- Files:
-
- 1 modified
-
indytube/trunk/indytube/indytube.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
indytube/trunk/indytube/indytube.py
r289 r292 163 163 finish_time=time.time() 164 164 logging.info("Encoded %s in %.2f seconds, using cmd -- %s" % (videofile,finish_time-start_time,theora_cmd)) 165 166 if os.path.exists(flvfile) and os.path.getsize(flvfile)>0: 167 # OK ! It Worked. 168 #XXX expand to OGG format checking 169 worked = True 165 170 166 171 else: … … 189 194 f.close() 190 195 191 # OK ! It Worked.192 worked = True193 194 196 else: 195 197 logging.info("FLV file size is zero - assuming encoding failed! Permanently skipping file!") … … 241 243 242 244 #install a signal handler to re-read configuration files. 243 # eg kill - USR2 <pid>245 # eg kill -s USR2 <pid> 244 246 signal.signal(signal.SIGUSR2, indytuber.rereadConfig) 245 247
