|
You are here |
www.willusher.io | ||
| | | | |
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... | |
| | | | |
linderud.dev
|
|
| | | | | Valve was kind enough to send Steam Deck devkits to Arch Linux maintainers and developers which gave us an opportunity to mess around with the device. Personally I find it a bit fun to mess around with video streaming, thus one of the first things I wanted to try figure out was how I could stream the gamemode on the Steam Deck. Installing the OBS flatpak and adding it to the menu doesn't actually work so we sadly have to be a bit more clever. | |
| | | | |
reticulated.net
|
|
| | | | | Using Youtube, RTMP and Monaserver to make a better 3d Printing Monitor | |
| | | | |
theithollow.com
|
|
| | | Jenkins is a Continuous Integration / Continuous Development (CI/CD) tool that can be used to deploy code and test it... | ||