|
You are here |
www.funkycloudmedina.com | ||
| | | | |
journal.robbi.my
|
|
| | | | | I attempted to use the well-known 'm4a-to-mp3-converter' from maniactool to convert audio files from M4A to MP3 format, but unfortunately, it did not function as expected. Given that many media converters utilize the 'FFMPEG' library, and without access to a pre-built solution for converting multiple M4A files to MP3, I opted to create my own using PowerShell. param ( [Parameter(Mandatory=$true)] [string[]]$args ) if ($args[0] -eq "-all") { Write-Output $args[0] foreach ($file in Get-ChildItem -Filter *.m4a) { $filename = $file.BaseName ffmpeg -i $file.FullName -c:v copy -c:a libmp3lame -q:a 4 "$filename.mp3" } } else { foreach ($var in $args) { $filename = (Get-Item $var).BaseName ffmpeg -i $var -c:v copy -c:a libmp3lame -q:a 4 "$filename.mp3" } } it just a... | |
| | | | |
blog.arkadi.one
|
|
| | | | | WriteFreely is a beautiful, clean, simple, self-hosted blogging platform WriteFreely is built around writing. There's no news feed, notifications, or unnecessary likes or claps to take you away from your train of thought. You get a distraction-free writing environment, and readers can enjoy a clean reading experience. -From https://writefreely.org/ *You can also sign up at Write.as ($6/M), or get an account on somebody else's server running WriteFreely Setup Installing #WriteFreely as an app on Yunohost is very simple. | |
| | | | |
rvdnieuwendijk.com
|
|
| | | | | In "Virtual machine failed to power on" Monique Vanmeulebrouk describes a problem where in one stage she needed to find an ESX server that has a certain MAC address. Of course you can log in to all your ESX servers and issue the "ifconfig | grep -i hw" command as described in the VMware Knowledge... | |
| | | | |
www.losant.com
|
|
| | | Step-by-step instructions for how to get up and running with a Raspberry Pi 3. | ||