How to have random jukebox music playing in an Arma 3 mission.

This script in the initPlayerLocal.sqf will play a continuous jukebox of music in your Arma 3 mission. This is just like in Warlords where you have continuous background music. _null = [] spawn { _musicPool = "getText (_x >> ‘name’) != ” && getNumber (_x >> ‘duration’) > 20" configClasses (configFile >> "CfgMusic"); _poolSize = … Read more

A much better way to save audio from Youtube with youtube-dl.

Saving music from Youtube is fun. I am going to show how to save in good quality using youtube-dl by itself. This command will do it in one go. youtube-dl -f 140 https://www.youtube.com/watch?v=eb-2ljQDYFU –embed-thumbnail –extract-audio –audio-format mp3youtube-dl -f 140 https://www.youtube.com/watch?v=eb-2ljQDYFU –embed-thumbnail –extract-audio –audio-format mp3 This is the command in action. This gets the music in … Read more

The best way to have music coming from a radio in Arma 3, this really works.

This code will play music from a Radio in Arma 3. fnc_radio = compileFInal preprocessfilelinenumbers "a3\missions_f_exp\Campaign\Missions\EXP_m01.Tanoa\functions\fn_EXP_m01_radioMusic.sqf";   [radio1] call fnc_radio;fnc_radio = compileFInal preprocessfilelinenumbers "a3\missions_f_exp\Campaign\Missions\EXP_m01.Tanoa\functions\fn_EXP_m01_radioMusic.sqf"; [radio1] call fnc_radio; Just place a radio item and name it radio1, then put the code above in your initPlayerServer.sqf file. This allows a radio to play music. Once a track … Read more

How to get a nice waveform display with the MPV media player on Linux.

Play a music file in your terminal with a nice visualization, using this one-liner. This is very nice way to get a simple animation whilst playing a music file. MPV does support a massive amount of playing options, and using a visualization while playing music is another hidden feature. mpv –config=no –quiet –vo=tct –lavfi-complex='[aid1]asplit[ao][a1];[a1]avectorscope=r=25:m=lissajous_xy:bc=200:gc=100:rc=75:bf=5:gf=3:rf=1:zoom=2[vo]’ https://www.gnu.org/music/markushaist-free-software-song.oggmpv … Read more

New Sayonara music player available for Linux Mint and Ubuntu. This player is very good indeed.

https://code.google.com/p/sayonara-player/. This player is now available on Google Code. This music player installed without any hassles on Linux Mint 15 and worked perfectly. I now prefer it over the Audacious player and Banshee. Banshee and Rhythmbox are bloated and slow to load, but this player is very fast to load and you are ready to … Read more