Quick Sign In:  

Forum: VirtualDJ Technical Support

Topic: Playcount from tag
AicanarPRO InfinityMember since 2024
Is there a way to take the playcount from the ID3 tags?
 

Posted Mon 18 Mar 24 @ 5:28 pm
The play count in VDJ is stored in the database, not the file tag.
 

Posted Mon 18 Mar 24 @ 5:32 pm
AicanarPRO InfinityMember since 2024
I know. But my question goes in a different direction:

I would like to know whether there is a way to initially read the value from the ID3 tag and then transfer it to the database.
 

Posted Tue 19 Mar 24 @ 8:34 am
It would have been better to mention that in your first post :-)

How were those tags written (which software)?

 

Posted Tue 19 Mar 24 @ 9:44 am
locoDogPRO InfinityModeratorMember since 2013
Most cases vdj uses the database not ID3 tags. So searching - writing info with scripts all act on the database.

You will see when vdj interacts with ID3, If you search in options for
tag

With script you can get & set database field data. e.g.
set $tempString `get_browsed_song artist` & get_browsed_song title & param_cast & browsed_song artist & get_var $tempString & param_cast & browsed_song title


This little script demonstrated how to swap the artist and title, first saving artist in a variable, then writing over the artist with the title, then getting the saved variable and using that to write over the title.
 

Posted Tue 19 Mar 24 @ 2:21 pm