diff --git a/SingsALot/App.config b/SingsALot/App.config
new file mode 100644
index 0000000..eb51eb6
--- /dev/null
+++ b/SingsALot/App.config
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/SingsALot/App.xaml b/SingsALot/App.xaml
new file mode 100644
index 0000000..f3453ac
--- /dev/null
+++ b/SingsALot/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/SingsALot/App.xaml.cs b/SingsALot/App.xaml.cs
new file mode 100644
index 0000000..50c72e6
--- /dev/null
+++ b/SingsALot/App.xaml.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Configuration;
+using System.Data;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows;
+
+namespace SingsALot
+{
+ ///
+ /// Interaction logic for App.xaml
+ ///
+ public partial class App : Application
+ {
+ }
+}
diff --git a/SingsALot/Classes/UserSettings.cs b/SingsALot/Classes/UserSettings.cs
new file mode 100644
index 0000000..c758f09
--- /dev/null
+++ b/SingsALot/Classes/UserSettings.cs
@@ -0,0 +1,34 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Xml.Serialization;
+
+namespace SingsALot.Classes
+{
+ public class UserSettings
+ {
+ public string controllerName { get; set; }
+ public string songsLocationPath { get; set; }
+
+ public void Save(string filename)
+ {
+ using (StreamWriter sw = new StreamWriter(filename))
+ {
+ XmlSerializer xmls = new XmlSerializer(typeof(UserSettings));
+ xmls.Serialize(sw, this);
+ }
+ }
+ public UserSettings Read(string filename)
+ {
+ using (StreamReader sw = new StreamReader(filename))
+ {
+ XmlSerializer xmls = new XmlSerializer(typeof(UserSettings));
+ return xmls.Deserialize(sw) as UserSettings;
+ }
+ }
+ }
+
+}
diff --git a/SingsALot/MainWindow.xaml b/SingsALot/MainWindow.xaml
new file mode 100644
index 0000000..55c5842
--- /dev/null
+++ b/SingsALot/MainWindow.xaml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/SingsALot/MainWindow.xaml.cs b/SingsALot/MainWindow.xaml.cs
new file mode 100644
index 0000000..4dddc47
--- /dev/null
+++ b/SingsALot/MainWindow.xaml.cs
@@ -0,0 +1,137 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.IO;
+using System.Reflection;
+using SingsALot.Classes;
+using System.Diagnostics;
+using System.Configuration;
+
+namespace SingsALot
+{
+ ///
+ /// Interaction logic for MainWindow.xaml
+ ///
+ public partial class MainWindow : Window
+ {
+ public string _UserSettingsPath = System.IO.Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\settings.xml";
+ public bool loading = true;
+ public MainWindow()
+ {
+ InitializeComponent();
+ // if default settings exist
+ if (File.Exists(_UserSettingsPath))
+ {
+
+ this.settings = new UserSettings();
+ this.settings = settings.Read(_UserSettingsPath);
+ songsLocation.Text = this.settings.songsLocationPath;
+ controllerName.Text = this.settings.controllerName;
+ loading = false;
+ CheckVariables();
+ }
+ }
+ public UserSettings settings { get; private set; }
+
+ public void SaveUserSettings()
+ {
+ if (loading) return;
+ settings.controllerName = controllerName.Text.Trim();
+ settings.songsLocationPath = songsLocation.Text.Trim();
+ settings.Save(_UserSettingsPath);
+
+ string playerConfig = System.IO.Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + @"\KaraokePlayer.exe";
+ Configuration config = ConfigurationManager.OpenExeConfiguration(playerConfig);
+ config.AppSettings.Settings["KaraokePlayer.ControllerId"].Value = settings.controllerName;
+ config.Save(ConfigurationSaveMode.Modified);
+
+ }
+
+ private void controllerName_TextChanged(object sender, TextChangedEventArgs e)
+ {
+ CheckVariables();
+ SaveUserSettings();
+ }
+
+ private void songsLocation_TextChanged(object sender, TextChangedEventArgs e)
+ {
+ CheckVariables();
+ SaveUserSettings();
+ }
+
+ private void CheckVariables()
+ {
+ if (controllerName.Text.Trim() != string.Empty)
+ {
+ launchPlayerButton.IsEnabled = true;
+ if (songsLocation.Text.Trim() != string.Empty)
+ {
+ syncLibraryButton.IsEnabled = true;
+ updateBillboardButton.IsEnabled = true;
+ }
+ else
+ {
+ syncLibraryButton.IsEnabled = false;
+ updateBillboardButton.IsEnabled = false;
+ }
+ }
+ else
+ {
+ launchPlayerButton.IsEnabled = false;
+ syncLibraryButton.IsEnabled = false;
+ updateBillboardButton.IsEnabled = false;
+ }
+ }
+
+ private void songsLocationButton_Click(object sender, RoutedEventArgs e)
+ {
+ var d = new Gat.Controls.OpenDialogView();
+ var vm = (Gat.Controls.OpenDialogViewModel)d.DataContext;
+ bool? result = vm.Show();
+ if (result == true)
+ {
+ // Get selected file path
+ songsLocation.Text = vm.SelectedFolder.Path;
+ }
+ else
+ {
+ songsLocation.Text = string.Empty;
+ }
+ }
+
+ private void launchPlayerButton_Click(object sender, RoutedEventArgs e)
+ {
+ ProcessStartInfo startInfo = new ProcessStartInfo();
+ startInfo.FileName = "KaraokePlayer.exe";
+ Process.Start(startInfo);
+ }
+
+ private void syncLibraryButton_Click(object sender, RoutedEventArgs e)
+ {
+ ProcessStartInfo startInfo = new ProcessStartInfo();
+ startInfo.FileName = "SongCrawler.exe";
+ startInfo.Arguments = string.Format("{0} {1}", this.settings.controllerName, this.settings.songsLocationPath);
+ Process.Start(startInfo);
+
+ }
+
+ private void updateBillboardButton_Click(object sender, RoutedEventArgs e)
+ {
+ ProcessStartInfo startInfo = new ProcessStartInfo();
+ startInfo.FileName = "BillboardPlaylistUpdater.exe";
+ startInfo.Arguments = this.settings.controllerName;
+ Process.Start(startInfo);
+ }
+ }
+}
diff --git a/SingsALot/Properties/AssemblyInfo.cs b/SingsALot/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..346562a
--- /dev/null
+++ b/SingsALot/Properties/AssemblyInfo.cs
@@ -0,0 +1,55 @@
+using System.Reflection;
+using System.Resources;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+using System.Windows;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("SingsALot")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("SingsALot")]
+[assembly: AssemblyCopyright("Copyright © 2017")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+//In order to begin building localizable applications, set
+//CultureYouAreCodingWith in your .csproj file
+//inside a . For example, if you are using US english
+//in your source files, set the to en-US. Then uncomment
+//the NeutralResourceLanguage attribute below. Update the "en-US" in
+//the line below to match the UICulture setting in the project file.
+
+//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
+
+
+[assembly: ThemeInfo(
+ ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
+ //(used if a resource is not found in the page,
+ // or application resource dictionaries)
+ ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
+ //(used if a resource is not found in the page,
+ // app, or any theme specific resource dictionaries)
+)]
+
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/SingsALot/Properties/Resources.Designer.cs b/SingsALot/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..77647f9
--- /dev/null
+++ b/SingsALot/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace SingsALot.Properties
+{
+
+
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources
+ {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources()
+ {
+ }
+
+ ///
+ /// Returns the cached ResourceManager instance used by this class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager
+ {
+ get
+ {
+ if ((resourceMan == null))
+ {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SingsALot.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture
+ {
+ get
+ {
+ return resourceCulture;
+ }
+ set
+ {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/SingsALot/Properties/Resources.resx b/SingsALot/Properties/Resources.resx
new file mode 100644
index 0000000..af7dbeb
--- /dev/null
+++ b/SingsALot/Properties/Resources.resx
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/SingsALot/Properties/Settings.Designer.cs b/SingsALot/Properties/Settings.Designer.cs
new file mode 100644
index 0000000..e71744d
--- /dev/null
+++ b/SingsALot/Properties/Settings.Designer.cs
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace SingsALot.Properties
+{
+
+
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
+ internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
+ {
+
+ private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+ public static Settings Default
+ {
+ get
+ {
+ return defaultInstance;
+ }
+ }
+ }
+}
diff --git a/SingsALot/Properties/Settings.settings b/SingsALot/Properties/Settings.settings
new file mode 100644
index 0000000..033d7a5
--- /dev/null
+++ b/SingsALot/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/SingsALot/SingsALot.csproj b/SingsALot/SingsALot.csproj
new file mode 100644
index 0000000..459d707
--- /dev/null
+++ b/SingsALot/SingsALot.csproj
@@ -0,0 +1,1055 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {40954789-DA71-4C0B-8D03-184B19248982}
+ WinExe
+ SingsALot
+ SingsALot
+ v4.6.1
+ 512
+ {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
+ 4
+ true
+ publish\
+ true
+ Disk
+ false
+ Foreground
+ 7
+ Days
+ false
+ false
+ true
+ Sings A Lot
+ Team Herse
+ 0
+ 1.0.0.%2a
+ false
+ false
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+ karaoke.ico
+
+
+
+ ..\packages\OpenDialog.1.1.1\lib\net45\Gat.Controls.OpenDialog.dll
+
+
+
+
+
+
+
+
+
+
+
+ 4.0
+
+
+
+
+
+
+
+ MSBuild:Compile
+ Designer
+
+
+ MSBuild:Compile
+ Designer
+
+
+ App.xaml
+ Code
+
+
+
+ MainWindow.xaml
+ Code
+
+
+
+
+ Code
+
+
+ True
+ True
+ Resources.resx
+
+
+ True
+ Settings.settings
+ True
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+ PreserveNewest
+
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+
+
+
+
+
+ {ae892df7-c43e-422a-b82e-29b5e6e0341c}
+ BillboardPlaylistUpdater
+
+
+ {2cf318e2-04b5-40fc-9577-6dac62b86fb2}
+ KaraokePlayer
+
+
+ {82f60dd0-80ec-49c8-9e7c-95a250783e68}
+ SongCrawler
+
+
+
+
+
+ Always
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+
+
+ False
+ Microsoft .NET Framework 4.6.1 %28x86 and x64%29
+ true
+
+
+ False
+ .NET Framework 3.5 SP1
+ false
+
+
+
+
\ No newline at end of file
diff --git a/SingsALot/karaoke.ico b/SingsALot/karaoke.ico
new file mode 100644
index 0000000..86df9ef
Binary files /dev/null and b/SingsALot/karaoke.ico differ
diff --git a/SingsALot/lib/taglib-sharp.dll b/SingsALot/lib/taglib-sharp.dll
new file mode 100644
index 0000000..4d61148
Binary files /dev/null and b/SingsALot/lib/taglib-sharp.dll differ
diff --git a/SingsALot/lib/vlc/libvlc.dll b/SingsALot/lib/vlc/libvlc.dll
new file mode 100644
index 0000000..055564b
Binary files /dev/null and b/SingsALot/lib/vlc/libvlc.dll differ
diff --git a/SingsALot/lib/vlc/libvlccore.dll b/SingsALot/lib/vlc/libvlccore.dll
new file mode 100644
index 0000000..ff95164
Binary files /dev/null and b/SingsALot/lib/vlc/libvlccore.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libaccess_attachment_plugin.dll b/SingsALot/lib/vlc/plugins/access/libaccess_attachment_plugin.dll
new file mode 100644
index 0000000..c669ee8
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libaccess_attachment_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libaccess_bd_plugin.dll b/SingsALot/lib/vlc/plugins/access/libaccess_bd_plugin.dll
new file mode 100644
index 0000000..1b959cb
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libaccess_bd_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libaccess_ftp_plugin.dll b/SingsALot/lib/vlc/plugins/access/libaccess_ftp_plugin.dll
new file mode 100644
index 0000000..559583c
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libaccess_ftp_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libaccess_http_plugin.dll b/SingsALot/lib/vlc/plugins/access/libaccess_http_plugin.dll
new file mode 100644
index 0000000..ab3b057
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libaccess_http_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libaccess_imem_plugin.dll b/SingsALot/lib/vlc/plugins/access/libaccess_imem_plugin.dll
new file mode 100644
index 0000000..448c5ff
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libaccess_imem_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libaccess_mms_plugin.dll b/SingsALot/lib/vlc/plugins/access/libaccess_mms_plugin.dll
new file mode 100644
index 0000000..cf2bf9e
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libaccess_mms_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libaccess_rar_plugin.dll b/SingsALot/lib/vlc/plugins/access/libaccess_rar_plugin.dll
new file mode 100644
index 0000000..eea4b97
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libaccess_rar_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libaccess_realrtsp_plugin.dll b/SingsALot/lib/vlc/plugins/access/libaccess_realrtsp_plugin.dll
new file mode 100644
index 0000000..a91148c
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libaccess_realrtsp_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libaccess_smb_plugin.dll b/SingsALot/lib/vlc/plugins/access/libaccess_smb_plugin.dll
new file mode 100644
index 0000000..2803596
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libaccess_smb_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libaccess_tcp_plugin.dll b/SingsALot/lib/vlc/plugins/access/libaccess_tcp_plugin.dll
new file mode 100644
index 0000000..4836e3a
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libaccess_tcp_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libaccess_udp_plugin.dll b/SingsALot/lib/vlc/plugins/access/libaccess_udp_plugin.dll
new file mode 100644
index 0000000..a556cc4
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libaccess_udp_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libaccess_vdr_plugin.dll b/SingsALot/lib/vlc/plugins/access/libaccess_vdr_plugin.dll
new file mode 100644
index 0000000..48cf46f
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libaccess_vdr_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libcdda_plugin.dll b/SingsALot/lib/vlc/plugins/access/libcdda_plugin.dll
new file mode 100644
index 0000000..a28af38
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libcdda_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libdshow_plugin.dll b/SingsALot/lib/vlc/plugins/access/libdshow_plugin.dll
new file mode 100644
index 0000000..213c46f
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libdshow_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libdtv_plugin.dll b/SingsALot/lib/vlc/plugins/access/libdtv_plugin.dll
new file mode 100644
index 0000000..69964f3
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libdtv_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libdvdnav_plugin.dll b/SingsALot/lib/vlc/plugins/access/libdvdnav_plugin.dll
new file mode 100644
index 0000000..9672204
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libdvdnav_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libdvdread_plugin.dll b/SingsALot/lib/vlc/plugins/access/libdvdread_plugin.dll
new file mode 100644
index 0000000..c15f9c2
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libdvdread_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libfilesystem_plugin.dll b/SingsALot/lib/vlc/plugins/access/libfilesystem_plugin.dll
new file mode 100644
index 0000000..3591137
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libfilesystem_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libidummy_plugin.dll b/SingsALot/lib/vlc/plugins/access/libidummy_plugin.dll
new file mode 100644
index 0000000..ca075f9
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libidummy_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/liblibbluray_plugin.dll b/SingsALot/lib/vlc/plugins/access/liblibbluray_plugin.dll
new file mode 100644
index 0000000..a0a1f00
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/liblibbluray_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/liblive555_plugin.dll b/SingsALot/lib/vlc/plugins/access/liblive555_plugin.dll
new file mode 100644
index 0000000..d063191
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/liblive555_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/librtp_plugin.dll b/SingsALot/lib/vlc/plugins/access/librtp_plugin.dll
new file mode 100644
index 0000000..8f03c06
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/librtp_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libscreen_plugin.dll b/SingsALot/lib/vlc/plugins/access/libscreen_plugin.dll
new file mode 100644
index 0000000..428dd35
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libscreen_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libsdp_plugin.dll b/SingsALot/lib/vlc/plugins/access/libsdp_plugin.dll
new file mode 100644
index 0000000..9a33ba7
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libsdp_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libshm_plugin.dll b/SingsALot/lib/vlc/plugins/access/libshm_plugin.dll
new file mode 100644
index 0000000..a9b90e9
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libshm_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libstream_filter_rar_plugin.dll b/SingsALot/lib/vlc/plugins/access/libstream_filter_rar_plugin.dll
new file mode 100644
index 0000000..0ebaade
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libstream_filter_rar_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libtimecode_plugin.dll b/SingsALot/lib/vlc/plugins/access/libtimecode_plugin.dll
new file mode 100644
index 0000000..e9d2cdd
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libtimecode_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libvcd_plugin.dll b/SingsALot/lib/vlc/plugins/access/libvcd_plugin.dll
new file mode 100644
index 0000000..3966d74
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libvcd_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access/libzip_plugin.dll b/SingsALot/lib/vlc/plugins/access/libzip_plugin.dll
new file mode 100644
index 0000000..0ce3d7a
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access/libzip_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access_output/libaccess_output_dummy_plugin.dll b/SingsALot/lib/vlc/plugins/access_output/libaccess_output_dummy_plugin.dll
new file mode 100644
index 0000000..39a7273
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access_output/libaccess_output_dummy_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access_output/libaccess_output_file_plugin.dll b/SingsALot/lib/vlc/plugins/access_output/libaccess_output_file_plugin.dll
new file mode 100644
index 0000000..890c80a
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access_output/libaccess_output_file_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access_output/libaccess_output_http_plugin.dll b/SingsALot/lib/vlc/plugins/access_output/libaccess_output_http_plugin.dll
new file mode 100644
index 0000000..04c41de
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access_output/libaccess_output_http_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access_output/libaccess_output_livehttp_plugin.dll b/SingsALot/lib/vlc/plugins/access_output/libaccess_output_livehttp_plugin.dll
new file mode 100644
index 0000000..5e12a34
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access_output/libaccess_output_livehttp_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access_output/libaccess_output_shout_plugin.dll b/SingsALot/lib/vlc/plugins/access_output/libaccess_output_shout_plugin.dll
new file mode 100644
index 0000000..d9dc83d
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access_output/libaccess_output_shout_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/access_output/libaccess_output_udp_plugin.dll b/SingsALot/lib/vlc/plugins/access_output/libaccess_output_udp_plugin.dll
new file mode 100644
index 0000000..28acf80
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/access_output/libaccess_output_udp_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/liba52tofloat32_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/liba52tofloat32_plugin.dll
new file mode 100644
index 0000000..281bc47
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/liba52tofloat32_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/liba52tospdif_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/liba52tospdif_plugin.dll
new file mode 100644
index 0000000..6388b17
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/liba52tospdif_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libaudio_format_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libaudio_format_plugin.dll
new file mode 100644
index 0000000..98e7b27
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libaudio_format_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libaudiobargraph_a_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libaudiobargraph_a_plugin.dll
new file mode 100644
index 0000000..0055259
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libaudiobargraph_a_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libchorus_flanger_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libchorus_flanger_plugin.dll
new file mode 100644
index 0000000..32bfee1
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libchorus_flanger_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libcompressor_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libcompressor_plugin.dll
new file mode 100644
index 0000000..28c64bb
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libcompressor_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libdolby_surround_decoder_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libdolby_surround_decoder_plugin.dll
new file mode 100644
index 0000000..6c4422a
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libdolby_surround_decoder_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libdtstofloat32_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libdtstofloat32_plugin.dll
new file mode 100644
index 0000000..ebba5a0
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libdtstofloat32_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libdtstospdif_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libdtstospdif_plugin.dll
new file mode 100644
index 0000000..c00b53b
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libdtstospdif_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libequalizer_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libequalizer_plugin.dll
new file mode 100644
index 0000000..8c41c56
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libequalizer_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libgain_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libgain_plugin.dll
new file mode 100644
index 0000000..9dad2c7
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libgain_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libheadphone_channel_mixer_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libheadphone_channel_mixer_plugin.dll
new file mode 100644
index 0000000..b03a3cf
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libheadphone_channel_mixer_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libkaraoke_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libkaraoke_plugin.dll
new file mode 100644
index 0000000..06549b2
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libkaraoke_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libmono_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libmono_plugin.dll
new file mode 100644
index 0000000..57a51db
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libmono_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libmpgatofixed32_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libmpgatofixed32_plugin.dll
new file mode 100644
index 0000000..4a2f4e2
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libmpgatofixed32_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libnormvol_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libnormvol_plugin.dll
new file mode 100644
index 0000000..1b92760
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libnormvol_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libparam_eq_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libparam_eq_plugin.dll
new file mode 100644
index 0000000..fa40d0a
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libparam_eq_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libremap_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libremap_plugin.dll
new file mode 100644
index 0000000..cf87b35
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libremap_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libsamplerate_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libsamplerate_plugin.dll
new file mode 100644
index 0000000..f323e5f
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libsamplerate_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libscaletempo_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libscaletempo_plugin.dll
new file mode 100644
index 0000000..36b399b
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libscaletempo_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libsimple_channel_mixer_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libsimple_channel_mixer_plugin.dll
new file mode 100644
index 0000000..4355f85
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libsimple_channel_mixer_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libspatializer_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libspatializer_plugin.dll
new file mode 100644
index 0000000..89b0c7f
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libspatializer_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libspeex_resampler_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libspeex_resampler_plugin.dll
new file mode 100644
index 0000000..6f8c1ae
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libspeex_resampler_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libstereo_widen_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libstereo_widen_plugin.dll
new file mode 100644
index 0000000..a35e977
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libstereo_widen_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libtrivial_channel_mixer_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libtrivial_channel_mixer_plugin.dll
new file mode 100644
index 0000000..ea0d10d
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libtrivial_channel_mixer_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_filter/libugly_resampler_plugin.dll b/SingsALot/lib/vlc/plugins/audio_filter/libugly_resampler_plugin.dll
new file mode 100644
index 0000000..844a361
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_filter/libugly_resampler_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_mixer/libfloat_mixer_plugin.dll b/SingsALot/lib/vlc/plugins/audio_mixer/libfloat_mixer_plugin.dll
new file mode 100644
index 0000000..fac1036
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_mixer/libfloat_mixer_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_mixer/libinteger_mixer_plugin.dll b/SingsALot/lib/vlc/plugins/audio_mixer/libinteger_mixer_plugin.dll
new file mode 100644
index 0000000..ef8e64c
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_mixer/libinteger_mixer_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_output/libadummy_plugin.dll b/SingsALot/lib/vlc/plugins/audio_output/libadummy_plugin.dll
new file mode 100644
index 0000000..ef06030
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_output/libadummy_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_output/libafile_plugin.dll b/SingsALot/lib/vlc/plugins/audio_output/libafile_plugin.dll
new file mode 100644
index 0000000..5e1db79
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_output/libafile_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_output/libamem_plugin.dll b/SingsALot/lib/vlc/plugins/audio_output/libamem_plugin.dll
new file mode 100644
index 0000000..0bd3b27
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_output/libamem_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_output/libdirectsound_plugin.dll b/SingsALot/lib/vlc/plugins/audio_output/libdirectsound_plugin.dll
new file mode 100644
index 0000000..82a14da
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_output/libdirectsound_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_output/libmmdevice_plugin.dll b/SingsALot/lib/vlc/plugins/audio_output/libmmdevice_plugin.dll
new file mode 100644
index 0000000..b12c3b7
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_output/libmmdevice_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/audio_output/libwaveout_plugin.dll b/SingsALot/lib/vlc/plugins/audio_output/libwaveout_plugin.dll
new file mode 100644
index 0000000..c4950fc
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/audio_output/libwaveout_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/liba52_plugin.dll b/SingsALot/lib/vlc/plugins/codec/liba52_plugin.dll
new file mode 100644
index 0000000..5de4c61
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/liba52_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libadpcm_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libadpcm_plugin.dll
new file mode 100644
index 0000000..8878536
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libadpcm_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libaes3_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libaes3_plugin.dll
new file mode 100644
index 0000000..2fb9672
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libaes3_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libaraw_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libaraw_plugin.dll
new file mode 100644
index 0000000..9055f5a
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libaraw_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libavcodec_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libavcodec_plugin.dll
new file mode 100644
index 0000000..829912d
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libavcodec_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libcc_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libcc_plugin.dll
new file mode 100644
index 0000000..62e2686
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libcc_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libcdg_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libcdg_plugin.dll
new file mode 100644
index 0000000..8f995a1
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libcdg_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libcrystalhd_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libcrystalhd_plugin.dll
new file mode 100644
index 0000000..bc4ce7d
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libcrystalhd_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libcvdsub_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libcvdsub_plugin.dll
new file mode 100644
index 0000000..3b362b9
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libcvdsub_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libddummy_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libddummy_plugin.dll
new file mode 100644
index 0000000..2438162
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libddummy_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libdmo_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libdmo_plugin.dll
new file mode 100644
index 0000000..5b5a04a
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libdmo_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libdts_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libdts_plugin.dll
new file mode 100644
index 0000000..ec8548d
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libdts_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libdvbsub_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libdvbsub_plugin.dll
new file mode 100644
index 0000000..ad029ac
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libdvbsub_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libdxva2_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libdxva2_plugin.dll
new file mode 100644
index 0000000..a44ac1a
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libdxva2_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libedummy_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libedummy_plugin.dll
new file mode 100644
index 0000000..d373cf4
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libedummy_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libfaad_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libfaad_plugin.dll
new file mode 100644
index 0000000..5befe4b
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libfaad_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libflac_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libflac_plugin.dll
new file mode 100644
index 0000000..e3623dc
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libflac_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libg711_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libg711_plugin.dll
new file mode 100644
index 0000000..7e57459
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libg711_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libkate_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libkate_plugin.dll
new file mode 100644
index 0000000..6890c3b
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libkate_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/liblibass_plugin.dll b/SingsALot/lib/vlc/plugins/codec/liblibass_plugin.dll
new file mode 100644
index 0000000..305be67
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/liblibass_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/liblibmpeg2_plugin.dll b/SingsALot/lib/vlc/plugins/codec/liblibmpeg2_plugin.dll
new file mode 100644
index 0000000..9fa482e
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/liblibmpeg2_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/liblpcm_plugin.dll b/SingsALot/lib/vlc/plugins/codec/liblpcm_plugin.dll
new file mode 100644
index 0000000..af3c47f
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/liblpcm_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libmpeg_audio_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libmpeg_audio_plugin.dll
new file mode 100644
index 0000000..6293fc3
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libmpeg_audio_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libopus_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libopus_plugin.dll
new file mode 100644
index 0000000..5c912cc
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libopus_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libpng_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libpng_plugin.dll
new file mode 100644
index 0000000..737478a
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libpng_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libquicktime_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libquicktime_plugin.dll
new file mode 100644
index 0000000..34523bc
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libquicktime_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/librawvideo_plugin.dll b/SingsALot/lib/vlc/plugins/codec/librawvideo_plugin.dll
new file mode 100644
index 0000000..94d4ad9
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/librawvideo_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libschroedinger_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libschroedinger_plugin.dll
new file mode 100644
index 0000000..dd9e027
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libschroedinger_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libscte27_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libscte27_plugin.dll
new file mode 100644
index 0000000..99d6005
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libscte27_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libspeex_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libspeex_plugin.dll
new file mode 100644
index 0000000..189aeb4
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libspeex_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libspudec_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libspudec_plugin.dll
new file mode 100644
index 0000000..9f00a40
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libspudec_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libstl_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libstl_plugin.dll
new file mode 100644
index 0000000..4b08a6c
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libstl_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libsubsdec_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libsubsdec_plugin.dll
new file mode 100644
index 0000000..7ae408c
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libsubsdec_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libsubsusf_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libsubsusf_plugin.dll
new file mode 100644
index 0000000..752e184
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libsubsusf_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libsvcdsub_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libsvcdsub_plugin.dll
new file mode 100644
index 0000000..bbbdf5b
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libsvcdsub_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libt140_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libt140_plugin.dll
new file mode 100644
index 0000000..de42f46
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libt140_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libtheora_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libtheora_plugin.dll
new file mode 100644
index 0000000..bc77c71
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libtheora_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libtwolame_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libtwolame_plugin.dll
new file mode 100644
index 0000000..acfc31e
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libtwolame_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libuleaddvaudio_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libuleaddvaudio_plugin.dll
new file mode 100644
index 0000000..59797a1
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libuleaddvaudio_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libvorbis_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libvorbis_plugin.dll
new file mode 100644
index 0000000..eb12942
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libvorbis_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libx264_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libx264_plugin.dll
new file mode 100644
index 0000000..3ed6e97
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libx264_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/codec/libzvbi_plugin.dll b/SingsALot/lib/vlc/plugins/codec/libzvbi_plugin.dll
new file mode 100644
index 0000000..f23398b
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/codec/libzvbi_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/control/libdummy_plugin.dll b/SingsALot/lib/vlc/plugins/control/libdummy_plugin.dll
new file mode 100644
index 0000000..833d510
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/control/libdummy_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/control/libgestures_plugin.dll b/SingsALot/lib/vlc/plugins/control/libgestures_plugin.dll
new file mode 100644
index 0000000..e00da41
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/control/libgestures_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/control/libglobalhotkeys_plugin.dll b/SingsALot/lib/vlc/plugins/control/libglobalhotkeys_plugin.dll
new file mode 100644
index 0000000..9e575af
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/control/libglobalhotkeys_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/control/libhotkeys_plugin.dll b/SingsALot/lib/vlc/plugins/control/libhotkeys_plugin.dll
new file mode 100644
index 0000000..6e483bc
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/control/libhotkeys_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/control/libnetsync_plugin.dll b/SingsALot/lib/vlc/plugins/control/libnetsync_plugin.dll
new file mode 100644
index 0000000..bff28bc
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/control/libnetsync_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/control/libntservice_plugin.dll b/SingsALot/lib/vlc/plugins/control/libntservice_plugin.dll
new file mode 100644
index 0000000..cac6109
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/control/libntservice_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/control/liboldrc_plugin.dll b/SingsALot/lib/vlc/plugins/control/liboldrc_plugin.dll
new file mode 100644
index 0000000..a78ea0c
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/control/liboldrc_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libaiff_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libaiff_plugin.dll
new file mode 100644
index 0000000..9eb9ad1
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libaiff_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libasf_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libasf_plugin.dll
new file mode 100644
index 0000000..e1bdfe0
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libasf_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libau_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libau_plugin.dll
new file mode 100644
index 0000000..b828928
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libau_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libavi_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libavi_plugin.dll
new file mode 100644
index 0000000..392d929
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libavi_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libdemux_cdg_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libdemux_cdg_plugin.dll
new file mode 100644
index 0000000..7883b8d
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libdemux_cdg_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libdemux_stl_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libdemux_stl_plugin.dll
new file mode 100644
index 0000000..1b73f3a
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libdemux_stl_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libdemuxdump_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libdemuxdump_plugin.dll
new file mode 100644
index 0000000..eaa755c
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libdemuxdump_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libdirac_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libdirac_plugin.dll
new file mode 100644
index 0000000..36b44c1
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libdirac_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libes_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libes_plugin.dll
new file mode 100644
index 0000000..12aee51
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libes_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libflacsys_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libflacsys_plugin.dll
new file mode 100644
index 0000000..1e459f0
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libflacsys_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libgme_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libgme_plugin.dll
new file mode 100644
index 0000000..e916b3e
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libgme_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libh264_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libh264_plugin.dll
new file mode 100644
index 0000000..d81025d
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libh264_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libimage_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libimage_plugin.dll
new file mode 100644
index 0000000..dcb4e35
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libimage_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libmjpeg_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libmjpeg_plugin.dll
new file mode 100644
index 0000000..a2ea495
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libmjpeg_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libmkv_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libmkv_plugin.dll
new file mode 100644
index 0000000..35d7e25
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libmkv_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libmod_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libmod_plugin.dll
new file mode 100644
index 0000000..92b4679
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libmod_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libmp4_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libmp4_plugin.dll
new file mode 100644
index 0000000..22e0cd3
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libmp4_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libmpc_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libmpc_plugin.dll
new file mode 100644
index 0000000..194bacd
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libmpc_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libmpgv_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libmpgv_plugin.dll
new file mode 100644
index 0000000..9facdf0
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libmpgv_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libnsc_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libnsc_plugin.dll
new file mode 100644
index 0000000..487ff1f
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libnsc_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libnsv_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libnsv_plugin.dll
new file mode 100644
index 0000000..c4ca193
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libnsv_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libnuv_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libnuv_plugin.dll
new file mode 100644
index 0000000..2f23237
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libnuv_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libogg_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libogg_plugin.dll
new file mode 100644
index 0000000..e94a66d
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libogg_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libplaylist_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libplaylist_plugin.dll
new file mode 100644
index 0000000..5c9e580
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libplaylist_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libps_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libps_plugin.dll
new file mode 100644
index 0000000..bbb90f2
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libps_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libpva_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libpva_plugin.dll
new file mode 100644
index 0000000..47ea3ae
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libpva_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/librawaud_plugin.dll b/SingsALot/lib/vlc/plugins/demux/librawaud_plugin.dll
new file mode 100644
index 0000000..33d7404
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/librawaud_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/librawdv_plugin.dll b/SingsALot/lib/vlc/plugins/demux/librawdv_plugin.dll
new file mode 100644
index 0000000..4872115
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/librawdv_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/librawvid_plugin.dll b/SingsALot/lib/vlc/plugins/demux/librawvid_plugin.dll
new file mode 100644
index 0000000..8817904
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/librawvid_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libreal_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libreal_plugin.dll
new file mode 100644
index 0000000..982215d
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libreal_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libsid_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libsid_plugin.dll
new file mode 100644
index 0000000..9d8eb8c
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libsid_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libsmf_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libsmf_plugin.dll
new file mode 100644
index 0000000..f9dcefb
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libsmf_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libsubtitle_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libsubtitle_plugin.dll
new file mode 100644
index 0000000..29f74c0
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libsubtitle_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libts_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libts_plugin.dll
new file mode 100644
index 0000000..dd50b6f
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libts_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libtta_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libtta_plugin.dll
new file mode 100644
index 0000000..bf2d91e
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libtta_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libty_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libty_plugin.dll
new file mode 100644
index 0000000..47ffc74
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libty_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libvc1_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libvc1_plugin.dll
new file mode 100644
index 0000000..4b363a8
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libvc1_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libvobsub_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libvobsub_plugin.dll
new file mode 100644
index 0000000..5402900
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libvobsub_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libvoc_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libvoc_plugin.dll
new file mode 100644
index 0000000..2371efe
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libvoc_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libwav_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libwav_plugin.dll
new file mode 100644
index 0000000..b3cdef5
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libwav_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/demux/libxa_plugin.dll b/SingsALot/lib/vlc/plugins/demux/libxa_plugin.dll
new file mode 100644
index 0000000..6b4e844
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/demux/libxa_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/gui/libqt4_plugin.dll b/SingsALot/lib/vlc/plugins/gui/libqt4_plugin.dll
new file mode 100644
index 0000000..a4e9b89
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/gui/libqt4_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/gui/libskins2_plugin.dll b/SingsALot/lib/vlc/plugins/gui/libskins2_plugin.dll
new file mode 100644
index 0000000..89dc53f
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/gui/libskins2_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/lua/liblua_plugin.dll b/SingsALot/lib/vlc/plugins/lua/liblua_plugin.dll
new file mode 100644
index 0000000..75cc750
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/lua/liblua_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/meta_engine/libfolder_plugin.dll b/SingsALot/lib/vlc/plugins/meta_engine/libfolder_plugin.dll
new file mode 100644
index 0000000..4d98a7b
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/meta_engine/libfolder_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/meta_engine/libtaglib_plugin.dll b/SingsALot/lib/vlc/plugins/meta_engine/libtaglib_plugin.dll
new file mode 100644
index 0000000..8349ef9
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/meta_engine/libtaglib_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/misc/libaudioscrobbler_plugin.dll b/SingsALot/lib/vlc/plugins/misc/libaudioscrobbler_plugin.dll
new file mode 100644
index 0000000..7bbe779
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/misc/libaudioscrobbler_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/misc/libexport_plugin.dll b/SingsALot/lib/vlc/plugins/misc/libexport_plugin.dll
new file mode 100644
index 0000000..d86e974
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/misc/libexport_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/misc/libfingerprinter_plugin.dll b/SingsALot/lib/vlc/plugins/misc/libfingerprinter_plugin.dll
new file mode 100644
index 0000000..fd750a3
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/misc/libfingerprinter_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/misc/libgnutls_plugin.dll b/SingsALot/lib/vlc/plugins/misc/libgnutls_plugin.dll
new file mode 100644
index 0000000..e52f7cb
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/misc/libgnutls_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/misc/liblogger_plugin.dll b/SingsALot/lib/vlc/plugins/misc/liblogger_plugin.dll
new file mode 100644
index 0000000..4e9b7ce
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/misc/liblogger_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/misc/libstats_plugin.dll b/SingsALot/lib/vlc/plugins/misc/libstats_plugin.dll
new file mode 100644
index 0000000..1c63e25
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/misc/libstats_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/misc/libvod_rtsp_plugin.dll b/SingsALot/lib/vlc/plugins/misc/libvod_rtsp_plugin.dll
new file mode 100644
index 0000000..56ed846
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/misc/libvod_rtsp_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/misc/libxml_plugin.dll b/SingsALot/lib/vlc/plugins/misc/libxml_plugin.dll
new file mode 100644
index 0000000..f7f2dca
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/misc/libxml_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/mmx/libi420_rgb_mmx_plugin.dll b/SingsALot/lib/vlc/plugins/mmx/libi420_rgb_mmx_plugin.dll
new file mode 100644
index 0000000..9a7d287
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/mmx/libi420_rgb_mmx_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/mmx/libi420_yuy2_mmx_plugin.dll b/SingsALot/lib/vlc/plugins/mmx/libi420_yuy2_mmx_plugin.dll
new file mode 100644
index 0000000..476d376
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/mmx/libi420_yuy2_mmx_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/mmx/libi422_yuy2_mmx_plugin.dll b/SingsALot/lib/vlc/plugins/mmx/libi422_yuy2_mmx_plugin.dll
new file mode 100644
index 0000000..24f4112
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/mmx/libi422_yuy2_mmx_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/mux/libmux_asf_plugin.dll b/SingsALot/lib/vlc/plugins/mux/libmux_asf_plugin.dll
new file mode 100644
index 0000000..690d4b1
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/mux/libmux_asf_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/mux/libmux_avi_plugin.dll b/SingsALot/lib/vlc/plugins/mux/libmux_avi_plugin.dll
new file mode 100644
index 0000000..3a1702b
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/mux/libmux_avi_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/mux/libmux_dummy_plugin.dll b/SingsALot/lib/vlc/plugins/mux/libmux_dummy_plugin.dll
new file mode 100644
index 0000000..598ea4f
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/mux/libmux_dummy_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/mux/libmux_mp4_plugin.dll b/SingsALot/lib/vlc/plugins/mux/libmux_mp4_plugin.dll
new file mode 100644
index 0000000..8043239
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/mux/libmux_mp4_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/mux/libmux_mpjpeg_plugin.dll b/SingsALot/lib/vlc/plugins/mux/libmux_mpjpeg_plugin.dll
new file mode 100644
index 0000000..fbd2e5c
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/mux/libmux_mpjpeg_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/mux/libmux_ogg_plugin.dll b/SingsALot/lib/vlc/plugins/mux/libmux_ogg_plugin.dll
new file mode 100644
index 0000000..018d51f
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/mux/libmux_ogg_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/mux/libmux_ps_plugin.dll b/SingsALot/lib/vlc/plugins/mux/libmux_ps_plugin.dll
new file mode 100644
index 0000000..12a54fc
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/mux/libmux_ps_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/mux/libmux_ts_plugin.dll b/SingsALot/lib/vlc/plugins/mux/libmux_ts_plugin.dll
new file mode 100644
index 0000000..c2f9446
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/mux/libmux_ts_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/mux/libmux_wav_plugin.dll b/SingsALot/lib/vlc/plugins/mux/libmux_wav_plugin.dll
new file mode 100644
index 0000000..6234d68
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/mux/libmux_wav_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_copy_plugin.dll b/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_copy_plugin.dll
new file mode 100644
index 0000000..c8691c6
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_copy_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_dirac_plugin.dll b/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_dirac_plugin.dll
new file mode 100644
index 0000000..c9aff55
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_dirac_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_flac_plugin.dll b/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_flac_plugin.dll
new file mode 100644
index 0000000..7a82e13
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_flac_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_h264_plugin.dll b/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_h264_plugin.dll
new file mode 100644
index 0000000..df12d44
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_h264_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_mlp_plugin.dll b/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_mlp_plugin.dll
new file mode 100644
index 0000000..d75411f
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_mlp_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_mpeg4audio_plugin.dll b/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_mpeg4audio_plugin.dll
new file mode 100644
index 0000000..8c70dac
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_mpeg4audio_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_mpeg4video_plugin.dll b/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_mpeg4video_plugin.dll
new file mode 100644
index 0000000..a48a20c
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_mpeg4video_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_mpegvideo_plugin.dll b/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_mpegvideo_plugin.dll
new file mode 100644
index 0000000..2c61f4a
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_mpegvideo_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_vc1_plugin.dll b/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_vc1_plugin.dll
new file mode 100644
index 0000000..cabaa65
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/packetizer/libpacketizer_vc1_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/plugins.dat b/SingsALot/lib/vlc/plugins/plugins.dat
new file mode 100644
index 0000000..2def8da
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/plugins.dat differ
diff --git a/SingsALot/lib/vlc/plugins/services_discovery/libmediadirs_plugin.dll b/SingsALot/lib/vlc/plugins/services_discovery/libmediadirs_plugin.dll
new file mode 100644
index 0000000..e630aab
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/services_discovery/libmediadirs_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/services_discovery/libpodcast_plugin.dll b/SingsALot/lib/vlc/plugins/services_discovery/libpodcast_plugin.dll
new file mode 100644
index 0000000..0795f5a
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/services_discovery/libpodcast_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/services_discovery/libsap_plugin.dll b/SingsALot/lib/vlc/plugins/services_discovery/libsap_plugin.dll
new file mode 100644
index 0000000..f63f9ed
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/services_discovery/libsap_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/services_discovery/libupnp_plugin.dll b/SingsALot/lib/vlc/plugins/services_discovery/libupnp_plugin.dll
new file mode 100644
index 0000000..cb8a174
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/services_discovery/libupnp_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/services_discovery/libwindrive_plugin.dll b/SingsALot/lib/vlc/plugins/services_discovery/libwindrive_plugin.dll
new file mode 100644
index 0000000..f1eabff
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/services_discovery/libwindrive_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/sse2/libi420_rgb_sse2_plugin.dll b/SingsALot/lib/vlc/plugins/sse2/libi420_rgb_sse2_plugin.dll
new file mode 100644
index 0000000..76ce0c5
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/sse2/libi420_rgb_sse2_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/sse2/libi420_yuy2_sse2_plugin.dll b/SingsALot/lib/vlc/plugins/sse2/libi420_yuy2_sse2_plugin.dll
new file mode 100644
index 0000000..352a578
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/sse2/libi420_yuy2_sse2_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/sse2/libi422_yuy2_sse2_plugin.dll b/SingsALot/lib/vlc/plugins/sse2/libi422_yuy2_sse2_plugin.dll
new file mode 100644
index 0000000..eefddcd
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/sse2/libi422_yuy2_sse2_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_filter/libdash_plugin.dll b/SingsALot/lib/vlc/plugins/stream_filter/libdash_plugin.dll
new file mode 100644
index 0000000..1fb868a
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_filter/libdash_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_filter/libhttplive_plugin.dll b/SingsALot/lib/vlc/plugins/stream_filter/libhttplive_plugin.dll
new file mode 100644
index 0000000..0a37095
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_filter/libhttplive_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_filter/librecord_plugin.dll b/SingsALot/lib/vlc/plugins/stream_filter/librecord_plugin.dll
new file mode 100644
index 0000000..ac30f0d
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_filter/librecord_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_filter/libsmooth_plugin.dll b/SingsALot/lib/vlc/plugins/stream_filter/libsmooth_plugin.dll
new file mode 100644
index 0000000..bcefa3a
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_filter/libsmooth_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_out/libstream_out_autodel_plugin.dll b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_autodel_plugin.dll
new file mode 100644
index 0000000..b718523
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_autodel_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_out/libstream_out_bridge_plugin.dll b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_bridge_plugin.dll
new file mode 100644
index 0000000..e9ca3d6
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_bridge_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_out/libstream_out_chromaprint_plugin.dll b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_chromaprint_plugin.dll
new file mode 100644
index 0000000..8858061
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_chromaprint_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_out/libstream_out_delay_plugin.dll b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_delay_plugin.dll
new file mode 100644
index 0000000..82cd392
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_delay_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_out/libstream_out_description_plugin.dll b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_description_plugin.dll
new file mode 100644
index 0000000..0a96e69
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_description_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_out/libstream_out_display_plugin.dll b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_display_plugin.dll
new file mode 100644
index 0000000..85625cb
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_display_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_out/libstream_out_dummy_plugin.dll b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_dummy_plugin.dll
new file mode 100644
index 0000000..d9f2fb9
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_dummy_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_out/libstream_out_duplicate_plugin.dll b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_duplicate_plugin.dll
new file mode 100644
index 0000000..40a3e0d
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_duplicate_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_out/libstream_out_es_plugin.dll b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_es_plugin.dll
new file mode 100644
index 0000000..06558f9
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_es_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_out/libstream_out_gather_plugin.dll b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_gather_plugin.dll
new file mode 100644
index 0000000..b479fee
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_gather_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_out/libstream_out_langfromtelx_plugin.dll b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_langfromtelx_plugin.dll
new file mode 100644
index 0000000..8ea5b7a
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_langfromtelx_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_out/libstream_out_mosaic_bridge_plugin.dll b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_mosaic_bridge_plugin.dll
new file mode 100644
index 0000000..f662e14
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_mosaic_bridge_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_out/libstream_out_raop_plugin.dll b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_raop_plugin.dll
new file mode 100644
index 0000000..267279f
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_raop_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_out/libstream_out_record_plugin.dll b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_record_plugin.dll
new file mode 100644
index 0000000..be3f25d
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_record_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_out/libstream_out_rtp_plugin.dll b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_rtp_plugin.dll
new file mode 100644
index 0000000..f26ca05
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_rtp_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_out/libstream_out_setid_plugin.dll b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_setid_plugin.dll
new file mode 100644
index 0000000..48d00f7
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_setid_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_out/libstream_out_smem_plugin.dll b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_smem_plugin.dll
new file mode 100644
index 0000000..c798f69
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_smem_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_out/libstream_out_standard_plugin.dll b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_standard_plugin.dll
new file mode 100644
index 0000000..3fccc34
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_standard_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/stream_out/libstream_out_transcode_plugin.dll b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_transcode_plugin.dll
new file mode 100644
index 0000000..f61712c
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/stream_out/libstream_out_transcode_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/text_renderer/libfreetype_plugin.dll b/SingsALot/lib/vlc/plugins/text_renderer/libfreetype_plugin.dll
new file mode 100644
index 0000000..a762ed6
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/text_renderer/libfreetype_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/text_renderer/libtdummy_plugin.dll b/SingsALot/lib/vlc/plugins/text_renderer/libtdummy_plugin.dll
new file mode 100644
index 0000000..81efaef
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/text_renderer/libtdummy_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_chroma/libgrey_yuv_plugin.dll b/SingsALot/lib/vlc/plugins/video_chroma/libgrey_yuv_plugin.dll
new file mode 100644
index 0000000..1532566
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_chroma/libgrey_yuv_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_chroma/libi420_rgb_plugin.dll b/SingsALot/lib/vlc/plugins/video_chroma/libi420_rgb_plugin.dll
new file mode 100644
index 0000000..0e0ab16
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_chroma/libi420_rgb_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_chroma/libi420_yuy2_plugin.dll b/SingsALot/lib/vlc/plugins/video_chroma/libi420_yuy2_plugin.dll
new file mode 100644
index 0000000..3684842
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_chroma/libi420_yuy2_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_chroma/libi422_i420_plugin.dll b/SingsALot/lib/vlc/plugins/video_chroma/libi422_i420_plugin.dll
new file mode 100644
index 0000000..74730fe
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_chroma/libi422_i420_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_chroma/libi422_yuy2_plugin.dll b/SingsALot/lib/vlc/plugins/video_chroma/libi422_yuy2_plugin.dll
new file mode 100644
index 0000000..c44bfba
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_chroma/libi422_yuy2_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_chroma/librv32_plugin.dll b/SingsALot/lib/vlc/plugins/video_chroma/librv32_plugin.dll
new file mode 100644
index 0000000..fdab400
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_chroma/librv32_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_chroma/libyuy2_i420_plugin.dll b/SingsALot/lib/vlc/plugins/video_chroma/libyuy2_i420_plugin.dll
new file mode 100644
index 0000000..2fdf4b4
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_chroma/libyuy2_i420_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_chroma/libyuy2_i422_plugin.dll b/SingsALot/lib/vlc/plugins/video_chroma/libyuy2_i422_plugin.dll
new file mode 100644
index 0000000..49438d7
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_chroma/libyuy2_i422_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libadjust_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libadjust_plugin.dll
new file mode 100644
index 0000000..9a15346
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libadjust_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libalphamask_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libalphamask_plugin.dll
new file mode 100644
index 0000000..19ef297
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libalphamask_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libanaglyph_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libanaglyph_plugin.dll
new file mode 100644
index 0000000..4f2e3c6
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libanaglyph_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libantiflicker_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libantiflicker_plugin.dll
new file mode 100644
index 0000000..d74ee35
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libantiflicker_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libatmo_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libatmo_plugin.dll
new file mode 100644
index 0000000..7e8bfba
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libatmo_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libaudiobargraph_v_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libaudiobargraph_v_plugin.dll
new file mode 100644
index 0000000..5ce2a88
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libaudiobargraph_v_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libball_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libball_plugin.dll
new file mode 100644
index 0000000..9dc8f14
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libball_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libblend_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libblend_plugin.dll
new file mode 100644
index 0000000..66183cf
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libblend_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libblendbench_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libblendbench_plugin.dll
new file mode 100644
index 0000000..d5189e8
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libblendbench_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libbluescreen_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libbluescreen_plugin.dll
new file mode 100644
index 0000000..9d1307a
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libbluescreen_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libcanvas_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libcanvas_plugin.dll
new file mode 100644
index 0000000..b3b5e72
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libcanvas_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libchain_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libchain_plugin.dll
new file mode 100644
index 0000000..08df695
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libchain_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libclone_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libclone_plugin.dll
new file mode 100644
index 0000000..4385ccd
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libclone_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libcolorthres_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libcolorthres_plugin.dll
new file mode 100644
index 0000000..0f234a7
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libcolorthres_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libcroppadd_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libcroppadd_plugin.dll
new file mode 100644
index 0000000..64bf012
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libcroppadd_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libdeinterlace_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libdeinterlace_plugin.dll
new file mode 100644
index 0000000..937b0f3
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libdeinterlace_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/liberase_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/liberase_plugin.dll
new file mode 100644
index 0000000..0270aa4
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/liberase_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libextract_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libextract_plugin.dll
new file mode 100644
index 0000000..5f6e799
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libextract_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libgaussianblur_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libgaussianblur_plugin.dll
new file mode 100644
index 0000000..3e4f633
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libgaussianblur_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libgradfun_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libgradfun_plugin.dll
new file mode 100644
index 0000000..511f14a
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libgradfun_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libgradient_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libgradient_plugin.dll
new file mode 100644
index 0000000..341a7c8
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libgradient_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libgrain_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libgrain_plugin.dll
new file mode 100644
index 0000000..40896a3
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libgrain_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libhqdn3d_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libhqdn3d_plugin.dll
new file mode 100644
index 0000000..8659711
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libhqdn3d_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libinvert_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libinvert_plugin.dll
new file mode 100644
index 0000000..aa8c114
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libinvert_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/liblogo_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/liblogo_plugin.dll
new file mode 100644
index 0000000..7905a93
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/liblogo_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libmagnify_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libmagnify_plugin.dll
new file mode 100644
index 0000000..dc860b6
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libmagnify_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libmarq_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libmarq_plugin.dll
new file mode 100644
index 0000000..d566711
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libmarq_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libmirror_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libmirror_plugin.dll
new file mode 100644
index 0000000..d5f10e8
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libmirror_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libmosaic_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libmosaic_plugin.dll
new file mode 100644
index 0000000..5d77683
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libmosaic_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libmotionblur_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libmotionblur_plugin.dll
new file mode 100644
index 0000000..747f93c
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libmotionblur_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libmotiondetect_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libmotiondetect_plugin.dll
new file mode 100644
index 0000000..56c381f
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libmotiondetect_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libpanoramix_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libpanoramix_plugin.dll
new file mode 100644
index 0000000..9d16d0b
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libpanoramix_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libposterize_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libposterize_plugin.dll
new file mode 100644
index 0000000..adf7093
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libposterize_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libpostproc_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libpostproc_plugin.dll
new file mode 100644
index 0000000..74ac00e
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libpostproc_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libpsychedelic_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libpsychedelic_plugin.dll
new file mode 100644
index 0000000..d003448
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libpsychedelic_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libpuzzle_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libpuzzle_plugin.dll
new file mode 100644
index 0000000..480245d
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libpuzzle_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libremoteosd_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libremoteosd_plugin.dll
new file mode 100644
index 0000000..edc4f15
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libremoteosd_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libripple_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libripple_plugin.dll
new file mode 100644
index 0000000..9d118dc
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libripple_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/librotate_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/librotate_plugin.dll
new file mode 100644
index 0000000..9de35da
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/librotate_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/librss_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/librss_plugin.dll
new file mode 100644
index 0000000..d1b287b
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/librss_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libscale_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libscale_plugin.dll
new file mode 100644
index 0000000..0a14897
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libscale_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libscene_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libscene_plugin.dll
new file mode 100644
index 0000000..5c047fb
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libscene_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libsepia_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libsepia_plugin.dll
new file mode 100644
index 0000000..d9441c7
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libsepia_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libsharpen_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libsharpen_plugin.dll
new file mode 100644
index 0000000..4a457e4
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libsharpen_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libsubsdelay_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libsubsdelay_plugin.dll
new file mode 100644
index 0000000..432c8e7
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libsubsdelay_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libswscale_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libswscale_plugin.dll
new file mode 100644
index 0000000..4921990
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libswscale_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libtransform_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libtransform_plugin.dll
new file mode 100644
index 0000000..2c60559
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libtransform_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libwall_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libwall_plugin.dll
new file mode 100644
index 0000000..190f15a
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libwall_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libwave_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libwave_plugin.dll
new file mode 100644
index 0000000..6ec080e
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libwave_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_filter/libyuvp_plugin.dll b/SingsALot/lib/vlc/plugins/video_filter/libyuvp_plugin.dll
new file mode 100644
index 0000000..b0212cd
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_filter/libyuvp_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_output/libcaca_plugin.dll b/SingsALot/lib/vlc/plugins/video_output/libcaca_plugin.dll
new file mode 100644
index 0000000..e0c537c
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_output/libcaca_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_output/libdirect2d_plugin.dll b/SingsALot/lib/vlc/plugins/video_output/libdirect2d_plugin.dll
new file mode 100644
index 0000000..b6f5b8e
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_output/libdirect2d_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_output/libdirect3d_plugin.dll b/SingsALot/lib/vlc/plugins/video_output/libdirect3d_plugin.dll
new file mode 100644
index 0000000..1e3af03
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_output/libdirect3d_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_output/libdirectdraw_plugin.dll b/SingsALot/lib/vlc/plugins/video_output/libdirectdraw_plugin.dll
new file mode 100644
index 0000000..7beb850
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_output/libdirectdraw_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_output/libdrawable_plugin.dll b/SingsALot/lib/vlc/plugins/video_output/libdrawable_plugin.dll
new file mode 100644
index 0000000..2176512
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_output/libdrawable_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_output/libglwin32_plugin.dll b/SingsALot/lib/vlc/plugins/video_output/libglwin32_plugin.dll
new file mode 100644
index 0000000..56281d9
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_output/libglwin32_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_output/libvdummy_plugin.dll b/SingsALot/lib/vlc/plugins/video_output/libvdummy_plugin.dll
new file mode 100644
index 0000000..1f4524f
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_output/libvdummy_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_output/libvmem_plugin.dll b/SingsALot/lib/vlc/plugins/video_output/libvmem_plugin.dll
new file mode 100644
index 0000000..20f4962
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_output/libvmem_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_output/libwingdi_plugin.dll b/SingsALot/lib/vlc/plugins/video_output/libwingdi_plugin.dll
new file mode 100644
index 0000000..2959e23
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_output/libwingdi_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/video_output/libyuv_plugin.dll b/SingsALot/lib/vlc/plugins/video_output/libyuv_plugin.dll
new file mode 100644
index 0000000..777366a
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/video_output/libyuv_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/visualization/libgoom_plugin.dll b/SingsALot/lib/vlc/plugins/visualization/libgoom_plugin.dll
new file mode 100644
index 0000000..574d248
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/visualization/libgoom_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/visualization/libprojectm_plugin.dll b/SingsALot/lib/vlc/plugins/visualization/libprojectm_plugin.dll
new file mode 100644
index 0000000..2385109
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/visualization/libprojectm_plugin.dll differ
diff --git a/SingsALot/lib/vlc/plugins/visualization/libvisual_plugin.dll b/SingsALot/lib/vlc/plugins/visualization/libvisual_plugin.dll
new file mode 100644
index 0000000..8f389eb
Binary files /dev/null and b/SingsALot/lib/vlc/plugins/visualization/libvisual_plugin.dll differ
diff --git a/SingsALot/packages.config b/SingsALot/packages.config
new file mode 100644
index 0000000..7aabaf2
--- /dev/null
+++ b/SingsALot/packages.config
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file