PDA

View Full Version : How Can I Fix this


member
05-07-2006, 08:27 PM
Hello
I don;t like the way when you click on new video , it will show like broken image till the video its done downloading , when I lunched my site , I upload couple videos and I checked these videos from my brother computer and I thought that these videos are not working at first because it shows as broken image till it 's done downloading. is there anyway I can make like other site , the media play show it;s buffering. Thanks

falarious
05-07-2006, 09:44 PM
Log in into your Admin panel and click Manage Extensions. Under the WMV extension(assuming its a WMV), input


<embed pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/"
src="http://www.YOURDOMAIN.com/files/{file[filename]}.{file[extension]}" width="{humor_software[video_width]}" height="{humor_software[video_height]}" type="application/x-mplayer2" displaysize="1" enablecontextmenu="0" loop="true"
showstatusbar="0" showcontrols="1" autostart="true" autosize="true">
</embed> Remember to change the YOURDOMAIN to your domain. Hope that helps

I tried it on my site and it works very well. If you need the code for the SFW files too, just let me know.

Ryan
05-07-2006, 10:48 PM
Thanks for helping out the community falarious. :)

member
05-08-2006, 06:04 AM
Hey Falarious , thank you really much , can you please give me the code for flash animation too.
ANd I saw in your website falarious.com you have under each video the code that people can add to myspace or blogs , how can I do that . Thanks for your help
Charbel

falarious
05-08-2006, 06:08 AM
<embed src="http://www.falarious.com/files/{file[filename]}.{file[extension]}" type="application/x-shockwave-flash" width="{humor_software[video_width]}" height="{humor_software[video_height]}"></embed>

Of coarse change falarious.com to your own domain

For the Myspace Hack,
In File.PHP

Find
<table cellspacing="1" cellpadding="4" width="100%" class="content-table">
<tr>
<td class="content-header">Add {file[title]} to Your Favorites</td>

Just Above This Add

<td class="content-header">Add This Video/Cartoon/Game To your Blog/Website</td>
</tr>
<td align="center">
<table width="100%">
<tr>
<td align="center" class="column">

<textarea rows="5" cols="45">{code}<br /></textarea>
</td>
</tr>
</table>
</td>
</tr>
</table><br />

promonde
05-08-2006, 10:22 AM
Thanks a lot falarious!