Quick Sign In:  

Forum: Wishes and new features

Topic: allow more info to be seen

Dieses Thema ist veraltet und kann veraltete oder falsche Informationen enthalten.

i've been working on a skin and got stuck with file info. so i looked at vdj script.. didn't understand any of that stff.. and vdj 4,5,6 syntax from various skins.

conclusion: vdj can very easily display all file info in the library, however it does not support so on the deck.

file name, file path, id3 album, id3 year, id3 track, id3 genre, file size, and bit rate are not available.

interestingly enough comment is.. curious to know why that is.. anyways..

if u find the time, please add in these items for skin creation via vdj 6 syntax.. i'm not getting this vdj script.. sorry.

thanks,

dj shahar
 

geposted Sun 12 Dec 10 @ 2:50 am
SBDJPRO Infinity Member since 2006
VDJ6 syntax is VDJScript. All new syntaxes will be via VDJScript - the old % format is deprecated so I can't see anything being added to it. Luckily getting information via VDJScript is easy. These are textzone values for all the things you wanted to dislay:

`get loaded_song 'filename'`
`get loaded_song 'filepath'`
`get loaded_song 'album'`
`get loaded_song 'year'`
`get loaded_song 'title'`
`get loaded_song 'genre'`
`get loaded_song 'filesize'`
`get loaded_song 'bitrate'`

These do however use the database values rather than ID3 values, but with good database management this shouldn't be an issue - especially since they are often initially read via ID3 anyway.
 

geposted Sun 12 Dec 10 @ 5:38 am
thanks scott.

would u please give me an example of vdj script for textzone..

an image will do very nicely. i just need that jump start and i'll do the rest.

i couldn't even assign vdj scipt to play pause channel 1.

the purpose of this skin is for a vdj with out a d.b. to compare 2 files. i use amps mm as my library. tagscanner as my editor and vdj as my music comparer
 

geposted Sun 12 Dec 10 @ 12:39 pm
djdadPRO InfinityDevelopment ManagerMember since 2005
Use the above syntax by placing it into the format=" ......." element

Note, this is a VDJ Script ver 7, so you have to create a version 7 Skin.
 

geposted Sun 12 Dec 10 @ 1:08 pm
djcelPRO InfinityModeratorMember since 2004
Here is the full list with "browsed_song" :

format="`get browsed_song 'filename'`"
format="`get browsed_song 'author'`"
format="`get browsed_song 'title'`"
format="`get browsed_song 'filetype'`"
format="`get browsed_song 'drive'`"
format="`get browsed_song 'filepath'`"
format="`get browsed_song 'filesize'`"
format="`get browsed_song 'filedate'`"
format="`get browsed_song 'length'`"
format="`get browsed_song 'bpm'`"
format="`get browsed_song 'key'`"
format="`get browsed_song 'keynumeric'`"
format="`get browsed_song 'bitrate'`"
format="`get browsed_song 'stars'`"
format="`get browsed_song 'album'`"
format="`get browsed_song 'composer'`"
format="`get browsed_song 'genre'`"
format="`get browsed_song 'year'`"
format="`get browsed_song 'playcount'`"
format="`get browsed_song 'firstseen'`"
format="`get browsed_song 'firstplay'`"
format="`get browsed_song 'lastplay'`"
format="`get browsed_song 'LinkedVideo'`"
format="`get browsed_song 'comment'`"

an example wrote :
<textzone>
<pos x="1060" y="930"/>
<size width="198" height="14"/>
<up x="1060" y="5612"/>
<text font="arial" size="14" align="left" weight="normal" color="#d1d3d9" format="`get browsed_song 'comment'`"/>
</textzone>



but it also works with "loaded_song"


 

geposted Sun 12 Dec 10 @ 1:11 pm
if song is not in library.. ie. dragged from usb thumbdirve.. will it still work?

i thank all of you for all of your help.
 

geposted Sun 12 Dec 10 @ 2:06 pm


(Alte Themen und Foren werden automatisch geschlossen)