Skip to content

Instantly share code, notes, and snippets.

```
>curl http:// UrlPath /api/library/casts -H "Authorization:SuperSecretToken"
[ { "arrangement" : null,
"feed" : { "atom:link" : { "href" : "http://pubsubhubbub.appspot.com/",
"rel" : "hub"
},
"copyright" : "Copyright Jupiter Broadcasting",
"description" : "A weekly show covering the latest developments in the world of the BSD family of operating systems. News, Tutorials and Interviews for new users and long time developers alike.\n",
"docs" : "http://blogs.law.harvard.edu/tech/rss",
@basso
basso / account-login
Last active August 29, 2015 14:00
Castcloud
{
"token":"1337EGAh10qpLDq7xDTXG41r6T//ONLRvF5hd\/M3AX9I="
}
@basso
basso / Convert.ps1
Created June 24, 2018 21:00 — forked from sidewinder94/Convert.ps1
Convert a folder using ffmpeg in Powershell
#Replace the extensions if needed
Get-ChildItem -File | Foreach {ffmpeg.exe -i $_.FullName -vn -acodec copy ($_.FullName -replace "\.mp4", ".aac")}