summaryrefslogtreecommitdiff
path: root/bin/session.php
diff options
context:
space:
mode:
Diffstat (limited to 'bin/session.php')
-rwxr-xr-xbin/session.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/session.php b/bin/session.php
index 09f7fc8..2a149d3 100755
--- a/bin/session.php
+++ b/bin/session.php
@@ -33,6 +33,12 @@ function sessioncreate($type, $url, $mode)
// Create session
exec('mkdir ../ram/' .$session);
+ // Create logo
+ if ($type == 'vid')
+ generatelogo($type, $url, '../ram/' .$session .'/thumb.png');
+ else
+ generatelogo($type, $channame, '../ram/' .$session .'/thumb.png');
+ // Start encoding
$url = str_replace("\\'", "'", $url);
switch ($type)
{
@@ -71,12 +77,6 @@ function sessioncreate($type, $url, $mode)
// Write streaminfo
writeinfostream($session, $type, $mode, $url, $channame);
- // Create logo
- if ($type == 'vid')
- generatelogo($type, $url, '../ram/' .$session .'/thumb.png');
- else
- generatelogo($type, $channame, '../ram/' .$session .'/thumb.png');
-
return $session;
}