VBGood网站全文搜索 Google

搜索VBGood全站网页(全文搜索)
排序: 热度 日期 标题, 方式 倒序 顺序 VBGood首页 - 代码天地
评论:0, 阅读:17501, 日期:2000-12-31 [多媒体] 类似强级解霸的播放软件
暂时没有这代码的摘要
评论:0, 阅读:18290, 日期:2002-01-12 [多媒体] 类似星球大战片头的卷幕效果
暂时没有这代码的摘要
评论:0, 阅读:13604, 日期:2000-11-21 [多媒体] 能够得到特定的目录路径
这段代码能够得到特定的目录路径。
评论:0, 阅读:10719, 日期:2000-11-08 [多媒体] 获得mp3文件的infomation
Working with MP3

Does your program need to work with MP3 files? Creating your own audio program or music library and need to automatically extract details such as the artist, track title and album? Perhaps you even need to overwrite such ID3 tags?

The winner of our SmartUI competition, MuchMetal shows us how with this neat class.

To get details of a particular MP3, firstly, set the Filename property. Then check that the isActive property is set to True, indicating you have referenced a valid MP3 file. Next, read the appropriate properties, such as Title, Artist, Album and Genre.

You can also change any of these properties, then save 慹m back to the original file with the SaveTag method.

To learn how to play MP3 files from within Visual Basic, check out this neat tutorial from our partner in code, VBWeb.co.uk.

Sample Code

Dim MP3 As New clsID3
MP3.Filename = "c:\ChrisRea.mp3"

If MP3.isActive = True Then
`Get ID3 information about MP3
MsgBox "MP3 Info:" & vbCrLf & vbCrLf & _
"Title:" & vbTab & MP3.Title & vbCrLf & _
"Artist:" & vbTab & MP3.Artist & vbCrLf & _
"Album:" & vbTab & MP3.Album & vbCrLf & _
"Year:" & vbTab & MP3.Year & vbCrLf & _
"Genre:" & vbTab & MP3.Genre & vbCrLf & _
"Comment:" & vbTab & MP3.Comment

`Change the ID3 information
MP3.Artist = "New Artist 2"
MP3.Title = "New Title 2"
MP3.Album = "Some Album 2"
MP3.Comment = "Created using clsID3 2"
MP3.Year = "2000"
MP3.Genre = 54

MP3.SaveTag `Saves the new ID3 information

Else `Error opening MP3 file
MsgBox "Invalid MP3 file"
End If

这个class不错,可以获得mp3文件的information,能获得的项目就如同我们在winamp中看到的文件information一样。上面的例子,在运行的时候要先下载这个class,然后添加到程序中,就可以了。
评论:0, 阅读:18006, 日期:2001-04-09 [多媒体] 让pc喇叭发声(内含三个代码)
暂时没有这代码的摘要
暂时没有这代码的摘要
评论:0, 阅读:16802, 日期:2002-02-03 [多媒体] 这是另外一个DirectDraw的动画示例(需要DX类型库)
暂时没有这代码的摘要