Página 1 de 1

Reproducir MP3

Publicado: Mié Ene 26, 2022 6:20 pm
por gerencia
Hola a todos,
Alguien sabe como reproducir un MP3 en Xailer

Re: Reproducir MP3

Publicado: Mié Ene 26, 2022 6:50 pm
por Hurricane
Olá,

veja o exemplo SAMPLES\VIDEO\VideoPlayer.XPJ
O arquivo fonte da classe TVideoPlayer esta junto.

Código: Seleccionar todo

METHOD FormInitialize( oSender ) CLASS TVideo

   DeleteMenu( GetSystemMenu( ::Handle ), 2, MF_BYPOSITION )
   WITH OBJECT ::oMCI := TVideoPlayer():New( Self )
      //:cMediaFile := "fp.avi"
      :cMediaFile := "teste.mp3"
      :Create()
      ::SetClientSize( :nWidth, :nHeight )
   END
   ::lCentered := .T.

RETURN Nil

Código: Seleccionar todo

METHOD FormShow( oSender ) CLASS TVideo

   ::oMCI:Play()

RETURN Nil
gerencia escribió: Mié Ene 26, 2022 6:20 pm Alguien sabe como reproducir un MP3 en Xailer

Re: Reproducir MP3

Publicado: Jue Ene 27, 2022 2:50 am
por gerencia
Magnifico.

Mil Gracias.