This content has been marked as final.
Show 2 replies
-
1. Re: How can I change the recorded file name using DVRcast?
rmshro0 Apr 19, 2012 11:26 AM (in response to rmshro0)Anyone have a suggestion?
-
2. Re: How can I change the recorded file name using DVRcast?
sinious Apr 19, 2012 12:05 PM (in response to rmshro0)I'm unfamiliar overall with real time streaming servers but the server that is accessing them via a webpage is probably a standard "web server". That web server (and your browser) can be told to expire any content at any interval you want (1 second to 1 year). Flash is typically cached overall so you might be getting these issues.
For example, in a .htaccess file on an apache (most common) server, you could specify this to make sure your flash files (SWFs) are not cached:
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType application/x-shockwave-flash "access plus 0 seconds"
</IfModule>Then any SWF on that site (or folder in that site) would never be cached.


