Skip to content
This repository was archived by the owner on Oct 25, 2020. It is now read-only.

Commit f6e87db

Browse files
author
Michael Gordeev
committed
1.0 release (cleaned up)
0 parents  commit f6e87db

43 files changed

Lines changed: 5447 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
################################################################################
2+
# This .gitignore file was automatically created by Microsoft(R) Visual Studio.
3+
################################################################################
4+
5+
/.vs/MotionDecoder/v16/Server/sqlite3
6+
/.vs
7+
/MovementDecoder/bin/Debug
8+
/MovementDecoder/obj
9+
/packages
10+
/MotionDecoder/bin/Debug
11+
/MotionDecoder/obj
12+
/MotionDecoder/bin/Release
52 KB
Binary file not shown.

Dependencies/Microsoft.DirectX.dll

218 KB
Binary file not shown.

LICENSE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

MotionDecoder.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.29509.3
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MotionDecoder", "MotionDecoder\MotionDecoder.csproj", "{F6D82605-6E5F-4FD6-AF07-CD4EC9DE5DC9}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{F6D82605-6E5F-4FD6-AF07-CD4EC9DE5DC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{F6D82605-6E5F-4FD6-AF07-CD4EC9DE5DC9}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{F6D82605-6E5F-4FD6-AF07-CD4EC9DE5DC9}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{F6D82605-6E5F-4FD6-AF07-CD4EC9DE5DC9}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {DCDB3D43-4794-40E6-8A3B-788F864511C4}
24+
EndGlobalSection
25+
EndGlobal

MotionDecoder/App.config

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<configSections>
4+
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
5+
<section name="MotionDecoder.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
6+
<section name="MovementDecoder.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
7+
</sectionGroup>
8+
</configSections>
9+
<startup useLegacyV2RuntimeActivationPolicy="true">
10+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
11+
</startup>
12+
<userSettings>
13+
<MotionDecoder.Properties.Settings>
14+
<setting name="filters" serializeAs="String">
15+
<value>All video files|*.avi;*.mkv;*.mov;*.mp4;*.wmv;*.3gp; *.flv; *.,mpeg; *.ts; *.m2ts; *.rm; *.rmvb; *.ogm; *.webm|AVI|*.avi|MKV|*.mkv|MOV|*.mov|MP4|*.mp4|WMV|*.wmv|FLV|*.flv|MPEG|*.,mpeg|TS|*.ts|M2TS|*.m2ts|RM|*.rm|MVB|*.rmvb|OGM|*.ogm|WebM|*.webm|All files|*.*</value>
16+
</setting>
17+
<setting name="threshold" serializeAs="String">
18+
<value>60</value>
19+
</setting>
20+
<setting name="duration" serializeAs="String">
21+
<value>60</value>
22+
</setting>
23+
<setting name="volume" serializeAs="String">
24+
<value>-1000</value>
25+
</setting>
26+
<setting name="showMessage" serializeAs="String">
27+
<value>True</value>
28+
</setting>
29+
</MotionDecoder.Properties.Settings>
30+
<MovementDecoder.Properties.Settings>
31+
<setting name="filters" serializeAs="String">
32+
<value>All video files|*.avi;*.mkv;*.mov;*.mp4;*.wmv;*.3gp; *.flv; *.,mpeg; *.ts; *.m2ts; *.rm; *.rmvb; *.ogm; *.webm|AVI|*.avi|MKV|*.mkv|MOV|*.mov|MP4|*.mp4|WMV|*.wmv|FLV|*.flv|MPEG|*.,mpeg|TS|*.ts|M2TS|*.m2ts|RM|*.rm|MVB|*.rmvb|OGM|*.ogm|WebM|*.webm|All files|*.*</value>
33+
</setting>
34+
<setting name="threshold" serializeAs="String">
35+
<value>60</value>
36+
</setting>
37+
<setting name="duration" serializeAs="String">
38+
<value>60</value>
39+
</setting>
40+
<setting name="volume" serializeAs="String">
41+
<value>-1000</value>
42+
</setting>
43+
<setting name="showMessage" serializeAs="String">
44+
<value>True</value>
45+
</setting>
46+
<setting name="videoPlayerSize" serializeAs="String">
47+
<value>0, 0</value>
48+
</setting>
49+
<setting name="darkTheme" serializeAs="String">
50+
<value>False</value>
51+
</setting>
52+
</MovementDecoder.Properties.Settings>
53+
</userSettings>
54+
</configuration>

MotionDecoder/Forms/About/About.Designer.cs

Lines changed: 97 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MotionDecoder/Forms/About/About.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System.Diagnostics;
2+
using System.Windows.Forms;
3+
4+
namespace MotionDecoder.Forms
5+
{
6+
public partial class About : Form
7+
{
8+
public About() =>
9+
InitializeComponent();
10+
11+
void githubLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) =>
12+
Process.Start(githubLink.Text);
13+
}
14+
}

0 commit comments

Comments
 (0)