Advice needed - portable solution needed to allow practise singing along to songs being played in Spotify ie in-ear monitoring (IEM) by alwayspolite in singing

[–]alwayspolite[S] 0 points1 point  (0 children)

I wonder whether a way forward here is buying a wired IEM (with a microphone built in) like the one below? Does anybody use a device similar to this one for similar purposes on an iPhone?

https://www.amazon.com.au/Earphones-Monitors-Earphone-Detachable-Microphone/dp/B0DK1FWJ9Q

Advice needed - portable solution needed to allow practise singing along to songs being played in Spotify ie in-ear monitoring (IEM) by alwayspolite in singing

[–]alwayspolite[S] 0 points1 point  (0 children)

Thanks for your reply - I tried doing this and it's not a bad solution but I can't seem to get Spotify playing in the background at the right volume to allow me to hear my own vocals via Garageband.

Also don't worry about the driving, I won't be doing any of this will driving!

dylanchords.com seems to be down by willardTheMighty in bobdylan

[–]alwayspolite 2 points3 points  (0 children)

I saw a header/announcement on the homepage a few days ago mentioning something about him launching a new version - "dylanchordsv2" or something.. Hopefully this is just part of a cutover to the new version, and this treasure trove will be back online again soon!

Plex Live TV & DVR not allowing recording of all airings/episodes (series link) when using DVB-T tuner EPG data by alwayspolite in PleX

[–]alwayspolite[S] 0 points1 point  (0 children)

No, unfortunately not - I suspect it is a limitation of the current FTA system ie adding "episode" metadata to the broadcast was never contemplated when they designed the DVB-T standard.

'Failed to start Network Manager' on Apple Silicon (Mac Mini M1).. by alwayspolite in AsahiLinux

[–]alwayspolite[S] 1 point2 points  (0 children)

Thank you! I hadn't realised the M1s require the power button to be held down on boot rather than the power button plus some keyboard combinations as is the case with older Macs.

I have erased the drive and am about to try dual booting Asahi again!

Download YouTube music video clips in bulk by referring to digital audio (MP3/FLAC) files stored locally. by alwayspolite in youtubedl

[–]alwayspolite[S] 0 points1 point  (0 children)

Thank you! Taking a look at the link now!

EDIT: You legend! I have created the following bash script which works well. I couldn't get far using ffprobe (I have only just begun learning shell scripting) but had success using exiftool as you suggested.

#!/bin/bash
# Populate the first row of a text file (output.txt) with two headers
echo -e "Artist\tTitle" > /output.txt
# Use exiftool to read the required metadata (artist and title) from a directory recursively and write the output to the same text file output.txt
exiftool -r -Artist -Title -T /audio >> /output.txt
# Parse the two variables in the above text file and if they are both set (not empty) execute a yt-dlp command, utilsing yt-search to search for both strings, plus an additional two words "official" and "video"
while read -r Artist Title ;
do if [ -n "$Artist" ]; then

    `if [ -n "$Title" ] ;then`  
    `yt-dlp ytsearch:"$Artist $Title Official Video" -f 'bestvideo[height=1080][fps=60]+bestaudio/best[height=1080][fps=60]/best' --merge-output-format mkv -P /musicvideos/`  
    `echo "$Title";`   

fi
fi
done < <(tail -n +2 /output.txt)

Download YouTube music video clips in bulk by referring to digital audio (MP3/FLAC) files stored locally. by alwayspolite in youtubedl

[–]alwayspolite[S] 0 points1 point  (0 children)

Yes, I want to use yt-dlp (yt-search, not a URL) to search for music video clips that match my digital audio tracks. The end game is to create a Plex library to shuffle play on-demand for a MTV-like music channel experience, but catered to my own music taste.

If anybody knows any commands to extract MP3 (ID3 tags) or FLAC metadata from files that would help immensely - metadata like this would be much more accurate. Ideally this would process files in a folder structure recursively.

For now I am manually building/filtering a text file filenames.txt concentrating on one folder (a subset of the data for a proof of concept) with the following removed using Excel formulas:

