make variable text for strings easy

This commit is contained in:
Martin Eesmaa 2022-10-18 19:44:13 +11:00 committed by GitHub
parent c711ba2100
commit 599cd5f7df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 9 deletions

View File

@ -1,5 +1,3 @@
using System;
using System.Threading;
using System.Net;
namespace VVCEasy
@ -8,19 +6,20 @@ namespace VVCEasy
{
public static void Main()
{
string version = "v.1.0.1";
string codeversion = "Summer time for fun.";
string title = "Martin Eesmaa / VVCEasy";
bool exit = false;
Console.Title = "Martin Eesmaa / VVCEasy";
Console.WriteLine("Martin Eesmaa / VVCEasy");
Console.WriteLine("Welcome to VVCEasy. (.NET Console Release Version, v.1.0.1)");
Console.WriteLine("Version codename: Summer time for fun.");
Console.Title = title;
Console.WriteLine("Martin Eesmaa / VVCEasy\nWelcome to VVCEasy. (.NET Console Release Version, " + version + ")\nVersion codename: " + codeversion);
Console.ReadLine();
do
{
Console.Clear();
Console.WriteLine("VVCEasy (.NET Console Release Version, v.1.0.1)");
Console.WriteLine("Version codename: Summer time for fun.");
Console.WriteLine("VVCEasy (.NET Console Release Version, " + version + ")");
Console.WriteLine("Version codename: " + codeversion);
Console.WriteLine("Note: C# is not ready yet, malfunction mode\n");
Console.Title = "Martin Eesmaa / VVCEasy";
Console.Title = title;
Console.WriteLine("What would you like to do for encode/decode of VVC?\n1. Encode\n2. Decode\n3. Help\n4. Exit\n5. Install/Test path environment\n6. Install FFmpeg VVDec support\n7. Install quickly through Anaconda for ffmpeg (Windows)\n8. Install VVdec Web Player\n9. Decompress WindowsVVC.7z (Before you use new VVCEasy version!!!)\n10. Install vvDecPlayer from BitMovin\n11. Install/Update VLC VTM Plugins (Windows/Linux x64 of VLC plugins by Inter Digital Inc)\n12. Install MPV Windows/Android (libvvdec plugin)\n13. Tests of VVC videos");
string input = Console.ReadLine();