Jump to content

Recommended Posts

Posted

Hi,

 

I am looking for any disk quota management solution for schools.

 

I have found the following:

 

• Spaceguard SRM

• WinQuota

 

Are these suitable and if not then can you recommend any others?

 

Thanks

Posted
After a recommendation on Edugeek I had a look at FSRM [File Server Resources Manager] I found that it was already installed and configured on our system. All I had to do was confirm the quotas I wanted to apply to the student users. It works very well and I haven't looked back.
Posted
Another +1 for FSRM. You can easily apply the quotas and File Restrictions to all students if all users are in one folder, or do seperate year-by-year quotas if you seperate them into seperate year group folders. Also works with Windows 7's My Computer icons to give remaining free space.
Posted

I'd say go for what's built into Windows initially.

EDIT: is this specifically for an MIS problem, otherwise you'll get a better response in another forum.

Posted

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!

Posted
so i have a script to compress all images over 1Mb and re encode video to MP4 saving over 200GB of storage.

 

Any chance of a quick gander at the script?? Definitely looking for something like this to auto convert videos.. Does it run over-night or something like that??

 

-S

Posted

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

  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...