Tag: Media

Teams Animated Video Backgrounds

While researching populating enterprise backgrounds for Teams conversations. I discovered a nice trick to enable GIF backgrounds in Teams. Background Microsoft teams has apparently hard coded the backgrounds it accepts to JPG or PNG picture types. JPG file type does support GIF style animated graphics. The trick here is save a *.GIF file as *.JPG.

Continue reading
No comments

Music Library Cleaning with PowerShell – Removing Missing Files from iTunes

At the bottom of this post I originally wrote a VBS that deletes files out of ITunes if the location does not exist.  I did the rewrite into PowerShell… (new-object –com itunes.application).LibraryPlaylist.Tracks | ?{ $_.Location -eq $null } | %{ $_.Delete() }   The PowerShell above only removes the item out of ITunes if the

Continue reading