arrow key nav,binding bt server to arrow key event,scanning ask if new can or to just add new stuff,fatal scanning error fixed.now skips broken or corrupt files,if file has missing permisions also skip

This commit is contained in:
unknown 2025-07-06 13:10:50 +02:00
parent 2abed3f2d8
commit d3cd0f1bdd
12 changed files with 267 additions and 1048 deletions

View File

@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("NotVPR_Remote")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+739e5ccfa6e6959ef2a7c7d53bf9f69d0ad614d4")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2abed3f2d8d50d3d4bca0ccbe7097d820ca77b89")]
[assembly: System.Reflection.AssemblyProductAttribute("NotVPR_Remote")]
[assembly: System.Reflection.AssemblyTitleAttribute("NotVPR_Remote")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@ -1 +1 @@
11a6f067bb9aaffa99e22cab90e694a3a97b597fd12e7ec9fcaab32aeac06278
72eeb784a09b63add5a1b736b1715f411129f6a6a17160c1fb0361cfbf90ea8d

View File

@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("NotVPR_SideProjecktForVpr_FreeTime")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+739e5ccfa6e6959ef2a7c7d53bf9f69d0ad614d4")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2abed3f2d8d50d3d4bca0ccbe7097d820ca77b89")]
[assembly: System.Reflection.AssemblyProductAttribute("NotVPR_SideProjecktForVpr_FreeTime")]
[assembly: System.Reflection.AssemblyTitleAttribute("NotVPR_SideProjecktForVpr_FreeTime")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@ -1 +1 @@
426ccab1b5cb12f9aa4b681c2787438b17390a37e11801fb7945a7a5c3f5228b
d6a7cb3e20e11aba9208ae9062ed968711d314567fc7a59cf800c83a395b7f14

View File

@ -72,4 +72,9 @@ public class Catagory
return wrapPanel;
}
public List<string> getLink()
{
return items.Select(item => item.getLink()).ToList();
}
}

View File

