DeQmaTech.SaruchSDK 1.2.5

dotnet add package DeQmaTech.SaruchSDK --version 1.2.5
NuGet\Install-Package DeQmaTech.SaruchSDK -Version 1.2.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DeQmaTech.SaruchSDK" Version="1.2.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DeQmaTech.SaruchSDK --version 1.2.5
#r "nuget: DeQmaTech.SaruchSDK, 1.2.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DeQmaTech.SaruchSDK as a Cake Addin
#addin nuget:?package=DeQmaTech.SaruchSDK&version=1.2.5

// Install DeQmaTech.SaruchSDK as a Cake Tool
#tool nuget:?package=DeQmaTech.SaruchSDK&version=1.2.5

Features

  • Assemblies for .NET 4.5.2 and .NET Standard 2.0 and .NET Core 2.1
  • Just one external reference (Newtonsoft.Json)
  • Easy installation using NuGet
  • Upload/Download tracking support
  • Proxy Support
  • Upload/Download cancellation support

List of functions:

Authentication

  • OneHourToken
  • SignUp

Account

  • UserInfo
  • StorageInfo
  • RenewToken
  • GetConversionSettings
  • ChangeConversionSettings

Folder

  • List
  • Metadata
  • Create
  • Rename
  • Delete
  • Move
  • UploadLocalVideo
  • UploadRemoteVideo

RemoteUpload

  • Queue
  • Search
  • Status
  • Delete

Subtitles

  • Clear
  • Upload
  • Metadatas
  • Metadata
  • Delete

Video

  • GetDownloadUrl
  • Download
  • Category
  • Rename
  • Move
  • Delete
  • Search
  • Privacy
  • Monetize
  • ThumbnailSet
  • ThumbnailDelete

CodeMap:

codemap

Code simple:

'register new account
Await SaruchSDK.Authentication.SignUp("nik", "mail", "pass")
'first get auth token
Dim tokn = Await SaruchSDK.Authentication.OneHourToken("your_email", "your_password")
''set proxy and connection options
Dim con As New SaruchSDK.ConnectionSettings With {.CloseConnection = True, .TimeOut = TimeSpan.FromMinutes(30), .Proxy = New SaruchSDK.ProxyConfig With {.SetProxy = True, .ProxyIP = "127.0.0.1", .ProxyPort = 8888, .ProxyUsername = "user", .ProxyPassword = "pass"}}
''set api client
Dim CLNT As SaruchSDK.IClient = New SaruchSDK.SClient(tokn.access_token, con)

''folder
Await CLNT.Folder("folder_id").Create("new folder")
Await CLNT.Folder("folder_id").Delete
Await CLNT.Folder("folder_id").List(1, SortEnum.name, OrderByEnum.asc)
Await CLNT.Folder("folder_id").Metadata
Await CLNT.Folder("folder_id").Move("folder_id")
Await CLNT.Folder("folder_id").Rename("new name")
Await CLNT.Folder("folder_id").UploadRemoteVideo(New List(Of String) From {{"https://domain.com/video.mp4"}, {"http://domain.com/video2.mp4"}})
Dim cts As New Threading.CancellationTokenSource()
Dim _ReportCls As New Progress(Of SaruchSDK.ReportStatus)(Sub(ReportClass As SaruchSDK.ReportStatus) Console.WriteLine(String.Format("{0} - {1}% - {2}", String.Format("{0}/{1}", (ReportClass.BytesTransferred), (ReportClass.TotalBytes)), CInt(ReportClass.ProgressPercentage), ReportClass.TextStatus)))
Await CLNT.Folder("folder_id").UploadLocalVideo("c:\video.mp4", UploadTypes.FilePath, "video.mp4", _ReportCls, cts.Token)

''video
Await CLNT.Video("video_id").Category(VideoCategoryEnum.Regular)
Await CLNT.Video("video_id").Delete
Dim dUrl = Await CLNT.Video("video_id").GetDownloadUrl
Await CLNT.Video("video_id").Download(dUrl.video.Downloads(0).DownloadUrl, "c:\downloads", "https://saruch.co/videos/xxxx", _ReportCls, cts.Token)
Await CLNT.Video("video_id").Monetize(True)
Await CLNT.Video("video_id").Move("folder_id")
Await CLNT.Video("video_id").Privacy(PrivacyEnum.Private)
Await CLNT.Video("video_id").Rename("new video name")
Await CLNT.Video("video_id").Search("emy", 1)
Await CLNT.Video("video_id").ThumbnailSet("c:\myPhoto.jpg", UploadTypes.FilePath, _ReportCls, cts.Token)
Await CLNT.Video("video_id").ThumbnailDelete
Await CLNT.Video("video_id").Subtitles.Delete("subtitle_id")
Await CLNT.Video("video_id").Subtitles.Metadata("subtitle_id")
Await CLNT.Video("video_id").Subtitles.Metadatas
Await CLNT.Video("video_id").Subtitles.Upload("c:\sub.srt", UploadTypes.FilePath, LanguageCodeEnum.Greek, _ReportCls, cts.Token)

''RemoteUpload
Await CLNT.RemoteUpload.Clear(UploadRemoteClearEnum.done)
Await CLNT.RemoteUpload.Delete("job_id")
Await CLNT.RemoteUpload.Queue(5)
Await CLNT.RemoteUpload.Search("domain.com", 1)
Await CLNT.RemoteUpload.Status("job_id")

''Account
Await CLNT.Account.ChangeConversionSettings(New Dictionary(Of ResolutionEnum, Boolean) From {{ResolutionEnum.x144, True}, {ResolutionEnum.x360, True}})
Await CLNT.Account.GetConversionSettings
Await CLNT.Account.RenewToken
Await CLNT.Account.StorageInfo
Await CLNT.Account.UserInfo

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 is compatible.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net452 is compatible.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.5 518 4/12/2020
1.2.4 452 2/15/2020
1.2.0 472 10/27/2019