Skip to content

encryptedtouhid/YT2PPT

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

86 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

YT2PPT Converter

Youtube Video to Power Point Converter

Clone the Repo

git clone https://github.com/encryptedtouhid/YT2PPT.git

Create appsettings.json

{
  "Version": "1.4.0",
  "AppCpde": "YT2PP",
  "AppName": "Convert Youtube Video to PowerPoint",
  "AppOwner": "Khaled Md Tuhidul Hossain",
  "AppOwnerUrl": "https://tuhidulhossain.com",
  "YouTubeApiKey": "[KEY]",
  "ConnectionStrings": {
    "DefaultConnection": "[DB CONNECTION STRING]"
  },
  "FreeLimit": "00:15:00",
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft.AspNetCore": "Warning"
    }
  },
  "AllowedHosts": "*",
  "Serilog": {
    "Using": [ "Serilog.Sinks.File", "Serilog.Sinks.MSSqlServer" ],
    "MinimumLevel": {
      "Default": "Error"
    },
    "WriteTo": [
      {
        "Name": "File",
        "Args": {
          "path": "[TEXT FILE NAME]",
          "rollingInterval": "Day"
        }
      },
      {
        "Name": "MSSqlServer",
        "Args": {
          "connectionString": "[DB CONNECTION STRING]",
          "tableName": "Logs",
          "autoCreateSqlTable": true
        }
      }
    ]
  }
}

To run the application with Electron.NET as Desktop Application.

Replace ~ with a relative path, such as ./ for the current directory or use the root-relative path if Electron has access to the root of the project. For example:

    <script src="./lib/jquery/dist/jquery.min.js"></script>
    <script src="./lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
    <script src="./js/site.js"></script>

Restore and Build the Application Navigate to your project directory:

  cd D:\WorkStation\MyGitHub\YT2PPT\src\YT2PP.Web

Clean The project

  dotnet clean

Build The project

 dotnet build

Run Electron app

  electronize start

Build the Application Build the project

  dotnet build --configuration Release

Package with Electron.NET Use the Electron.NET CLI to publish the application

  electronize build /target win

Clean & Build

Open Visual Studio and build the project. It will restore all the nuget package needed.

Output

image

About

Youtube Video to PowerPoint Converter (NET 9.0 & Electron.Js)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

Packages

No packages published