Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: HOw to show Bits Per Sample (Read 16723 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

HOw to show Bits Per Sample

Hi

I'm looking for a bit of help.

I would like to have a column that shows Bits Per Sample, is this possible. I can't seem to find the code to inable this.

I am using ColumnII playlist.

Thanks

GAry



HOw to show Bits Per Sample

Reply #3
it works fine in a column here.

screenshot

 

HOw to show Bits Per Sample

Reply #4
Personally, I use this for a column:
Code: [Select]
$if($strcmp(%__encoding%,lossy),%bitrate% kbps,%__bitspersample% bit)


Then I can get rid of the bitrate column, since bitrate is not really important for lossless files, and bitdepth doesn't exist for lossy files.
elevatorladylevitateme

HOw to show Bits Per Sample

Reply #5
Hi

That fixed it, I was using [%bitspersample%], which didn't work.

Many thanks for your help.

G.

HOw to show Bits Per Sample

Reply #6
Personally, I use this for a column:
Code: [Select]
$if($strcmp(%__encoding%,lossy),%bitrate% kbps,%__bitspersample% bit)


Then I can get rid of the bitrate column, since bitrate is not really important for lossless files, and bitdepth doesn't exist for lossy files.

this is wonderful. thank you
whenever I have to do subtraction I'm like "wut?"

HOw to show Bits Per Sample

Reply #7
thank you for the advise! I was having the same issue.