home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
General Forums
Newcomers Forum
intro video before the actual movie
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="wickedlemon" data-source="post: 741554" data-attributes="member: 74781"><p>If issue 749 never gets implemented you could always randomise the intro yourself. Create a folder with video files in and then set the intro video to a file elsewhere. You then just need a script to copy a random file from your intros folder to the the file you've specified in Moving Pictures at regular intervals.</p><p></p><p>I haven't tried this myself, but we use a small batch file to change the default desktop image when people log in at work.</p><p></p><p>Something like this:</p><p></p><p>@echo off & setLocal EnableDelayedExpansion</p><p></p><p>dir /b/a-d "D:\intros\*.avi" > filelist</p><p>set /a c =0</p><p></p><p>for /f "tokens=1* delims=[]" %%a in (filelist) do (</p><p>set /a c=!c!+1</p><p>echo !c! - %%a %%b</p><p></p><p>if %%a equ !s! echo use %%b</p><p>)</p><p>set /a s=!random!%%%c% +1</p><p>echo Random file is %s% of %c%</p><p></p><p>set /a d =0</p><p></p><p>for /f "tokens=1* delims=[]" %%a in (filelist) do (</p><p>set /a d=!d!+1</p><p>if !d! equ %s% copy /Y "D:\intros\%%a" "D:\videos\currentintro.avi"</p><p>)</p></blockquote><p></p>
[QUOTE="wickedlemon, post: 741554, member: 74781"] If issue 749 never gets implemented you could always randomise the intro yourself. Create a folder with video files in and then set the intro video to a file elsewhere. You then just need a script to copy a random file from your intros folder to the the file you've specified in Moving Pictures at regular intervals. I haven't tried this myself, but we use a small batch file to change the default desktop image when people log in at work. Something like this: @echo off & setLocal EnableDelayedExpansion dir /b/a-d "D:\intros\*.avi" > filelist set /a c =0 for /f "tokens=1* delims=[]" %%a in (filelist) do ( set /a c=!c!+1 echo !c! - %%a %%b if %%a equ !s! echo use %%b ) set /a s=!random!%%%c% +1 echo Random file is %s% of %c% set /a d =0 for /f "tokens=1* delims=[]" %%a in (filelist) do ( set /a d=!d!+1 if !d! equ %s% copy /Y "D:\intros\%%a" "D:\videos\currentintro.avi" ) [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
General Forums
Newcomers Forum
intro video before the actual movie
Contact us
RSS
Top
Bottom