@ -256,216 +256,274 @@ public partial class MainWindow : Window
}
private async void scanButton_Click(object sender, RoutedEventArgs e)
{
try
{
Muvie.clear();
Serie.clear();
Music.clear();
Photo.clear();
log.Log("Scanning files...");
List<string> tmp = new List<string>();
switch (option)
private async void scanButton_Click(object sender, RoutedEventArgs e)
{
case 0:
foreach (var VARIABLE in dirs)
{
var scanResult = await fileScanner.ScanDriveParallel(VARIABLE);
tmp.AddRange(scanResult);
}
break;
case 1:
var scanResult1 = await fileScanner.ScanDriveParallel(dirs[specificOption]);
tmp.AddRange(scanResult1);
break;
case 2:
var scanResult2 = await fileScanner.ScanDriveParallel(rootPath);
tmp.AddRange(scanResult2);
break;
}
log.Log($"Total scanned files: {tmp.Count}");
var classifier = new FileClassifier();
var (musicFiles, videoFiles, photoFiles) = await classifier.ClassifyFilesAsync(tmp, suportedMusicFiles, suportedVidioFiles, suportedPhotoFiles);
var separator = new VideoSeparator();
var (series, movies) = await separator.SeparateVideosAsync(videoFiles);
log.Log($"musicFiles count: {musicFiles.Count}");
log.Log($"videoFiles count: {videoFiles.Count}");
log.Log($"photoFiles count: {photoFiles.Count}");
log.Log($"series count: {series.Count}");
log.Log($"movies count: {movies.Count}");
progressScann = new ProgressBar("ImageGen", musicFiles.Count + videoFiles.Count + photoFiles.Count);
progressScann.Show();
videoFiles = null;
log.Log("files sorted");
List<locJason> muviesJS = new List<locJason>();
List<locJason> seriesJS = new List<locJason>();
List<locJason> photosJS = new List<locJason>();
List<locJason> musicJS = new List<locJason>();
JasonToString jasonToString = new JasonToString();
var movieItems = await ItemCreater(movies, "Muvie", false);
foreach (var item in movieItems)
{
BitmapImage bitmapImage = item.getImage();
if (bitmapImage != null)
try
{
try
MessageBoxResult result =
MessageBox.Show(
"Do you want to replace existing items\nyes will delite existing items/no keeps them",
"replace items", MessageBoxButton.YesNoCancel);
if (result == MessageBoxResult.Cancel)
return;
else if (result == MessageBoxResult.Yes)
{
string base64Image = jasonToString.BitmapToBase64String(
BitmapConversions.BitmapImageToBitmap(bitmapImage));
Muvie.addItem(item);
muviesJS.Add(new locJason
Muvie.clear();
Serie.clear();
Music.clear();
Photo.clear();
}
log.Log("Scanning files...");
List<string> tmp = new List<string>();
switch (option)
{
case 0:
foreach (var VARIABLE in dirs)
{
var scanResult = await fileScanner.ScanDriveParallel(VARIABLE);
tmp.AddRange(scanResult);
}
break;
case 1:
var scanResult1 = await fileScanner.ScanDriveParallel(dirs[specificOption]);
tmp.AddRange(scanResult1);
break;
case 2:
var scanResult2 = await fileScanner.ScanDriveParallel(rootPath);
tmp.AddRange(scanResult2);
break;
}
log.Log($"Total scanned files: {tmp.Count}");
var classifier = new FileClassifier();
var (musicFiles, videoFiles, photoFiles) = await classifier.ClassifyFilesAsync(tmp, suportedMusicFiles, suportedVidioFiles, suportedPhotoFiles);
var separator = new VideoSeparator();
var (series, movies) = await separator.SeparateVideosAsync(videoFiles);
log.Log($"musicFiles count: {musicFiles.Count}");
log.Log($"videoFiles count: {videoFiles.Count}");
log.Log($"photoFiles count: {photoFiles.Count}");
log.Log($"series count: {series.Count}");
log.Log($"movies count: {movies.Count}");
Console.WriteLine($"Total scanned files: {tmp.Count}");
Console.WriteLine($"Total video files: {videoFiles.Count}");
Console.WriteLine($"Total musicFiles count: {musicFiles.Count}");
Console.WriteLine($"Total photo files: {photoFiles.Count}");
Console.WriteLine($"Total series count: {series.Count}");
Console.WriteLine($"Total muvies count: {movies.Count}");
if (result == MessageBoxResult.No)
{
var tmp2 = new List<string>();
foreach (var VARIABLE in musicFiles)
{
path = item.getLink(),
imageData = base64Image,
type = item.getType()
});
}
catch (Exception exception)
{
Console.WriteLine($"Error processing movie item {item.getLink()}: {exception.Message}");
log.Error($"Error processing movie item {item.getLink()}: {exception}");
}
}
else
{
Console.WriteLine($"Warning: Movie item {item.getLink()} has no image data.");
log.Log($"Warning: Movie item {item.getLink()} has no image data.");
}
}
var seriesItems = await ItemCreater(series, "Serie", false);
foreach (var item in seriesItems)
{
BitmapImage bitmapImage = item.getImage();
if (bitmapImage != null)
{
try
{
string base64Image = jasonToString.BitmapToBase64String(
BitmapConversions.BitmapImageToBitmap(bitmapImage));
Serie.addItem(item);
seriesJS.Add(new locJason
if (!Music.getLink().Contains(VARIABLE)) ;
tmp2.Add(VARIABLE);
}
musicFiles.Clear();
musicFiles.AddRange(tmp2);
tmp2.Clear();
foreach (var VARIABLE in series)
{
path = item.getLink(),
imageData = base64Image,
type = item.getType()
});
}
catch (Exception exception)
{
Console.WriteLine($"Error processing series item {item.getLink()}: {exception.Message}");
log.Error($"Error processing series item {item.getLink()}: {exception}");
}
}
else
{
Console.WriteLine($"Warning: Series item {item.getLink()} has no image data.");
log.Log($"Warning: Series item {item.getLink()} has no image data.");
}
}
var photoItems = await ItemCreater(photoFiles, "Photo", true);
foreach (var item in photoItems)
{
BitmapImage bitmapImage = item.getImage();
if (bitmapImage != null)
{
try
{
string base64Image = jasonToString.BitmapToBase64String(
BitmapConversions.BitmapImageToBitmap(bitmapImage));
Photo.addItem(item);
photosJS.Add(new locJason
if (!Serie.getLink().Contains(VARIABLE)) ;
tmp2.Add(VARIABLE);
}
series.Clear();
series.AddRange(tmp2);
tmp2.Clear();
foreach (var VARIABLE in movies)
{
path = item.getLink(),
imageData = base64Image,
type = item.getType()
});
}
catch (Exception exception)
{
Console.WriteLine($"Error processing photo item {item.getLink()}: {exception.Message}");
log.Error($"Error processing photo item {item.getLink()}: {exception}");
}
}
else
{
Console.WriteLine($"Warning: Photo item {item.getLink()} has no image data.");
log.Log($"Warning: Photo item {item.getLink()} has no image data.");
}
}
var musicItems = await ItemCreater(musicFiles, "Music", false);
foreach (var item in musicItems)
{
BitmapImage bitmapImage = item.getImage();
if (bitmapImage != null)
{
try
{
string base64Image = jasonToString.BitmapToBase64String(
BitmapConversions.BitmapImageToBitmap(bitmapImage));
Music.addItem(item);
musicJS.Add(new locJason
if(!Muvie.getLink().Contains(VARIABLE)) ;
tmp2.Add(VARIABLE);
}
movies.Clear();
movies.AddRange(tmp2);
tmp2.Clear();
foreach (var VARIABLE in photoFiles)
{
path = item.getLink(),
imageData = base64Image,
type = item.getType()
});
if(!Photo.getLink().Contains(VARIABLE))
tmp2.Add(VARIABLE);
}
photoFiles.Clear();
photoFiles.AddRange(tmp2);
tmp2.Clear();
}
catch (Exception exception)
progressScann = new ProgressBar("ImageGen", musicFiles.Count + videoFiles.Count + photoFiles.Count);
progressScann.Show();
videoFiles = null;
log.Log("files sorted");
List<locJason> muviesJS = new List<locJason>();
List<locJason> seriesJS = new List<locJason>();
List<locJason> photosJS = new List<locJason>();
List<locJason> musicJS = new List<locJason>();
JasonToString jasonToString = new JasonToString();
var movieItems = await ItemCreater(movies, "Muvie", false);
foreach (var item in movieItems)
{
Console.WriteLine($"Error processing music item {item.getLink()}: {exception.Message}");
log.Error($"Error processing music item {item.getLink()}: {exception}");
BitmapImage bitmapImage = item.getImage();
if (bitmapImage != null)
{
try
{
string base64Image = jasonToString.BitmapToBase64String(
BitmapConversions.BitmapImageToBitmap(bitmapImage));
Muvie.addItem(item);
muviesJS.Add(new locJason
{
path = item.getLink(),
imageData = base64Image,
type = item.getType()
});
}
catch (Exception exception)
{
Console.WriteLine($"Error processing movie item {item.getLink()}: {exception.Message}");
log.Error($"Error processing movie item {item.getLink()}: {exception}");
}
}
else
{
Console.WriteLine($"Warning: Movie item {item.getLink()} has no image data.");
log.Log($"Warning: Movie item {item.getLink()} has no image data.");
}
}
var seriesItems = await ItemCreater(series, "Serie", false);
foreach (var item in seriesItems)
{
BitmapImage bitmapImage = item.getImage();
if (bitmapImage != null)
{
try
{
string base64Image = jasonToString.BitmapToBase64String(
BitmapConversions.BitmapImageToBitmap(bitmapImage));
Serie.addItem(item);
seriesJS.Add(new locJason
{
path = item.getLink(),
imageData = base64Image,
type = item.getType()
});
}
catch (Exception exception)
{
Console.WriteLine($"Error processing series item {item.getLink()}: {exception.Message}");
log.Error($"Error processing series item {item.getLink()}: {exception}");
}
}
else
{
Console.WriteLine($"Warning: Series item {item.getLink()} has no image data.");
log.Log($"Warning: Series item {item.getLink()} has no image data.");
}
}
var photoItems = await ItemCreater(photoFiles, "Photo", true);
foreach (var item in photoItems)
{
BitmapImage bitmapImage = item.getImage();
if (bitmapImage != null)
{
try
{
string base64Image = jasonToString.BitmapToBase64String(
BitmapConversions.BitmapImageToBitmap(bitmapImage));
Photo.addItem(item);
photosJS.Add(new locJason
{
path = item.getLink(),
imageData = base64Image,
type = item.getType()
});
}
catch (Exception exception)
{
Console.WriteLine($"Error processing photo item {item.getLink()}: {exception.Message}");
log.Error($"Error processing photo item {item.getLink()}: {exception}");
}
}
else
{
Console.WriteLine($"Warning: Photo item {item.getLink()} has no image data.");
log.Log($"Warning: Photo item {item.getLink()} has no image data.");
}
}
var musicItems = await ItemCreater(musicFiles, "Music", false);
foreach (var item in musicItems)
{
BitmapImage bitmapImage = item.getImage();
if (bitmapImage != null)
{
try
{
string base64Image = jasonToString.BitmapToBase64String(
BitmapConversions.BitmapImageToBitmap(bitmapImage));
Music.addItem(item);
musicJS.Add(new locJason
{
path = item.getLink(),
imageData = base64Image,
type = item.getType()
});
}
catch (Exception exception)
{
Console.WriteLine($"Error processing music item {item.getLink()}: {exception.Message}");
log.Error($"Error processing music item {item.getLink()}: {exception}");
}
}
else
{
Console.WriteLine($"Info: Music item {item.getLink()} has no image data.");
log.Log($"Info: Music item {item.getLink()} has no image data.");
}
}
log.Log("scan finished");
Jason_Writer jason_Writer = new Jason_Writer();
List<Task> tasks = new List<Task>
{
jason_Writer.SaveList("Muvies", muviesJS),
jason_Writer.SaveList("Series", seriesJS),
jason_Writer.SaveList("Photos", photosJS),
jason_Writer.SaveList("Music", musicJS)
};
await Task.WhenAll(tasks);
musicJS = null;
seriesJS = null;
photosJS = null;
MenueItems();
progressScann.Hide();
MessageBox.Show("Scan finished");
}
else
catch (Exception ex)
{
Console.WriteLine($"Info: Music item {item.getLink()} has no image data.");
log.Log($"Info: Music item {item.getLink()} has no image data.");
MessageBox.Show($"An error occurred during scanning:\n\n{ex.Message}", "Error", MessageBoxButton.OK, MessageBoxImage.Error);
log.Error($"An error occurred during scanning:\n\n{ex}");
}
}
log.Log("scan finished");
Jason_Writer jason_Writer = new Jason_Writer();
List<Task> tasks = new List<Task>
{
jason_Writer.SaveList("Muvies", muviesJS),
jason_Writer.SaveList("Series", seriesJS),
jason_Writer.SaveList("Photos", photosJS),
jason_Writer.SaveList("Music", musicJS)
};
await Task.WhenAll(tasks);
musicJS = null;
seriesJS = null;
photosJS = null;
MenueItems();
progressScann.Hide();
MessageBox.Show("Scan finished");
}
catch (Exception ex)
{
MessageBox.Show($"An error occurred during scanning:\n\n{ex.Message}", "Error", MessageBoxButton.OK, MessageBoxImage.Error);
log.Error($"An error occurred during scanning:\n\n{ex}");
}
}
private void PlayListButton_Click(object sender, RoutedEventArgs e)
{
ObservableCollection<Catagory> tmpBP= new ObservableCollection<Catagory>();

View File

@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("ShadowStream")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+739e5ccfa6e6959ef2a7c7d53bf9f69d0ad614d4")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2abed3f2d8d50d3d4bca0ccbe7097d820ca77b89")]
[assembly: System.Reflection.AssemblyProductAttribute("ShadowStream")]
[assembly: System.Reflection.AssemblyTitleAttribute("ShadowStream")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@ -1 +1 @@
f85d5d3952a4ad76b1a2c13be280eabb6c4387c527f66c607422bbce282c6df7
dc36ad0de166a13f9ff1c29cb035256d56d59e38530d53563fcff7b5481d49c5

View File

@ -8,849 +8,5 @@
//------------------------------------------------------------------------------
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("resources/pics/musicd.jpeg")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvlc.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvlc.lib")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvlccore.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvlccore.lib")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dodeca_and_7channel_3dsl_hrtf.sofa")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlsub.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("main.css")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile.css")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_diagonals-thick_18_b81900_40x40.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_diagonals-thick_20_666666_40x40.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_flat_10_000000_40x100.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_glass_100_f6f6f6_1x400.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_glass_100_fdf5ce_1x400.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_glass_65_ffffff_1x400.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_gloss-wave_35_f6a828_500x100.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_highlight-soft_100_eeeeee_1x100.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_highlight-soft_75_ffe45c_1x100.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_222222_256x240.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_228ef1_256x240.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_ef8c08_256x240.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_ffd27a_256x240.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_ffffff_256x240.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("jquery-ui-1.8.13.custom.css")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("custom.lua")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("batch_window.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("browse_window.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("create_stream.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("equalizer_window.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("error_window.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mosaic_window.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("offset_window.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("stream_config_window.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("stream_window.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("favicon.ico")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("audio-48.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("back-48.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("buttons.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("folder-48.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("other-48.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("speaker-32.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("video-48.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlc-48.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlc16x16.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("index.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("common.js")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("controllers.js")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("jquery.jstree.js")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui.js")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile_browse.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile_equalizer.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile_view.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("browse.json")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("browse.xml")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("playlist.json")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("playlist.xml")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("playlist_jstree.xml")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("readme.txt")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("status.json")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("status.xml")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlm.xml")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlm_cmd.xml")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("view.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlm.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlm_export.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("cli.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dummy.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dumpmeta.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("http.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("luac.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("host.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("httprequests.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("telnet.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("00_musicbrainz.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("01_googleimage.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("02_frenchtv.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("03_lastfm.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("filename.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("common.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dkjson.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("sandbox.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("simplexml.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("anevia_streams.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("anevia_xml.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("appletrailers.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("bbc_co_uk.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("cue.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dailymotion.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("jamendo.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("koreus.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liveleak.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("newgrounds.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("rockbox_fm_presets.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("soundcloud.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("twitch.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vimeo.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vocaroo.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("youtube.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("icecast.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("jamendo.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_concat_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_imem_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_mms_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_srt_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_wasapi_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libattachment_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libbluray-awt-j2se-1.3.2.jar")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libbluray-j2se-1.3.2.jar")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcdda_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdcp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdtv_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfilesystem_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libftp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libhttps_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libhttp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libidummy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libimem_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblibbluray_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblive555_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnfs_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librist_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librtp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsatip_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscreen_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsdp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsftp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libshm_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsmb_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtcp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtimecode_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libudp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvcd_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvdr_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_dummy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_file_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_http_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_livehttp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_rist_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_shout_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_srt_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_udp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaudiobargraph_a_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaudio_format_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libchorus_flanger_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcompressor_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libequalizer_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgain_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libkaraoke_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnormvol_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libparam_eq_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libremap_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscaletempo_pitch_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscaletempo_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsimple_channel_mixer_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspatialaudio_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspatializer_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspeex_resampler_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstereo_widen_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtospdif_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtrivial_channel_mixer_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libugly_resampler_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfloat_mixer_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libinteger_mixer_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadummy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libafile_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libamem_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirectsound_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmmdevice_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwasapi_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwaveout_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadpcm_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaes3_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaom_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaraw_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libavcodec_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcc_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcdg_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcrystalhd_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcvdsub_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libd3d11va_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdav1d_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libddummy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdmo_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdvbsub_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdxva2_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libedummy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libflac_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfluidsynth_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libg711_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libjpeg_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libkate_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblibass_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblpcm_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmft_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmpg123_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liboggspots_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libopus_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpng_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libqsv_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librawvideo_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librtpvideo_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libschroedinger_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscte18_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscte27_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsdl_image_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspdif_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspeex_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspudec_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstl_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubsdec_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubstx3g_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubsusf_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsvcdsub_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtextst_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtheora_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libttml_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtwolame_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libuleaddvaudio_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvorbis_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvpx_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwebvtt_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libx26410b_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libzvbi_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirect3d11_filters_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirect3d9_filters_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadaptive_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaiff_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libasf_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libau_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libavi_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcaf_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdemuxdump_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdemux_cdg_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdemux_chromecast_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdemux_stl_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdiracsys_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirectory_demux_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libes_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libflacsys_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgme_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libh26x_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libimage_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmjpeg_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmkv_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmod_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmp4_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmpgv_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnoseek_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnsc_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnsv_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnuv_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libogg_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libplaylist_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libps_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpva_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librawaud_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librawdv_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librawvid_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsmf_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubtitle_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libts_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtta_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libty_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvc1_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvobsub_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvoc_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwav_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libxa_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfile_keystore_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmemory_keystore_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libconsole_logger_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblua_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfolder_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtaglib_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaddonsfsstorage_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaddonsvorepository_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfingerprinter_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgnutls_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libxml_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_asf_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_avi_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_dummy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_mp4_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_mpjpeg_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_ogg_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_ps_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_ts_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_wav_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_av1_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_copy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_dirac_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_dts_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_flac_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_h264_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_hevc_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mlp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mpeg4audio_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mpeg4video_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mpegaudio_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mpegvideo_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_vc1_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmicrodns_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libupnp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwindrive_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaudiobargraph_v_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblogo_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmarq_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmosaic_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libremoteosd_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librss_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubsdelay_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libarchive_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadf_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaribcam_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcache_block_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcache_read_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libhds_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libinflate_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libprefetch_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librecord_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libskiptags_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_autodel_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_bridge_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_chromaprint_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_chromecast_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_delay_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_description_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_display_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_dummy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_duplicate_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_es_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_gather_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_mosaic_bridge_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_record_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_setid_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_smem_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_standard_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_stats_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_transcode_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfreetype_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsapi_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtdummy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libchain_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgrey_yuv_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_10_p010_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_nv12_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_rgb_mmx_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_rgb_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_rgb_sse2_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_yuy2_mmx_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_yuy2_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_yuy2_sse2_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi422_i420_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi422_yuy2_mmx_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi422_yuy2_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi422_yuy2_sse2_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librv32_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libswscale_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libyuvp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libyuy2_i420_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libyuy2_i422_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadjust_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libalphamask_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libanaglyph_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libantiflicker_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libball_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libblendbench_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libblend_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libbluescreen_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcanvas_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcolorthres_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcroppadd_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdeinterlace_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libedgedetection_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liberase_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libextract_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfps_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfreeze_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgaussianblur_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgradfun_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgradient_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgrain_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libhqdn3d_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libinvert_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmagnify_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmirror_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmotionblur_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmotiondetect_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liboldmovie_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libposterize_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpsychedelic_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpuzzle_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libripple_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscale_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscene_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsepia_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsharpen_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtransform_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvhs_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwave_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcaca_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirect3d11_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirect3d9_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirectdraw_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdrawable_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libflaschen_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libglinterop_dxva2_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libglwin32_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgl_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvdummy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvmem_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwgl_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwingdi_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwinhibit_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libyuv_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libclone_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpanoramix_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwall_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libglspectrum_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgoom_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libprojectm_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvisual_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvlc.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvlc.lib")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvlccore.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvlccore.lib")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dodeca_and_7channel_3dsl_hrtf.sofa")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlsub.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("main.css")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile.css")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_diagonals-thick_18_b81900_40x40.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_diagonals-thick_20_666666_40x40.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_flat_10_000000_40x100.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_glass_100_f6f6f6_1x400.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_glass_100_fdf5ce_1x400.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_glass_65_ffffff_1x400.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_gloss-wave_35_f6a828_500x100.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_highlight-soft_100_eeeeee_1x100.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_highlight-soft_75_ffe45c_1x100.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_222222_256x240.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_228ef1_256x240.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_ef8c08_256x240.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_ffd27a_256x240.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_ffffff_256x240.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("jquery-ui-1.8.13.custom.css")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("custom.lua")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("batch_window.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("browse_window.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("create_stream.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("equalizer_window.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("error_window.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mosaic_window.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("offset_window.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("stream_config_window.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("stream_window.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("favicon.ico")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("audio-48.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("back-48.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("buttons.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("folder-48.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("other-48.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("speaker-32.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("video-48.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlc-48.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlc16x16.png")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("index.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("common.js")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("controllers.js")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("jquery.jstree.js")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui.js")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile_browse.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile_equalizer.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile_view.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("browse.json")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("browse.xml")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("playlist.json")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("playlist.xml")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("playlist_jstree.xml")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("readme.txt")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("status.json")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("status.xml")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlm.xml")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlm_cmd.xml")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("view.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlm.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlm_export.html")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("cli.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dummy.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dumpmeta.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("http.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("luac.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("host.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("httprequests.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("telnet.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("00_musicbrainz.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("01_googleimage.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("02_frenchtv.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("03_lastfm.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("filename.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("common.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dkjson.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("sandbox.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("simplexml.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("anevia_streams.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("anevia_xml.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("appletrailers.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("bbc_co_uk.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("cue.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dailymotion.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("jamendo.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("koreus.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liveleak.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("newgrounds.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("rockbox_fm_presets.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("soundcloud.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("twitch.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vimeo.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vocaroo.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("youtube.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("icecast.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("jamendo.luac")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_concat_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_imem_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_mms_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_srt_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_wasapi_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libattachment_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libbluray-awt-j2se-1.3.2.jar")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libbluray-j2se-1.3.2.jar")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcdda_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdcp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdtv_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfilesystem_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libftp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libhttps_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libhttp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libidummy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libimem_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblibbluray_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblive555_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnfs_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librist_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librtp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsatip_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscreen_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsdp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsftp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libshm_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsmb_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtcp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtimecode_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libudp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvcd_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvdr_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_dummy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_file_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_http_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_livehttp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_rist_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_shout_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_srt_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_udp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaudiobargraph_a_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaudio_format_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libchorus_flanger_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcompressor_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libequalizer_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgain_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libkaraoke_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnormvol_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libparam_eq_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libremap_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscaletempo_pitch_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscaletempo_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsimple_channel_mixer_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspatialaudio_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspatializer_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspeex_resampler_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstereo_widen_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtospdif_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtrivial_channel_mixer_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libugly_resampler_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfloat_mixer_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libinteger_mixer_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadummy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libafile_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libamem_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirectsound_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmmdevice_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwasapi_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwaveout_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadpcm_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaes3_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaom_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaraw_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libavcodec_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcc_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcdg_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcrystalhd_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcvdsub_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libd3d11va_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdav1d_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libddummy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdmo_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdvbsub_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdxva2_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libedummy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libflac_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfluidsynth_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libg711_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libjpeg_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libkate_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblibass_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblpcm_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmft_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmpg123_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liboggspots_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libopus_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpng_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libqsv_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librawvideo_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librtpvideo_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libschroedinger_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscte18_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscte27_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsdl_image_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspdif_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspeex_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspudec_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstl_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubsdec_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubstx3g_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubsusf_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsvcdsub_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtextst_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtheora_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libttml_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtwolame_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libuleaddvaudio_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvorbis_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvpx_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwebvtt_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libx26410b_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libzvbi_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirect3d11_filters_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirect3d9_filters_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadaptive_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaiff_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libasf_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libau_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libavi_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcaf_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdemuxdump_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdemux_cdg_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdemux_chromecast_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdemux_stl_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdiracsys_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirectory_demux_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libes_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libflacsys_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgme_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libh26x_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libimage_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmjpeg_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmkv_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmod_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmp4_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmpgv_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnoseek_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnsc_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnsv_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnuv_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libogg_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libplaylist_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libps_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpva_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librawaud_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librawdv_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librawvid_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsmf_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubtitle_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libts_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtta_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libty_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvc1_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvobsub_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvoc_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwav_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libxa_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfile_keystore_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmemory_keystore_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libconsole_logger_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblua_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfolder_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtaglib_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaddonsfsstorage_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaddonsvorepository_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfingerprinter_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgnutls_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libxml_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_asf_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_avi_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_dummy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_mp4_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_mpjpeg_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_ogg_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_ps_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_ts_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_wav_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_av1_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_copy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_dirac_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_dts_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_flac_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_h264_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_hevc_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mlp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mpeg4audio_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mpeg4video_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mpegaudio_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mpegvideo_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_vc1_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmicrodns_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libupnp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwindrive_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaudiobargraph_v_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblogo_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmarq_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmosaic_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libremoteosd_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librss_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubsdelay_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libarchive_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadf_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaribcam_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcache_block_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcache_read_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libhds_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libinflate_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libprefetch_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librecord_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libskiptags_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_autodel_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_bridge_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_chromaprint_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_chromecast_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_delay_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_description_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_display_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_dummy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_duplicate_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_es_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_gather_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_mosaic_bridge_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_record_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_setid_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_smem_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_standard_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_stats_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_transcode_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfreetype_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsapi_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtdummy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libchain_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgrey_yuv_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_10_p010_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_nv12_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_rgb_mmx_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_rgb_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_rgb_sse2_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_yuy2_mmx_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_yuy2_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_yuy2_sse2_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi422_i420_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi422_yuy2_mmx_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi422_yuy2_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi422_yuy2_sse2_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librv32_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libswscale_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libyuvp_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libyuy2_i420_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libyuy2_i422_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadjust_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libalphamask_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libanaglyph_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libantiflicker_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libball_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libblendbench_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libblend_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libbluescreen_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcanvas_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcolorthres_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcroppadd_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdeinterlace_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libedgedetection_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liberase_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libextract_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfps_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfreeze_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgaussianblur_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgradfun_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgradient_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgrain_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libhqdn3d_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libinvert_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmagnify_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmirror_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmotionblur_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmotiondetect_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liboldmovie_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libposterize_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpsychedelic_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpuzzle_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libripple_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscale_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscene_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsepia_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsharpen_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtransform_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvhs_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwave_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcaca_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirect3d11_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirect3d9_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirectdraw_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdrawable_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libflaschen_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libglinterop_dxva2_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libglwin32_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgl_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvdummy_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvmem_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwgl_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwingdi_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwinhibit_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libyuv_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libclone_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpanoramix_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwall_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libglspectrum_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgoom_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libprojectm_plugin.dll")]
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvisual_plugin.dll")]

View File

@ -11,7 +11,7 @@ false
TRACE;DEBUG;NET;NET8_0;NETCOREAPP
C:\Users\Elias\Desktop\vpr\vpr\ShadowStream\App.xaml
52126927803
8451965186685
1-689617852
19-1810519192
208-1478677909
Resources\LogHelper\LogWindow.xaml;Views\LogIn.xaml;Views\MainWindow.xaml;Views\PlaylistEditor.xaml;Views\ProgressBar.xaml;

View File

@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("file finder test")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+739e5ccfa6e6959ef2a7c7d53bf9f69d0ad614d4")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2abed3f2d8d50d3d4bca0ccbe7097d820ca77b89")]
[assembly: System.Reflection.AssemblyProductAttribute("file finder test")]
[assembly: System.Reflection.AssemblyTitleAttribute("file finder test")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@ -1 +1 @@
83647d4c2aac1b5d925f5827ffc6cedbe5f360c21a5f173d948a5719be0e5465
46a67ec7ef9db3ff03bb2b6f6058f418057b092c39893d628eba5d9c92c3baa0