Monday, April 23, 2018

BBC : Downloading the sound effects.

Background:

Shortlink: https://redd.it/8dn03t

Complete link: https://www.reddit.com/r/DataHoarder/comments/8dn03t/16000_bbc_sound_effects_wavs_now_available_online/

BBC is offering about 16000 of their sound files for download, under RemArc License.
https://github.com/bbcarchdev/Remarc/blob/master/doc/2016.09.27_RemArc_Content%20licence_Terms%20of%20Use_final.pdf

If you wish to use their files, please read their terms and conditions.

Now that is clear, I put together a powershell script to download the files. Have fun!

Import-Module BitsTransfer

$URL="http://bbcsfx.acropolis.org.uk/assets/"
$targetp="c:\tmp\BBC-Sounds\"
$csv=Import-Csv -Path c:\tmp\BBC-Sounds\BBCSoundEffects.csv
foreach ($line in $csv) {
$uri=$line.location
$fn=$line.description
$fn=$targetp+$fn
$fn=$fn+".wav"
#Write-Host $URL$uri
#Write-Host $fn
Start-BitsTransfer -Source $URL$uri -Destination $fn
}