Multimedia Player

Please support our Visual Basic 4 / 5 / 6 advertiser: Programming Forums - DaniWeb Sister Site
Reply

Join Date: Jul 2004
Posts: 25
Reputation: Naveen is an unknown quantity at this point 
Solved Threads: 0
Naveen's Avatar
Naveen Naveen is offline Offline
Light Poster

Multimedia Player

 
0
  #1
Jan 28th, 2005
hi guys. am new to VB. so dont know too many things. i am making a multimedia player and i have completed the brass tacks. i have a couple of qns for features that i wanna put in

1. how do i implement a feature wherein i display the time duration of file and also can track the time as file plays?

2. how do i implement a playlist feature? i was thinking of using a list box storin the path in an array and only displayin the file name in the list.

3. when i move the player, the playlist shuld move with it. how shuld i do it?

4. also how do i put in volume control and an equalizer?

il appreciate any help.

regards,
Naveen.
Reply With Quote Quick reply to this message  
Join Date: Dec 2004
Posts: 2,413
Reputation: Comatose is a jewel in the rough Comatose is a jewel in the rough Comatose is a jewel in the rough Comatose is a jewel in the rough 
Solved Threads: 211
Team Colleague
Comatose's Avatar
Comatose Comatose is offline Offline
Taboo Programmer

Re: Multimedia Player

 
0
  #2
Jan 28th, 2005
I can help you with most of the problems you are encountering... however, I'm not sure about a volume control and an EQ. I tried to build an EQ once.... and failed horribly. To this day, I've been unable to figure out how to impliment an EQ with VB. A Lot of the problem has to do with checking frequencies, or something crazy. Anyway, I'll see what I can do about the moving window, display list, and display time. I'll get back to you.
Reply With Quote Quick reply to this message  
Join Date: Dec 2004
Posts: 2,413
Reputation: Comatose is a jewel in the rough Comatose is a jewel in the rough Comatose is a jewel in the rough Comatose is a jewel in the rough 
Solved Threads: 211
Team Colleague
Comatose's Avatar
Comatose Comatose is offline Offline
Taboo Programmer

Re: Multimedia Player

 
0
  #3
Jan 29th, 2005
I've Got It Working, But For some strange reason the addressof function is freaking out (either addressof or setwindowlong) so I had to resort to an external DLL in order to make the playlist window move with (and be dockable) to the main window. It's a royalty free dll, that you can ship with your program... it's purpose is to provide mouse and keyboard hooks (system wide). I'm not sure if you want to rely on componants.... so let me know.

Also, Exactly What Kind Of Multi-media player? Songs? Video? Both? Are You using the microsoft Multi-media control?
Reply With Quote Quick reply to this message  
Join Date: Jul 2004
Posts: 25
Reputation: Naveen is an unknown quantity at this point 
Solved Threads: 0
Naveen's Avatar
Naveen Naveen is offline Offline
Light Poster

Re: Multimedia Player

 
0
  #4
Jan 31st, 2005
thnx for the effort coma.
im using MS Multimedia Control 6.0(SP3)
and MS Common Dialog Control 6.0(SP3)
should i send u my code?
Reply With Quote Quick reply to this message  
Join Date: Dec 2004
Posts: 2,413
Reputation: Comatose is a jewel in the rough Comatose is a jewel in the rough Comatose is a jewel in the rough Comatose is a jewel in the rough 
Solved Threads: 211
Team Colleague
Comatose's Avatar
Comatose Comatose is offline Offline
Taboo Programmer

Re: Multimedia Player

 
0
  #5
Jan 31st, 2005
Yes, you can e-mail it to me as an attachment. If I'm not mistaken, though, the multimedia control only allows .mid, .wav, and .avi..... so something like an MP3 player, or mpeg player is out of the question with it. I'll also (when I get home from work) will send you the project I have for docking the window.
Reply With Quote Quick reply to this message  
Join Date: Dec 2004
Posts: 2,413
Reputation: Comatose is a jewel in the rough Comatose is a jewel in the rough Comatose is a jewel in the rough Comatose is a jewel in the rough 
Solved Threads: 211
Team Colleague
Comatose's Avatar
Comatose Comatose is offline Offline
Taboo Programmer

Re: Multimedia Player

 
0
  #6
Feb 3rd, 2005
Here is that source that I promised you, let me know how that portion works for you.
Attached Files
File Type: zip Attach.zip (36.9 KB, 82 views)
Reply With Quote Quick reply to this message  
Join Date: Jul 2004
Posts: 25
Reputation: Naveen is an unknown quantity at this point 
Solved Threads: 0
Naveen's Avatar
Naveen Naveen is offline Offline
Light Poster

Re: Multimedia Player

 
0
  #7
Feb 5th, 2005
Originally Posted by Comatose
Here is that source that I promised you, let me know how that portion works for you.
Thnx for the file. Im sorry i havent been able to get back to you. Been a bit busy. Will mail u asap.

Regards,
Naveen.
Reply With Quote Quick reply to this message  
Join Date: Jan 2006
Posts: 33
Reputation: SpectateSwamp is an unknown quantity at this point 
Solved Threads: 0
SpectateSwamp's Avatar
SpectateSwamp SpectateSwamp is offline Offline
Light Poster

Re: Multimedia Player

 
0
  #8
Jan 23rd, 2006
Originally Posted by Naveen
hi guys. am new to VB. so dont know too many things. i am making a multimedia player and i have completed the brass tacks. i have a couple of qns for features that i wanna put in
(First off good luck. I wrote a VB MultiMedia Player)

1. how do i implement a feature wherein i display the time duration of file and also can track the time as file plays?
(I use a call to get the video length. MPG and MP3
I'd have to look that up)

2. how do i implement a playlist feature? i was thinking of using a list box storin the path in an array and only displayin the file name in the list.
(mine evolved from a text search. When I catalogue mp3
files I get what meta data is there along with the path
which sometimes includes valuable info. Creating a two
line play list line1 is the search info line2 is the file path.)

3. when i move the player, the playlist shuld move with it. how shuld i do it?
(Right. my playlist is just a text file of these MultiMedia. easily
changed and updated. The program auto runs from DVD CD)

4. also how do i put in volume control and an equalizer?
(I never had any luck trying to control the volume. But I
have no problem videoing in a playback of the original with
the volume turned off. The resolution loss is no worse than
when I transfer to the net. And if it is really valuable video
I don't want to transfer the original)

il appreciate any help.

regards,
Naveen.
Good Luck
I'm sure I can give you some pointers...
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the Visual Basic 4 / 5 / 6 Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC