rejetto forum

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - slasherx

Pages: 1 2 3 ... 7
1
HTML & templates / Re: Video Support in HFS using VLC ready
« on: November 11, 2009, 06:47:50 AM »
Hello,
I recently found out about this great template and started experimenting with it.
But I found some glitches, and want to report them.
1. Because I want to share lots of .vob and .ts files, which are interlaced, I need to force client-side deinterlacing. I tried adding this:
      vlc_controls.options.set("video-filter", "deinterlace");
      vlc_controls.options.set("deinterlace-mode", "blend");
as well as
      vlc_controls.options.set("filter", "deinterlace");
      vlc_controls.options.set("deinterlace-mode", "blend");
With and without quotes on the text strings, but with no success. Any ideas?
2. I want the volume to be set at 50% instead of 100% (because of sound distortions). I added
      vlc_controls.options.set("volume", "256");
/it ranges 0-1024 so i figured 50% should be 256/ and still no luck.
3. I noticed that files containing apostrophe (') in the name or the URL can't be played, they don't start at all.
4. I'm not sure deblocking is working, some blocking issues are visible in low-bitrate xvid .avi's, witch are not present when I play the same file in regular vlc with PP @6. I also tried
      vlc_controls.options.set("postproc-q", 6);
but there's no change.
It seems none of these work at all, so probably I'm doing something totally wrong.
5. In Chrome I noticed white borders around the list of files witch are gone in IE and Firefox.

I also have an idea about thumbnails - it would be cool if they work like in the site Video Copilot (hover over the image to view the pop-up) - so pointing the cursor to the filename would bring pop-up window with the jpg thumbnail.

Thanks and good luck to the project

you could try playing with those settings in the VLC .js files instead of adding them to the TPL file. Should Only load the file to vlc in TPL. Rest settings i belive would need to be changed in the .JS files
look in \irresistible\js\ folder.

i wish i had time to work on this but i have been very busy these past months i dont' even get on my pc any more lol.

Good luck and keep us posted

2
HTML & templates / Re: Video Support in HFS using VLC ready
« on: August 30, 2009, 10:21:21 PM »
here we go new version. is anyone using this template, i'm just making changes according to what i need.

Here is the tutorial thats links to help guide in template. place the tutorial directory in hfs root.
http://www.megaupload.com/?d=6YGO946K

v1.4 - Changelog
-----------------
- New Background
- Enable & Disable switch for preview box based on extension.


Enjoy

3
HTML & templates / Re: Video Support in HFS using VLC ready
« on: August 30, 2009, 02:40:13 PM »

Argh...that last episode of Burn Notice...left hanging for a while again.

lol ya they did, but hey at least it will be back.

Watch show called Dark Blue comes on TNT, awesome show.

4
yes try using latest beta.

My upload is around 12Mbps and HFS uploads at full speed.

5
HFS ~ HTTP File Server / Re: selective ban replies
« on: August 19, 2009, 10:57:44 AM »
thanks working great.

6
HFS ~ HTTP File Server / selective ban replies
« on: August 16, 2009, 04:01:00 AM »
can we get an option to no reply for some ips that we ban, but also allow reply for some ip's we ban.

That option is already available.  At the time you ban an IP you have the option to either leave a comment or not.

nope, what i mean is i want to have an option to not allow reply for some banned ips i choose, and some that i ban i want them to be able to get a reply from server.

7
HFS ~ HTTP File Server / selective ban replies
« on: August 15, 2009, 08:22:50 AM »
can we get an option to no reply for some ips that we ban, but also allow reply for some ip's we ban.

8
HTML & templates / Re: Preview Box Enable & Disable
« on: August 15, 2009, 06:53:34 AM »
thanks working awsome.

9
HTML & templates / Re: Preview Box Enable & Disable
« on: August 14, 2009, 02:47:02 AM »
{.if|{.match|avi;jpg;jpeg;png;gif;bmp;tif;tiff;mp3;flv;mp4;m4a;mov;3gp;aac;avi;divx;wmv;wma;swf|%item-ext%.}
your preview buttons here
/if.}

I'm getting error.

macro error: if not supported or illegal parameters


10
HTML & templates / Preview Box Enable & Disable
« on: August 13, 2009, 12:33:38 PM »
I need help disabling preview button. I have two preview buttons one for divx player and one for  VLC player.

I want to only allow preview button to work if it matches the following extentions.
avi,jpg,jpeg,png,gif,bmp,tif,tiff,mp3,flv,mp4,m4a,mov,3gp,aac,avi,divx,wmv,wma,swf

any other extention disable preview button. I tried to follow the rawr template but couldn't get it working.

Here is the [file] code.

Code: [Select]
[file]
<tr>
<td class="iconCol">
<a href="%item-url%">
<div style="background:url('/~img_file') center center no-repeat">

</div>
</a>
</td>
<td class="fileCol{.if not|{.get|can access.}|protected.}">
<div class="fileInfo">
<a href="%item-url%" {.$target.}>%item-name%{.if|{.get|is new.}|&nbsp;-&nbsp;<b class="new">%new%</b>.}</a><br/>
%comment%
<div class="info"><b>{.!Size.}:</b> %item-size%</div>
<div class="info"><b>{.!Hits.}:</b> %item-dl-count%</div>
<div class="age"><b>{.!Age.}:</b> %item-modified%</div>
</div>
</td>
<td class="quickCol">
<div id="s%sequential%" class="quickBtn2"><a href="javascript:void(0);" onclick="initBox('Box-'+(%sequential%+1),this.name)" name="%item-full-url%"><img src="/irresistible/images/divx.png" alt="P" title="{.!Stream with Divx Player.}" align="middle"/></a></div><span id="Box-%sequential%"></span>
<div class="quickBtn {.if not|{.get|can access.}|disabled.}"><a href="#" title="{.!Stream with VLC Player.}" onClick="vlc_controls.play ('%item-full-url%')"><img src="/irresistible/images/vlc.png" alt="Stream"/></a></div>
<div class="quickBtn1 {.if not|{.get|can access.}|disabled.}"><a href="%item-url%" title="{.!Download.}"><img src="/irresistible/images/medDown.png" alt="Download"/>
</td>
</tr>

also attaching full template.

thanks

11
HFS ~ HTTP File Server / Re: Trojan
« on: August 11, 2009, 11:42:41 PM »
Has anyone else's anti-virus reported 2.3 b242 as a trojan?
When ever I launch b242, McAfee quarantines the exe as the Artemis trojan.
Any suggestions?

Thanks

its a false positive. add it to exclusions in macafee.

not-a-virus:Server-FTP.Win32.SFH.bi

http://www.virustotal.com/analisis/b526b02078da29cbc7e155355842d3539e3a03a99e3612afaa8e4b50f084e3a7-1248827615

12
HTML & templates / Re: Video Support in HFS using VLC ready
« on: August 11, 2009, 07:22:56 AM »
Thanks i'll try that.

This wallpaper looks alot better if anyone wants it.

http://woothemes.com/demo/groovyblog/wp-content/themes/groovyblog/styles/blue/bg.jpg

13
HTML & templates / Re: Suggest: HFS + MediaInfo
« on: August 10, 2009, 07:28:41 PM »
I would rather add info about the movie or so maybe cover and cast info etc.. don't know how.

14
HFS ~ HTTP File Server / Re: Downloads stuck at 99%
« on: August 10, 2009, 07:21:23 PM »
im running windows 7, have no problems.

im using the latest beta version.

15
HTML & templates / Re: Video Support in HFS using VLC ready
« on: August 10, 2009, 06:44:36 AM »
Added Divxplayer in spawn box support along with VLC.

-------------------------------------------------------
VLC Version 1.3
-------------------------------------------------------
- Added Spawnbox
- Added divx player support
- Added Rawr player support
- Changed VLC Player Icons

Need help with bugs below.
- Bugs: Couldn't get image preview working in IE, worked fine in Firefox. (Need to adjust //Fade fuction in tog.js
- Couldn't get spawn box to spawn top of the screen or in middle of viewable area, only shows half - have to scroll.




Pages: 1 2 3 ... 7