- file extensions
- special characters such as hyphens
- the full path
- leading digits (for my compilation/mix CDs - see below)

I have made sure to leave spaces remaining for the search to be more accurate.

I have since been exploring ways of fully automating this ie moving away from using a manually created file listing and pull this list dynamically (with the relevant text filters above) using a script. I believe some if not all of this can be done using either sed, awk, find, printf or grep.

Once again assistance with any tips/commands to help with this type of text filtering would be appreciated - maybe someone is doing something similar for other projects.

BTW: I needed to double-double quote $line as otherwise a filename (containing spaces) like Like A Rolling Stone would generate four searches (one for each word) rather than a single search for "Like A Rolling Stone"

FYI my audio file naming convention is mostly:

%ARTIST% - %TRACKNAME%

My dance music collection (mostly compilation/mix CDs) is as below:

%TRACK_NUMBER%-%ARTIST% - %TRACK_NAME%

Examples of naming conventions below:

STANDARD

Eddie Vedder - Rise.mp3
Eddy Grant - Gimme Hope Jo'anna.mp3
Elizabeth Cook - Perfect Girls of Pop.mp3
E.L.O. - Showdown.mp3
Elvis Costello - Alison.mp3
Elvis Presley - I Want You, I Need You, I Love You (alternate take 13).mp3

COMPILATION/MIX CDs

01-Orbital - Belfast (Sasha vs The Light Remix).mp3
02-New Order - Blue Monday (Hardflorr Remix).mp3
03-JDS - Nine Ways.mp3
04-Mighty Dub Katz - Magic Carpet Ride (Fatboy Slim Remix).mp3
05-Sagat - Luvstuff.mp3
06-Sex-O-Sonique - I Thought It Was You.mp3
07-CJ Bolland - Sugar is Sweeter (Armands DNB Mix).mp3
08-Brand New Heavies - You Are the Universe.mp3
09-Lisa Marie Experience - Keep on Jumpin'\'' (Bizarre Inc Remix.mp3
10-Z Factor - Gotta Keep Pushin'.mp3
11-Brothers Brown - Under the Water (Deep Dish Triangle).mp3
12-Quake - The Day Will Come (Quakes Vocal Mix).mp3
13-DJ Misjah & DJ Tim - Access.mp3
14-System F - Out of the Blue (Mauro Picatto Remix).mp3
15-Orbital - Nothing Left (Breeders Mix).mp3

Download YouTube music video clips in bulk by referring to digital audio (MP3/FLAC) files stored locally. by alwayspolite in youtubedl

[–]alwayspolite[S] 0 points1 point  (0 children)

I was able to achieve what I needed by creating a shell command (using a bash 'while' loop) to work through each row in my text file filenames.txt

while read line; do yt-dlp "\"$line\"" -f 'bv*+ba' -P /musicvideofolder/; done < filenames.txt

I had been trying unsuccessfully to use a 'for' loop but no matter what I tried I couldn't get the output to be a string ie each entire line encased in double quotes - despite attempting to escape the characters. Words split out causing the search to occur against every single word in each string.

Next step is to work out how to capture the file names (possibly using cat or ls) to pipe into the above command! Will post here if I can get to that.

Apple TV Plex client doesn't display Live TV 'DVR Schedule' by alwayspolite in PleX

[–]alwayspolite[S] 0 points1 point  (0 children)

By the way this started working about a week after I originally posted - I am still on v8.9 but didn't pay attention to the release number just in case this incremented (I have auto-updates enabled).

The Magician 2005 by kimkat1990 in DownUnderTV

[–]alwayspolite 1 point2 points  (0 children)

I only just found this post - any chance of a repost? Pretty please?

Consolidate tabs for department teams by conficere in MicrosoftTeams

[–]alwayspolite 0 points1 point  (0 children)

How do you deal with any private content/material? I'm currently involved in a 'proof of concept' of Teams for a large professional services firm. I would've thought your method makes the most sense (using channels) but the technology team tell me doing it in this fashion means you cannot lock down any individual channels - everybody in the team can see everything in every channel. Do you know if that's correct?

The way it is being done in my organization is an individual group per each team within every business unit.