-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 0e54a2b
Showing
76 changed files
with
10,945 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
file:///Users/dstieglitz/Desktop/transcode_to_flash_output/large.ts | ||
file:///Users/dstieglitz/baseball.mov | ||
file:///tmp/large.ts | ||
file:///Users/dstieglitz/Desktop/Hannah/Hannah.m4v | ||
file:///Users/dstieglitz/Desktop/Test Media/VFA_Levis_KungFu.vfa_Flash8_dl.flv | ||
file:///Users/dstieglitz/Downloads/lexidiamond.wmv | ||
file:///Users/dstieglitz/Sites/fileSequence0.ts | ||
file:///Users/dstieglitz/Music/iTunes/iTunes Music/Movies/ZPKC.mp4 | ||
file:///Users/dstieglitz/Downloads/kimberlykato.wmv | ||
file:///Users/dstieglitz/Desktop/Test Media/powers_of_10.flv | ||
file:///Users/dstieglitz/Desktop/Test Media/vfa_dhl_watercooler.veryfunnyads_dl.flv | ||
file:///tmp/large.mxf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
#------------------------------------------------------------------------------ | ||
# | ||
# The following properties set the logging levels and log appender. The | ||
# log4j.rootCategory variable defines the default log level and one or more | ||
# appenders. For the console, use 'S'. For the daily rolling file, use 'R'. | ||
# For an HTML formatted log, use 'H'. | ||
# | ||
# To override the default (rootCategory) log level, define a property of the | ||
# form (see below for available values): | ||
# | ||
# log4j.logger. = | ||
# | ||
# Available logger names: | ||
# TODO | ||
# | ||
# Possible Log Levels: | ||
# FATAL, ERROR, WARN, INFO, DEBUG | ||
# | ||
#------------------------------------------------------------------------------ | ||
log4j.rootCategory=INFO, S, L | ||
|
||
#log4j.logger.com.stainlesscode.mediapipeline.Engine=DEBUG | ||
#log4j.logger.com.stainlesscode.mediapipeline.demux=DEBUG | ||
#log4j.logger.com.stainlesscode.mediapipeline.buffer=DEBUG | ||
#log4j.logger.com.stainlesscode.mediapipeline.packetdecoder=INFO | ||
#log4j.logger.com.stainlesscode.mediapipeline.videoout=INFO | ||
#log4j.logger.com.stainlesscode.mediapipeline.audioout2=DEBUG | ||
#log4j.logger.com.stainlesscode.mediapipeline.audioout.DefaultAudioPlayer=DEBUG | ||
#log4j.logger.com.stainlesscode.mediapipeline.audioout.PortAudioDriver=DEBUG | ||
#log4j.logger.com.stainlesscode.mediapipeline.audioout.TestInterpolatingAudioPlayer=DEBUG | ||
#log4j.logger.com.stainlesscode.mediapipeline.audioout.JavaSoundAudioDriver=DEBUG | ||
#log4j.logger.com.stainlesscode.mediapipeline.sync=DEBUG | ||
#log4j.logger.com.stainlesscode.mediapipeline.buffer=DEBUG | ||
#log4j.logger.com.stainlesscode.mediapipeline.util.MemoryChecker=INFO | ||
#log4j.logger.com.stainlesscode.mediapipeline.util.SeekHelper=DEBUG | ||
#log4j.logger.com.stainlesscode.mediaplayer=DEBUG | ||
log4j.logger.org.w3c.tidy=FATAL | ||
log4j.logger.org.apache.commons.pool=OFF | ||
|
||
#------------------------------------------------------------------------------ | ||
# | ||
# The following properties configure the console (stdout) appender. | ||
# See http://logging.apache.org/log4j/docs/api/index.html for details. | ||
# | ||
#------------------------------------------------------------------------------ | ||
log4j.appender.S = org.apache.log4j.ConsoleAppender | ||
log4j.appender.S.layout = org.apache.log4j.PatternLayout | ||
log4j.appender.S.layout.ConversionPattern = %d{yyyy-MM-dd HH:mm:ss} %c{1} [%p] %m%n | ||
|
||
#------------------------------------------------------------------------------ | ||
# | ||
# The following properties configure the Daily Rolling File appender. | ||
# See http://logging.apache.org/log4j/docs/api/index.html for details. | ||
# | ||
#------------------------------------------------------------------------------ | ||
log4j.appender.R = org.apache.log4j.DailyRollingFileAppender | ||
log4j.appender.R.File = logs/bensApps.log | ||
log4j.appender.R.Append = true | ||
log4j.appender.R.DatePattern = '.'yyy-MM-dd | ||
log4j.appender.R.layout = org.apache.log4j.PatternLayout | ||
log4j.appender.R.layout.ConversionPattern = %d{yyyy-MM-dd HH:mm:ss} %c{1} [%p] %m%n | ||
|
||
#------------------------------------------------------------------------------ | ||
# | ||
# The following properties configure the Rolling File appender in HTML. | ||
# See http://logging.apache.org/log4j/docs/api/index.html for details. | ||
# | ||
#------------------------------------------------------------------------------ | ||
log4j.appender.H = org.apache.log4j.RollingFileAppender | ||
log4j.appender.H.File = /tmp/daedalum_log.html | ||
#log4j.appender.H.MaxFileSize = 100KB | ||
log4j.appender.H.Append = false | ||
log4j.appender.H.layout = org.apache.log4j.HTMLLayout | ||
|
||
log4j.appender.L = org.apache.log4j.RollingFileAppender | ||
log4j.appender.L.File = /tmp/daedalum_log.txt | ||
#log4j.appender.H.MaxFileSize = 100KB | ||
log4j.appender.L.layout = org.apache.log4j.PatternLayout | ||
log4j.appender.L.layout.ConversionPattern = %d{yyyy-MM-dd HH:mm:ss} %c{1} [%p] %m%n |
Oops, something went wrong.