
PyPlayer VLC Windows 10, Python 3.10.4+...
NOTE: SOX does NOT work on Windows 8.1 or 10 at all...

Windows 8.1 and 10 Python 3.10.4...
os.chdir("C:\\Program Files (x86)\\VideoLAN\\VLC\\")
os.system("[start] vlc --verbose 0 --intf dummy --quiet " + "[DRIVE_LETTER:\\path\\to\\]PlayFile " + "vlc://quit > NUL")

Windows CMD.EXE command line fully non-verbose:
cd "C:\Program Files (x86)\VideoLAN\VLC\"
[start] vlc --verbose 0 --intf dummy --quiet [DRIVE_LETTER:\path\to\]PlayFile vlc://quit > NUL

Apple terminal fully non-verbose:
(alias vlc='/Applications/VLC.app/Contents/MacOS/VLC')
/Applications/VLC.app/Contents/MacOS/VLC --verbose 0 --intf dummy --quiet [/full/path/to/]wavefile.wav vlc://quit > /dev/null 2>&1 [&]
(In my case...)
/Applications/VLC.app/Contents/MacOS/VLC --verbose 0 --intf dummy --quiet /Users/amiga/Desktop/Sound/beep.wav vlc://quit > /dev/null 2>&1 [&]

VideoLAN VLC file formats:
--------------------------
  https://wiki.videolan.org/VLC_Features_Formats/

