问题来源: http://www.cnblogs.com/del/archive/2008/12/20/1022124.html#1408043
这是从 http://www.cnblogs.com/del/archive/2008/08/17/1269958.html 修改来的.
代码文件:
这是从 http://www.cnblogs.com/del/archive/2008/08/17/1269958.html 修改来的.
代码文件:
窗体文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) OpenDialog1: TOpenDialog; Button1: TButton; Button2: TButton; Button3: TButton; Button4: TButton; procedure FormCreate(Sender: TObject); procedure Button1Click(Sender: TObject); procedure Button2Click(Sender: TObject); procedure Button3Click(Sender: TObject); procedure Button4Click(Sender: TObject); procedure FormDestroy(Sender: TObject); end; var Form1: TForm1; implementation {$R *.dfm} uses Bass; var hs: HSTREAM; mem: TMemoryStream; {新加的} procedure TForm1.FormCreate(Sender: TObject); begin if HiWord(BASS_GetVersion) <> BASSVERSION then MessageBox(0, '"Bass.dll" 文件版本不合适! ', nil, MB_ICONERROR); if not BASS_Init(-1, 44100, 0, 0, nil) then ShowMessage('初始化错误'); end; procedure TForm1.Button1Click(Sender: TObject); var Mp3Path: string; begin OpenDialog1.Filter := 'Mp3 文件(*.mp3)|*.mp3|Wav 文件(*.wav)|*wav'; if OpenDialog1.Execute then Mp3Path := OpenDialog1.FileName; {下面几行是与原来不同的代码} if not Assigned(mem) then mem := TMemoryStream.Create; mem.LoadFromFile(Mp3Path); mem.Position := 0; BASS_StreamFree(hs); hs := BASS_StreamCreateFile(True, mem.Memory, 0, mem.Size, 0); if hs < BASS_ERROR_ENDED then Text := '打开失败' else Text := string(Mp3Path); end; procedure TForm1.Button2Click(Sender: TObject); begin BASS_ChannelPlay(hs, False); end; procedure TForm1.Button3Click(Sender: TObject); begin BASS_ChannelPause(hs); end; procedure TForm1.Button4Click(Sender: TObject); begin BASS_ChannelStop(hs); end; procedure TForm1.FormDestroy(Sender: TObject); begin BASS_Free; if Assigned(mem) then mem.Free; {这也是新加的} end; end.
object Form1: TForm1 Left = 0 Top = 0 Caption = 'Form1' ClientHeight = 117 ClientWidth = 202 Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -11 Font.Name = 'Tahoma' Font.Style = [] OldCreateOrder = False OnCreate = FormCreate OnDestroy = FormDestroy PixelsPerInch = 96 TextHeight = 13 object Button1: TButton Left = 16 Top = 17 Width = 75 Height = 25 Caption = #25171#24320 TabOrder = 0 OnClick = Button1Click end object Button2: TButton Left = 112 Top = 17 Width = 75 Height = 25 Caption = #25773#25918 TabOrder = 1 OnClick = Button2Click end object Button3: TButton Left = 112 Top = 48 Width = 75 Height = 25 Caption = #26242#20572 TabOrder = 2 OnClick = Button3Click end object Button4: TButton Left = 112 Top = 79 Width = 75 Height = 25 Caption = #20572#27490 TabOrder = 3 OnClick = Button4Click end object OpenDialog1: TOpenDialog Left = 40 Top = 56 end end
分类:
多媒体函数库Bass.dll
, 问与答
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
2007-12-20 JScript 正则表达式语法表
2007-12-20 无类型文件读写