Basic Video Joiner using ffmpeg and VB.net

preview_player
Показать описание
Programming is my hobby. Here Visual Basic .net , Netbeans Java, JavaFX, FXML , Delphi-7 , Python & C++ programming Video Will be Uploaded.....

#ffmpeg
#Video_Joiner
#VB.net
Рекомендации по теме
Комментарии
Автор

Thank you for this. My one change was I wanted the window to stay open for diagnosing errors while I fail at ffmpeg, and ffmpeg doesn't allow that off it's .exe. So I reworked your concept to call system32\cmd.exe instead, then /cd /d to my ffmpeg path and run the command. With a gui button for "Close FFmpeg" that sends proc.CloseMainWindow. It works great 😁

I've been trying to find a vb wrapper for ffmpeg and there doesn't seem to be any. My old method had my .net app building a command string from gui choices, writing the string to a txt, then calling a primitave C# app I wrote, with an ffmpeg wrapper, to read the txt, set it as the ffmpeg command, call ffmpeg, while my vb app read the logfile of ffmpeg's job waiting for progress=complete, then killing ffmpeg and the C# app. This is SO much cleaner.

xEricCx