1

我想知道是否有办法使用 powershell 将音乐复制到 ipod。

如果需要,我不介意在我的电脑上安装 iTunes。我不想将我的 ipod 与 iTunes 同步,或者将文件添加到 iTunes 库。

我现在复制音乐的方式是,我只需选择包含我想要的音乐的文件夹并将其拖到我的 iTunes 中的 ipod 上。这样它就不会将音乐添加到 iTunes 库中。

4

2 回答 2

5

我设法弄清楚了

$IpodName = "type the name of your ipod hear as it apears in itunes"
$SongToCopy = 'c:\tools\test\04.mp3'

#Create a com object to talk to Itunes and List the Librarys
    $iTunes = New-Object -ComObject iTunes.Application
    $LibrarySource = $iTunes.sources

$IpodSource = $LibrarySource.ItemByName($IpodName)

$IpodPlaylists = $IpodSource.Playlists
$IpodPlaylist  = $IpodPlaylists.ItemByName($IpodName)
$IpodTracks    = $IpodPlaylist.Tracks

$IpodTracks.Count

$IpodPlaylist.AddFile($SongToCopy)

$IpodTracks.Count
于 2012-08-06T13:00:49.180 回答
0

我相信 hal rottenberg 在这里做了类似的事情。 http://halr9000.com/article/480

于 2012-08-06T12:50:46.353 回答