尝试将Direct Show 9后端与qt的phonon框架一起使用时,我收到以下错误:
Pins cannot connect due to not supporting the same transport. (0x80040266)
有谁知道此错误的含义和/或如何解决它?这是声子的直接显示9后端的问题吗?
显然,问题与错误的元数据有关。如果 Id3 标签不正确,则直接显示 9 个后端会阻塞它们。我通过编写以下函数解决了这个问题:
void removeTags(UDJ::DataStore::song_info_t& song){
static int fileCount =0;
if(song.source.fileName().endsWith(".mp3")){
UDJ::Logger::instance()->log("On windows and got mp3, copying and striping metadata tags");
QString tempCopy = QDesktopServices::storageLocation(QDesktopServices::TempLocation) + "/striped" + QString::number(fileCount) +".mp3";
if(QFile::exists(tempCopy)){
UDJ::Logger::instance()->log("Prevoius file existed, deleting now");
if(QFile::remove(tempCopy)){
UDJ::Logger::instance()->log("File removal worked");
}
}
bool fileCopyWorked = QFile::copy(song.source.fileName(), tempCopy);
if(!fileCopyWorked){
UDJ::Logger::instance()->log("File copy didn't work");
return;
}
TagLib::MPEG::File file(tempCopy.toStdString().c_str());
file.strip();
file.save();
Phonon::MediaSource newSource(tempCopy);
song.source = newSource;
if(fileCount == 3){
fileCount =0;
}
else{
fileCount++;
}
}
}
song_info_t
只是一个结构,里面有一个叫做source
的Phonon::MediaSource成员。该函数的工作原理是使用 taglib 去除歌曲的所有元数据并将新歌曲另存为临时文件。该函数还会轮换用于临时文件的文件名,以便它不会创建无限数量的临时副本文件。我希望这可以帮助其他遇到此错误的人。