296 messaggi dal 09 marzo 2001
Ciao ragazzi sto migrando una vecchia appl. che mi leggeva i tag all'interno dei file.mp3 che aveva una funzione a partire da un path mi restituiva un'array con i tag mp3 ..
ma non la riesco a "tradurre in .NET" .. non è che mi date una mano ??
O ne avete una simile !
Grazie
Stefano


Function GetMP3Info(ByVal sFileName As String)
Dim mp3info As MP3TagInfo
Dim infoRet(5) As String
' open the specified file
Open sFileName For Binary As #1
' fill the strct's fileds
With mp3info
myfile.re(, FileLen(sFileName) - 127, .tag)
If Not .tag = "TAG" Then
Close #1
GetMP3Info = infoRet
Exit Function
End If
Get #1, , .title
Get #1, , .artist
Get #1, , .album
Get #1, , .year
Get #1, , .comment
Get #1, , .genre
Close #1
End With

' from struct to array
infoRet(0) = Trim$(mp3info.title)
infoRet(1) = Trim$(mp3info.artist)
infoRet(2) = Trim$(mp3info.album)
infoRet(3) = Trim$(mp3info.year)
infoRet(4) = Trim$(mp3info.comment)
infoRet(5) = CInt(Asc(Trim$(mp3info.genre))) - 1
'return the array
Return infoRet
End Function
296 messaggi dal 09 marzo 2001
Chiedo Scusa ....
Ho trovato già un topic ..
http://forum.aspitalia.com/forum/topic.aspx?PostID=212433&Search=tag+mp3#212433
296 messaggi dal 09 marzo 2001
Ummmm ... Quello che ho trovato funziona solo con ASP 3.0 e con .NET non ho trovato nulla ..
A voi non vi vine in mente nulla per darmi una mano ???
:-)

Torna al forum | Feed RSS

ASPItalia.com non è responsabile per il contenuto dei messaggi presenti su questo servizio, non avendo nessun controllo sui messaggi postati nei propri forum, che rappresentano l'espressione del pensiero degli autori.