Ah.... Ok... Now I understand what you are saying. You are needing the SEO Friendly name for your code (for example, in http://www.example.com/view/8/blah-blah-blah, you are needing the variable that contains "blah-blah-blah"). The answer to that is that there is no variable that contains that. Rather, it is composed from the title in code. So, to compose what you are needing (assuming you are doing this from the player.inc file), the following code would work for you:

Code:
$qeu=mysql_fetch_array(mysql_query("SELECT title FROM `video` WHERE `VID`='".$video_id."' LIMIT 1"));
$seo_title = strtolower(preg_replace("/[^a-zA-Z0-9]+/","-", $qeu['title']));
You can then use $seo_title as your variable. So, it the "title" was "My Awesome Video," $seo_title would contain "my-awesome-video". Is that what you need?