This commit is contained in:
2019-06-09 23:53:11 -07:00
parent fa79662a12
commit 15d81601c4
8 changed files with 11996 additions and 15 deletions

View File

@@ -30,8 +30,19 @@ $p['ignore'] = array( ".DS_Store",
".neofinder.abemeda.volinfo.xml"
);
// p_files will act as a directory preview
$p['p_files'] = array( "folder.jpg",
"cover.jpg",
"preview.jpg",
"cover.png",
"folder.png",
"preview.png");
$p['c_files'] = array( "txt",
"md",
"nfo",
"log",
"cue",
"csv",
"webloc",
"svg",
@@ -66,8 +77,13 @@ $p['t_files']['sips'] = array( "jpg",
"png",
"heic" );
$p['t_files']['sox'] = array( "flac",
"wav",
"aif",
"aiff" );
// don't make thumbs for these files
$p['t_skip'] = array("emlx","flac");
$p['t_skip'] = array("emlx");
$p['m_files'] = array( "mkv",
"ogg",
@@ -171,5 +187,6 @@ foreach ($p['m_files'] as $ext) { $p['m_files'][] = strtoupper($ext); }
foreach ($p['t_files']['ffmpeg'] as $ext) { $p['t_files']['ffmpeg'][] = strtoupper($ext); }
foreach ($p['t_files']['sips'] as $ext) { $p['t_files']['sips'][] = strtoupper($ext); }
foreach ($p['t_skip'] as $ext) { $p['t_skip'][] = strtoupper($ext); }
foreach ($p['p_files'] as $file) { $p['p_files'][] = strtoupper($file); }
?>