-
Posts
501 -
Joined
-
Last visited
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by Cools
-
copy the EXE over a crude hack.. had the same problem saves time never did find out why
-
are you useing offline files?? i had this with XP like kmount said had to re-educate the staff to reconnect.
-
why map F drive to students then block it ? it might be causing the students to slow down. was F used for any thing else in the past ?? i had same problem pass ICT Manager used S for staffarea after a gpo change S ran sims but said staffarea and showed disconnected just had to Net use s: /del and relogon
-
i'll stick with a Linux mail server. shame Cisco now owns PostPath "is a drop-in Microsoft Exchange alternative based on the open source Postfix MTA" i was cheaper and could sit on a old server..
-
i have 3 DCs with DFS and set a round robin DNS up to speed up logins and access to files. all my student profiles are down to 1.24mb and set to .man that helps speed things up.
-
Problem solved! Don't ask added two new DC's and over night it fixed the problem. Strange.
-
Will this help.. its free.. ZPanel - The free web hosting panel - start
-
if you wan to do pics then use this software and the same batch settings as above. Batch Picture Resize
-
Here you go.. @ ECHO OFF REM The following will convert all avi files in the current folder into mp4 files. IF EXIST *.avi FOR %%A IN (*.avi) DO CALL :twopass "%%A" :twopass ffmpeg.exe -y -i %* -b 2M -bt 4M -vcodec libx264 -pass 1 -vpre "C:\Users\ffmpeg\ffpresets\libx264-fastfirstpass.ffpreset" output.mp4 ffmpeg.exe -y -i %* -b 2M -bt 4M -vcodec libx264 -pass 2 -vpre "C:\Users\ffmpeg\ffpresets\libx264-hq.ffpreset" output.mp4 RENAME output.mp4 %*-.mp4 ECHO. GOTO :EOF ffmpeg from Tripp's Unofficial FFmpeg Win32 Builds other commands you could try. Just a just to fit in with the batch file above. quicktime .mov conversion ffmpeg -y -i input.mov -acodec libfaac -ar 44100 -ab 96k -vcodec libx264 -level 41 -crf 20 -bufsize 20000k -maxrate 25000k -g 250 -r 20 -s 1280x544 -coder 1 -flags +loop -cmp +chroma -partitions +parti4x4+partp8x8+partb8x8 -flags2 +brdo+dct8x8+bpyramid -me umh -subq 7 -me_range 16 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -rc_eq 'blurCplx^(1-qComp)' -bf 16 -b_strategy 1 -bidir_refine 1 -refs 6 -deblockalpha 0 -deblockbeta 0 output.mp4 720p compress ffmpeg.exe -y -i "input.avi" -f mp4 -vcodec libx264 -s 1280x720 -r 24000/1001 -b 4096k -bt 4096k -acodec libfaac -ac 2 -ab 128k "720-24p.mp4“ High quality 2 Pass ffmpeg -y -i INPUT -r 30000/1001 -b 2M -bt 4M -vcodec libx264 -pass 1 -vpre fastfirstpass -an output.mp4 ffmpeg -y -i INPUT -r 30000/1001 -b 2M -bt 4M -vcodec libx264 -pass 2 -vpre hq -acodec libfaac -ac 2 -ar 48000 -ab 192k output.mp4 iPod-iPhone 320 width ffmpeg -i INPUT -s 320x240 -r 30000/1001 -b 200k -bt 240k -vcodec libx264 -vpre ipod320 -acodec libfaac -ac 2 -ar 48000 -ab 192k output.mp4 iPod-iPhone 640 width ffmpeg -i INPUT -s 640x480 -r 30000/1001 -b 200k -bt 240k -vcodec libx264 -vpre ipod640 -acodec libfaac -ac 2 -ar 48000 -ab 192k output.mp4 Hight quality, 2 pass without presset ffmpeg -y -i input -r 24000/1001 -b 6144k -bt 8192k -vcodec libx264 -pass 1 -flags +loop -me_method dia -g 250 -qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4 -bf 16 -b_strategy 1 -i_qfactor 0.71 -cmp +chroma -subq 1 -me_range 16 -coder 1 -sc_threshold 40 -flags2 -bpyramid-wpred-mixed_refs-dct8x8+fastpskip -keyint_min 25 -refs 1 -trellis 0 -directpred 1 -partitions -parti8x8-parti4x4-partp8x8-partp4x4-partb8x8-an output.mp4 ffmpeg -y -i input -r 24000/1001 -b 6144k -bt 8192k -vcodec libx264 -pass 2 -flags +loop -me_method umh -g 250 -qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4 -bf 16 -b_strategy 1 -i_qfactor 0.71 -cmp +chroma -subq 8 -me_range 16 -coder 1 -sc_threshold 40 -flags2 +bpyramid+wpred+mixed_refs+dct8x8+fastpskip -keyint_min 25 -refs 4 -trellis 1 -directpred 3 -partitions +parti8x8+parti4x4+partp8x8+partb8x8-acodec libfaac -ac 2 -ar 44100 -ab 128k output.mp4 i Pod-iPhone 320 width, without presset ffmpeg -i INPUT -s 320x240 -r 30000/1001 -b 200k -bt 240k -vcodec libx264 -coder 0 -bf 0 -flags2 -wpred-dct8x8 -level 13 -maxrate 768k -bufsize 3M-acodec libfaac -ac 2 -ar 48000 -ab 192k output.mp4 iPod-iPhone 640 width, without presset ffmpeg -i INPUT -s 320x240 -r 30000/1001 -b 200k -bt 240k -vcodec libx264 coder 0 -bf 0 -refs 1 -flags2 -wpred-dct8x8 -level 30 -maxrate 10M -bufsize 10M-acodec libfaac -ac 2 -ar 48000 -ab 192k output.mp4 iPod-iPhone, 2 pass custom ffmpeg -y -i input -r 30000/1001 -s 480x272 -aspect 480:272 -vcodec libx264 -b 512k -bt 1024k -maxrate 4M -flags +loop -cmp +chroma -me_range 16 -g 300 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -rc_eq "blurCplx^(1-qComp)" -qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4 -coder 0 -refs 1 -bufsize 4M -level 21 -partitions parti4x4+partp8x8+partb8x8 -subq 5 -f mp4 -pass 1 -an -title "Title" output.mp4 ffmpeg -y -i input -r 30000/1001 -s 480x272 -aspect 480:272 -vcodec libx264 -b 512k -bt 1024k -maxrate 4M -flags +loop -cmp +chroma -me_range 16 -g 300 keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -rc_eq "blurCplx^(1-qComp)" -qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4 -coder 0 -refs 1 -bufsize 4M -level 21 -partitions parti4x4+partp8x8+partb8x8 -subq 5 -f mp4 -pass 2 -acodec libfaac -ac 2 -ar 44100 -ab 128k -title "Title" output.mp4
-
Google Apps EDU | Message Archiving
Cools replied to misterfriendly's topic in Internet Related/Filtering/Firewall
Open Source Email Archiving with Linux Box Enkive Enkive -
had to drop using Disk Quota Management kids where making files way to big 129 mb .ppt and .wmv from movie maker the ICT cord just never listens about compressing images and video. so i have a script to compress all images over 1Mb and re encode video to MP4 saving over 200GB of storage. looking to get a MS office file minimizer software but the there like over £3600+ tested one once 280mb ppt down to 1.76mb 98.7% compression not bad hay!
-
See even a server can do a core dump now.. lol
-
Did not fix it... still the same problem hmmmmm.. .
-
Thanks Skell i will give it a try and let you know how its gone so far..
-
there nout you can do the domain name and servers are hosted state side..
-
http://www.edwardpeake.beds.sch.uk/servererror.jpg
-
1st post: Machines are equipped with McAfee VirusScan 8.7, but they have access protection disabled. Firewalls are also disabled. TCP over Netbios helper service is started on both machines. i can see win7 PC's but win7 and 2008 cant see 2003 server or XP the error ms i get when accessing 2003 share at school is "insufficient system resources exist to complete service request"
-
i have just added a trial.. 2008 R2 server on the network i have joined it to the domain but when i access any shares it asks for a user name and password.. Strange.. i reset the Domain and Domain controller GPO's back to default but it has not made any difference i did think it was a change i made to get samba/ntlm working in a Linux box. i have no problem accessing my 2003 Home server from windows 7 or (2008 server (over vpn)) shares..
-
Yes i can access it via IP .. i did think it was a dns problem.. i did try the FQDN but no joy...
-
Hello, I have a 2008 installation, where the 2008 server is unable to access shares on the r2003 server The SBS2003 is a dumb fileserver. The error is "Windows cannot access \\." with a detail of "Error code 0x80070035 The network path was not found". The 2008 server is also unable to access shares on XP/2003 machines. However it IS able to access shares on Windows 7 machines. But 2003/XP can access shares on win7 and 2008 and 2008 r2.. Machines are equipped with McAfee VirusScan 8.7, but they have access protection disabled. Firewalls are also disabled. TCP over Netbios helper service is started on both machines. I have disabled IPv6 on 2008, and done some reg tweaks found on google But im at a loss.. Any help much appreciated,
-
Google Apps EDU | Message Archiving
Cools replied to misterfriendly's topic in Internet Related/Filtering/Firewall
Just to help you out. Found this "Log All Email for Sendmail in CentOS 5" Log All Email for Sendmail in CentOS 5 | WING LOON Just get Google to use your SMTP server to send and receive all your email from you new Linux box. you can use it as an internal mail server also. make sure you have a good size storage pool. -
No its on my 2008 server and its not R2.
-
Internet providers - Going it alone
Cools replied to LukeC's topic in Internet Related/Filtering/Firewall
We will stick with the LA getting 20meg its just gone up by 40% making it £7,168 this year and that's over 8 x 2mb lines. -
im with LeMarchand i use a .pac file. saves all sorts of problems.. for me and staff.. and set it via GPO. Mine looks like: if the staff go home an use there pc it will not find the .pac file so it will directly access the WEB at home. and reaply only back at school
-
i had Joomla as the school site.. and it was hacked 5 times.. So i built my own.. Edward Peake C of E (vc) Middle School using Dreamweaver CS5
