Monday

ffmpeg convert all audio webm files into folder into mp4

         


for /r %%v in (*.webm) do ffmpeg -i "%%v" -c copy   "%%~nv.mp4"

No comments:

test smtp server with powershell

Send-MailMessage -SMTPServer smtp.domain.com -To [email protected] -From [email protected] -Subject "This is a test email" -Body ...