Skip to content

Instantly share code, notes, and snippets.

View Xwilarg's full-sized avatar
⠀かみなりじゃないわ!

Christian Chaux Xwilarg

⠀かみなりじゃないわ!
View GitHub Profile
@Xwilarg
Xwilarg / AudioConverter.cs
Created July 25, 2023 17:05
Convert a bunch of file to a specified format
using System.Diagnostics;
Console.WriteLine("What input format do you want?");
string format = Console.ReadLine();
Console.WriteLine("Enter the location of the files");
string path = Console.ReadLine();
void ConvertFolder(string path)
{