Are you trying to set a global preference for all downloads or simply specify an output location for individual downloads? Both are possible.
Firstly, know that
Code:
/i/music getiplayer/
will go to the root of your c: drive, i.e your main hard drive in the folder "i" inside which will be sub-folder "music getiplayer". If that's what you want, fine. But I suspect you may want it to go to the hard drive with letter "i:", in which case you need to get the correct path to the folder.
It could look like this for example, which is a command I use to save to my S: drive:
The link I gave you tells you how to easily copy the exact path to a particular folder, which you can then paste into the get_iplayer command line window. Read the info at the link I gave you.
Read it.
Secondly, you can use the
command
DURING each download to specify the download location like this example from the guide:
Code:
get_iplayer --get "Top Gear" --tvmode=best --type=tv --channel="BBC Two" --file-prefix="<nameshort>-<senum>-<episodeshort>" --output "/media/TV Shows 1/2 - TV Shows/Top Gear/Season 19"
Note the
location at the end of the command.
Alternatively, you can specify a default download directory by saving a preference. Identify the folder you want downloads to go into and use the following command to save a preference:
Code:
get_iplayer --prefs-add --output="S:\2 - TV Shows"
You can get more advanced and have it set a preference to only save TV shows to this directory:
Code:
get_iplayer --prefs-add --outputtv="S:\2 - TV Shows"
You could even set a preference to only save TV shows to this location and have each show put into a sub folder based on the programme name
Code:
get_iplayer --prefs-add --outputtv="S:\2 - TV Shows" --subdir --subdir-format="<nameshort><-seriesnum>"
I don't use these options personally and have pulled them from the usage guide, so there might be one or two adjustments needed to get it to work perfectly.