Skip to content

Commit

Permalink
Inital commit
Browse files Browse the repository at this point in the history
Initial commit for youtube subtitles ripper
  • Loading branch information
nelemans1971 committed Aug 8, 2020
1 parent e86b67f commit 074f9c8
Show file tree
Hide file tree
Showing 336 changed files with 96,339 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Youtube2SRT.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30320.27
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Youtube2SRT", "Youtube2SRT\Youtube2SRT.csproj", "{696EAE56-ECC5-4C96-A867-72E04CA7DD8F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{696EAE56-ECC5-4C96-A867-72E04CA7DD8F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{696EAE56-ECC5-4C96-A867-72E04CA7DD8F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{696EAE56-ECC5-4C96-A867-72E04CA7DD8F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{696EAE56-ECC5-4C96-A867-72E04CA7DD8F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {912B9B50-C6DA-4690-B0F6-3ED269F6D562}
EndGlobalSection
EndGlobal
6 changes: 6 additions & 0 deletions Youtube2SRT/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
</configuration>
46 changes: 46 additions & 0 deletions Youtube2SRT/Newtonsoft.Json/Bson/BsonBinaryType.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
#region License
// Copyright (c) 2007 James Newton-King
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
// files (the "Software"), to deal in the Software without
// restriction, including without limitation the rights to use,
// copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following
// conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
// OTHER DEALINGS IN THE SOFTWARE.
#endregion

using System;

#nullable disable

namespace Newtonsoft.Json.Bson
{
internal enum BsonBinaryType : byte
{
Binary = 0x00,
Function = 0x01,

[Obsolete("This type has been deprecated in the BSON specification. Use Binary instead.")]
BinaryOld = 0x02,

[Obsolete("This type has been deprecated in the BSON specification. Use Uuid instead.")]
UuidOld = 0x03,
Uuid = 0x04,
Md5 = 0x05,
UserDefined = 0x80
}
}
Loading

0 comments on commit 074f9c8

Please sign in to comment.