This is my first time with VBA so please bear with me
I am trying to open an mp4 file with potplayer with an command line to open at specific time in excel. There are multiple folders with hundreds of video files and I would like to open an .mp4 file at specific position. I figured the easiest solution to this would be to make a .bat file for each entry.
The command line in potplayer is
I have figured out how to generate a text file but there are so many variables that I can't figure out how to piece this thing together. The ideal process is to manually make the bat file after I've filled all the cells for that row and repeat the process for the second row.
I am trying to open an mp4 file with potplayer with an command line to open at specific time in excel. There are multiple folders with hundreds of video files and I would like to open an .mp4 file at specific position. I figured the easiest solution to this would be to make a .bat file for each entry.
The command line in potplayer is
so the following command will open "video.mp4" at 14 hours, 2 minutes and 6 secondsPotPlayerMini64.exe ["content"] [/switch]
The following .bat file works perfectlyPotPlayerMini64.exe "C:\Video output\2022-11-12\video.mp4" /seek=14:02:06
start C:\"Program Files"\DAUM\PotPlayer\PotPlayerMini64.exe "\\192.168.8.223\Vol\"Video output"\2022-11-12\2022-12-14 02-10-39.mp4" /seek=14:2:6
I have figured out how to generate a text file but there are so many variables that I can't figure out how to piece this thing together. The ideal process is to manually make the bat file after I've filled all the cells for that row and repeat the process for the second row.