Converts all *.wav files via ffmpeg (default seettings, stereo, 16bit)
for i in *.wav; do ffmpeg -i "$i" ./wav/${i%.*}.wav"; done
Mix to mono ex. from stereo to mono
for i in *.wav; do ffmpeg -i "$i" -ac 1 "./wav/${i%.*}.wav"; done
Converts all *.wav files via ffmpeg (default seettings, stereo, 16bit)
for i in *.wav; do ffmpeg -i "$i" ./wav/${i%.*}.wav"; done
Mix to mono ex. from stereo to mono
for i in *.wav; do ffmpeg -i "$i" -ac 1 "./wav/${i%.*}.wav"; done
Today I decided to manually register a few .tar.gz applications in Ubuntu so they appear in the desktop app database. All you need to do
Today, after whole night suspend of my PC at the moring i wake up it. And it occur that i have no ethernet connection. After
ctrl+R -> RegEdit -> enter Registry: HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TimeZoneInformation Key: RealTimeIsUniversal Type: DWORD (32-bit) Value. Value: 1 Then restart PC
Sometimes when you need to import big bunch of data you may need to consider setting a flag: SET session_replication_role = 'replica'; However, this import,
If you need to transfer ownership of whole database (in postgress) you need to alter all tables, sequnces, views, and materialized views separately. Below is
If want to create .NET application with MAUI uusing Rider. you don’t need to install Visual Studio. All you need is run this commands dotnet