我有一个可将大多数DVD翻录到的NAS。问题来自系列。当我必须改季时,必须手动输入详细信息(标题,注释等)。
为了解决这个问题,我编写了以下脚本:
$array = @()
(Get-ChildItem -Path 'c:\Videos\Dead Like Me\*.mpg' ).FullName |
foreach{
$array += $_
}
$i = 0
Do {
$Episode = $i + 1
$NewName = "Dead Like Me S1E$Episode.mpg"
Set-ItemProperty -Path $array[$i] -Name "Title" -Value $NewName
Set-ItemProperty -Path $array[$i] -Name "Comments" -Value $NewName
Rename-Item -Path $array[$i] -NewName $NewName
$i += 1
} While ($i -lt $array.length)
似乎Set-ItemProperty无法识别“标题”或“注释”,而不是文件“详细信息”选项卡中的其他属性。
我也尝试过
Get-ChildItem $array[$i] | Set-ItemProperty -Name "Title" -Value $NewName
无论哪种方式,我都会收到类似于以下内容的错误:
Set-ItemProperty:属性字符串Title = Dead Like Me S1 D1 E3.mpg 不存在或找不到。 在c:\ Videos \ Dead Like Me \ tmp.ps1:20 char:30 + ... ChildItem $ array [$ i] | Set-ItemProperty-名称“标题”-值$ NewName + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo:ReadError :(字符串标题= Dead Like Me S1 D1 E3.mpg:PSNoteProperty)[Set-ItemProperty],我OException + FullyQualifiedErrorId:SetPropertyError,Microsoft.PowerShell.Commands.SetItemPropertyCommand
Set-ItemProperty不能解决这些属性吗?
@trebleCode更新
我运行了以下内容:
get-itemproperty "C:\Videos\Dead Like Me\video.mpg" | Format-List -Property * -Force
它返回:
PSPath : Microsoft.PowerShell.Core\FileSystem::C:\Video\Dead Like Me\video.mpg
PSParentPath : Microsoft.PowerShell.Core\FileSystem::C:\Video\Dead Like Me Renamer
PSChildName : video.mpg
PSDrive : C
PSProvider : Microsoft.PowerShell.Core\FileSystem Mode : -a----
VersionInfo :
File: C:\Video\Dead Like Me\video.mpg
InternalName:
OriginalFilename:
FileVersion:
FileDescription:
Product:
ProductVersion:
Debug: False
Patched: False
PreRelease: False
PrivateBuild: False
SpecialBuild: False
Language:
BaseName : video
Target : {}
LinkType :
Name : video.mpg
Length : 321536
DirectoryName : C:\Video\Dead Like Me
Directory : C:\Video\Dead Like Me
IsReadOnly : False
Exists : True
FullName : C:\Video\Dead Like Me\video.mpg
Extension : .mpg
CreationTime : 2019-02-04 10:15:51
CreationTimeUtc : 2019-02-04 16:15:51
LastAccessTime : 2019-02-04 13:03:31
LastAccessTimeUtc : 2019-02-04 19:03:31
LastWriteTime : 2018-07-09 15:00:47
LastWriteTimeUtc : 2018-07-09 20:00:47
Attributes : Archive
答案 0 :(得分:1)
有一个名为TagLib-Sharp的开源库,它支持在音频和视频文件上设置元数据。它非常易于使用-this blog中有一些示例代码-其要旨是:
Import-Module "D:\powershell\modules\MPTag\taglib-sharp.dll"
$BOXTYPE_TVSH = "tvsh"; # TV Show or series
$mediaFile = [TagLib.File]::Create($file.FullName)
[TagLib.Mpeg4.AppleTag]$customTag = $mediaFile.GetTag([TagLib.TagTypes]::Apple, 1)
$customTag.SetText($BOXTYPE_TVSH, $showName)
$mediaFile.Save()