- https://coreskills.mmodrow.rocks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param ( | |
# path the to a file with the response of https://overcast.fm/account/export_opml/extended | |
[string]$inputFileName = "overcast_all.opml", | |
[bool]$playedOnly = $true, | |
# 0: title only; 1: adds user manipulation data; 2: adds publishing data; 3: adds overcast metadata | |
[int]$verbosity = 1 | |
) | |
$ompl = [xml](Get-Content $inputFileName) |