DX Media Player II

Share sample pubs, scripts, etc. with other NeoBook users

Moderator: Neosoft Support

Locked
Ndzn
Posts: 134
Joined: Sun Sep 20, 2009 8:37 am
Contact:

DX Media Player II

Post by Ndzn »

DX Media Player II

A new sample PUB for NeoBookDX!

Image

Features...

* Audio
  • - Play existing folders of music files
    - Continuous Play Option
    - Displays "[Artist] - [Album].jpg" or "Folder.jpg" CD Covers
    - Displays "Wallpaper.jpg" as Album background images
* Video
  • - Play entire folder of videos
    - Video modes; Aspect, Stretch, Fullscreen
* Images
  • - Browse & View folders of Images
    - Play Photo Slideshows with Transitions
Interface Features...
  • * File Browser Style Media Center
    * Flexible, Stretchable Window
    * Toggle Toolbar View
    * Folder\File Browser
    * Split Windows
Download DXMPII
Visit NeoDezign for screenshots and more information about this PUB...
Luiz Alfredo
Posts: 198
Joined: Thu Apr 19, 2007 6:58 am
Location: Brazil

Post by Luiz Alfredo »

Great. Congratulations.
L.A.G.M.
Highflyer
Posts: 81
Joined: Thu May 26, 2005 10:42 am
Location: Rome

Post by Highflyer »

this is a great and very simple, yet very effective player.
studied the programming -
is there a way to loop a video file at all?
so that it keeps looping until you press stop

Thanks for the brill software
Ndzn
Posts: 134
Joined: Sun Sep 20, 2009 8:37 am
Contact:

Post by Ndzn »

Thanks. I cannot take all the credit for this sample pub as some of the core code is from existing NeoSoft samples. I just placed them into a new interface then added or changed some of the code and functionality to create this file-browser type media center.
is there a way to loop a video file at all?
The "Continous Play" button (the circular arrow) assumes a folder of multiple files, like that of an Audio CD ripped to a folder. As a "media center" style app, I didn't see a need to loop a single file endlessly.

If "the file" were the only file in the folder and the Continuous var "[LoopList]" = "True" then that file would loop indefinitely. However, this makes for an undesirable requirement, doesn't it?

To play a single file in a loop you could do a number of things to customize the app to play loops. As you may know, the NeoBookDX "dxPlay" command offers the option to loop a file...
  • Syntax
    dxPlay "player id" "loop count"

    Ex.
    dxPlay "[Player1]" "5"
    (loops the file 5 times)

    Ex.
    dxPlay "[Player1]" "LOOP"
    (loops the file indefinitely)
You could create a Checkbox option or make a Menu out of the Continuous button to set another variable. In the "Player1Complete" sub is where the "dxPlay" command is executed from. You could alter that sub to include another conditional statement that detects...
  • Ex.
    If "[LoopFile]" "True"
    dxPlay "[Player1]" "LOOP"
    Else
    dxPlay "[Player1]" "1"
    EndIf

I hope that helps.
jim
Highflyer
Posts: 81
Joined: Thu May 26, 2005 10:42 am
Location: Rome

Post by Highflyer »

Thank you for the info.
Will try and report the results
User avatar
Claude GUYOT
Posts: 225
Joined: Sun Oct 01, 2006 10:05 am
Location: France

DX Media Player II

Post by Claude GUYOT »

Merci pour cette nouvelle présentation et nouvelle publication témoin pour NeoBookDX.
Très grand et vraiment très Pro.

Merci. Génial pour nous tous.

Claude
eddy current
Posts: 48
Joined: Mon May 23, 2005 7:24 pm

Post by eddy current »

Thank you for this piece of work -- very nice!

Not trying to look a gift horse in the mouth, but these three suggested enhancements would be wonderful:

1. Ability to lock the aspect ratio when sizing the window.
2. Right-click "Original Size" command to quickly resize/rescale.
3. Right-click "Info" or "About" box that shows clip info.

Thanks again,
Glen
Ndzn
Posts: 134
Joined: Sun Sep 20, 2009 8:37 am
Contact:

Re: DX Media Player II

Post by Ndzn »

Claude GUYOT wrote:Merci pour cette nouvelle présentation et nouvelle publication témoin pour NeoBookDX.
Très grand et vraiment très Pro.

Merci. Génial pour nous tous.

Claude
Merci. Et, vous êtes tout à fait bienvenu.
Thank you. And, you are quite welcome.

gcoulthard wrote:Thank you for this piece of work -- very nice!

Not trying to look a gift horse in the mouth, but these three suggested enhancements would be wonderful:

1. Ability to lock the aspect ratio when sizing the window.
2. Right-click "Original Size" command to quickly resize/rescale.
3. Right-click "Info" or "About" box that shows clip info.

Thanks again,
Glen
Thanks. You're welcome. And, you're more than welcome to -- encouraged to -- customize this PUB any way you wish. This sample PUB was made to showcase what NeoSofts' NeoBookDX is capable of... and it's capable of even more.

"Ability to lock the aspect ratio when sizing the window. "

On this point I'm not sure I understand what you mean. DX has the video mode "Aspect". The DXMPII sample PUB has a Video Mode menu button in the lower-right control bar to choose from "Normal, Stretch, Aspect, and Optimize". Resizing the window in Aspect (and even "Stretch") will maintain a videos aspect. That is to say, aspect ratio is maintained IF that video file has been rendered properly.
User avatar
andybrock
Posts: 181
Joined: Mon Apr 20, 2009 1:38 pm
Location: Somerset, UK
Contact:

Post by andybrock »

Any chance this file could be re-uploaded as the download link for it no longer works.

Andy
User avatar
Pilou
Posts: 546
Joined: Sun Oct 16, 2005 4:17 pm
Contact:

Post by Pilou »

Bonjour

Andybrock

http://neodezign.net/dxmpii/index.html

Merci à son auteur

pilou
Locked