Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Graphics and Multimedia
»
Audio and Video
»
Player Music
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Message CM_ShowingChanged...
by
LeP
[
Today
at 02:13:51 am]
Fast Canvas Library V1.05...
by
Gigatron
[
Today
at 01:48:44 am]
Interesting video
by
LeP
[
Today
at 01:32:03 am]
[SOLVED]Program experienc...
by
Cainnech
[
Today
at 12:19:17 am]
Single and Double, Conver...
by
kupferstecher
[
Today
at 12:12:11 am]
TATTabs - how to stop a 3...
by
bobonwhidbey
[
Today
at 12:03:15 am]
New version of LazMapView...
by
wp
[June 12, 2026, 10:56:43 pm]
If FileExists(
by
Bart
[June 12, 2026, 10:39:03 pm]
Which Control should I us...
by
J-G
[June 12, 2026, 08:36:07 pm]
If you are looking for Wi...
by
avra
[June 12, 2026, 07:37:10 pm]
SynEdit theme
by
Martin_fr
[June 12, 2026, 07:35:26 pm]
Can /my/ AI help me with ...
by
microxa
[June 12, 2026, 04:26:18 pm]
Lazarus Bugfix Release 4....
by
Martin_fr
[June 12, 2026, 03:57:39 pm]
Testing with 3.2.4 prepar...
by
Martin_fr
[June 12, 2026, 03:50:17 pm]
IndySecOpenSSL is now ava...
by
LeP
[June 12, 2026, 10:22:50 am]
TDWEdit
by
Ed78z
[June 12, 2026, 10:20:58 am]
Strange Behaviour at Runt...
by
andrew Bubble
[June 12, 2026, 09:54:40 am]
FPC Debug mode releases [...
by
Martin_fr
[June 12, 2026, 09:22:25 am]
Implementing an Elo ratin...
by
paule32
[June 12, 2026, 08:43:20 am]
Death of the Power User
by
wp
[June 12, 2026, 01:29:18 am]
how to add a ForEach call...
by
mas steindorff
[June 11, 2026, 11:42:24 pm]
How to define a type of ...
by
PascalDragon
[June 11, 2026, 09:24:45 pm]
Gitlab site history date.
by
Martin_fr
[June 11, 2026, 08:46:17 pm]
Arkanoid
by
lazarusprogrammer
[June 11, 2026, 08:14:21 pm]
[New Component] ExtTabCtr...
by
d7_2_laz
[June 11, 2026, 05:01:49 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Player Music (Read 5996 times)
buiu
New member
Posts: 9
Player Music
«
on:
April 08, 2018, 07:16:48 pm »
I am Brazilian, and I am developing a music player in Lazarus, but it gives an error:
Code: Pascal
[Select]
[+]
[-]
unit
uMusica
;
{$mode objfpc}{$H+}
interface
uses
Classes
,
SysUtils
,
FileUtil
,
Forms
,
Controls
,
Graphics
,
Dialogs
,
Buttons
;
type
{ TForm1 }
TForm1
=
class
(
TForm
)
BitBtn1
:
TBitBtn
;
BitBtn2
:
TBitBtn
;
BitBtn3
:
TBitBtn
;
BitBtn4
:
TBitBtn
;
OpenDialog1
:
TOpenDialog
;
procedure
BitBtn1Click
(
Sender
:
TObject
)
;
procedure
BitBtn2Click
(
Sender
:
TObject
)
;
procedure
BitBtn3Click
(
Sender
:
TObject
)
;
procedure
BitBtn4Click
(
Sender
:
TObject
)
;
private
{ private declarations }
public
{ public declarations }
end
;
var
Form1
:
TForm1
;
Player
:
OleVariant
;
implementation
{$R *.lfm}
{ TForm1 }
procedure
TForm1
.
BitBtn1Click
(
Sender
:
TObject
)
;
begin
if
OpenDialog1
.
Execute
then
begin
Player
:
=
OleVariant
(
'vlc'
)
;
Player
.
url
:
=
Olevariant
(
UTF8Decode
(
OpenDialog1
.
FileName
)
)
;
end
;
end
;
procedure
TForm1
.
BitBtn2Click
(
Sender
:
TObject
)
;
begin
Player
.
Controls
.
Play
;
end
;
procedure
TForm1
.
BitBtn3Click
(
Sender
:
TObject
)
;
begin
Player
.
Controls
.
Pause
;
end
;
procedure
TForm1
.
BitBtn4Click
(
Sender
:
TObject
)
;
begin
Player
.
Controls
.
Stop
;
end
;
end
.
Project ProjetoMusica raised exception class 'External: SIGSEGV'.
Logged
Awkward
Full Member
Posts: 154
Re: Player Music
«
Reply #1 on:
April 08, 2018, 07:28:23 pm »
why you don't check what "Player" going valid after assignment?
Logged
buiu
New member
Posts: 9
Re: Player Music
«
Reply #2 on:
April 08, 2018, 07:37:04 pm »
I do not know how to do this, I'm a beginner.
Logged
buiu
New member
Posts: 9
Re: Player Music
«
Reply #3 on:
April 08, 2018, 07:48:32 pm »
Code: Pascal
[Select]
[+]
[-]
uses
Classes
,
SysUtils
,
FileUtil
,
Forms
,
Controls
,
Graphics
,
Dialogs
,
Buttons
,
ComObj
;
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
BitBtn1Click
(
Sender
:
TObject
)
;
begin
if
OpenDialog1
.
Execute
then
begin
Player
:
=
CreateOleObject
(
'vlc-player'
)
;
Player
.
url
:
=
Olevariant
(
UTF8Decode
(
OpenDialog1
.
FileName
)
)
;
end
;
end
;
umusica.pas(44,13) Error: Identifier not found "CreateOleObject"
Please, can someone help me?
«
Last Edit: April 08, 2018, 08:03:51 pm by buiu
»
Logged
soerensen3
Full Member
Posts: 213
Re: Player Music
«
Reply #4 on:
April 08, 2018, 09:04:07 pm »
Code: Pascal
[Select]
[+]
[-]
uses
ComObj
;
Add ComObj to your uses section.
Logged
Lazarus 1.9 with FPC 3.0.4
Target: Manjaro Linux 64 Bit (4.9.68-1-MANJARO)
buiu
New member
Posts: 9
Re: Player Music
«
Reply #5 on:
April 08, 2018, 09:46:46 pm »
utocadordemp3.pas(7,6) Fatal: Cannot find unit ComObj used by uTocadorDeMP3 of the Project Inspector.
Use Linux OpenMandriva LX3
Logged
soerensen3
Full Member
Posts: 213
Re: Player Music
«
Reply #6 on:
April 08, 2018, 10:35:01 pm »
That's Windows only! See the unit is in the pascal sources under "packages/winunits-base/src".
https://github.com/graemeg/freepascal/blob/master/packages/winunits-base/src/comobj.pp
Maybe that helps:
http://wiki.freepascal.org/Video_Playback_Libraries
Logged
Lazarus 1.9 with FPC 3.0.4
Target: Manjaro Linux 64 Bit (4.9.68-1-MANJARO)
metis
Sr. Member
Posts: 302
Re: Player Music
«
Reply #7 on:
April 09, 2018, 04:45:26 pm »
@buiu
Obviously, You want to make a VLC-Player (= Audio & Video).
-> Why don't You use the Components, that come with Lazarus ?
Package:
lazvlc
: TLCLVLCPlayer, TVLCMediaListPlayer.
For Audio, only, see here:
http://wiki.freepascal.org/Multimedia_Programming
-> GoTo: "Playing Sounds"
«
Last Edit: April 09, 2018, 04:47:03 pm by metis
»
Logged
Life could be so easy, if there weren't those f*** Details.
My FFmpeg4Lazarus =
FFPlay4Laz
+
FFGrab4Laz
+ FFInfo4Laz
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Graphics and Multimedia
»
Audio and Video
»
Player Music
TinyPortal
© 2005-2018