Although, I completely agree with the other board members on the topic, you cannot make that determination unless you try it yourself. This is just to give you a 'possibility' as you asked -- something you can do yourself. It will not work with most older browsers, with older browsers it will either not display, or not play 'mp3' audio. See Google "HTML5 <audio>" for details ...
Put your "renamed" MP3 files in a directory named "music".
For example: "/music/music_XX.mp3". Where "XX" is the "forum ID".
Place code before or after the footer variable ({vb:raw footer}) in the "FORUMDISPLAY" template
HTML Code:
<!-- HTML5 solution -->
<audio controls autoplay id="tbworld_audio" src="{vb:raw vboptions.bburl}/music/music_{vb:raw forumid}.mp3" type="audio/mpeg"></audio>
<audio controls autoplay id="tbworld_audio" src="{vb:raw vboptions.bburl}/music/music_{vb:raw forumid}.ogg" type="audio/mpeg"></audio> <!-- Opera Next -->
<!-- HTML5 --- Pre-Adjust volume level -->
<script>
var AudioPlayer = document.getElementById("tbworld_audio");
AudioPlayer.volume = 5.5;
<script>
<!-- or -->
<!-- Embedded Solution -->
<embed src="{vb:raw vboptions.bburl}/music/music_{vb:raw forumid}.mp3" type="audio/mpeg" width="120" height="35" autostart="true" loop="false">
Firefox now supports Mp3 for HTML5.

Opera Next, will require the embedded solution or an ".ogg" extension.
This code will play a unique mp3 file given a "unique forum ID".
Nothing fancy.