我想配台电脑做视频裁剪,主要做影视后期这款,CPU我想用E3-1230 V2,大家给我个配置列表吧!
仅仅是视频剪辑对机器的要求其实是很低的。
4000的预算一个盒装的E3-1230 V2就去掉了一半,2000元。
如果你只需要做视频剪辑而不涉足视频特效或者游戏的话,显卡装个入门级的就够了,GT630满足你的要求,平时还能玩玩小游戏,450元。或者HD7770,650。
主板推荐:Asus P8B75-M PLUS。B字开头,商务专用,虽然绝大多数功能你这辈子用不到,买了也不亏。天猫450,淘宝还能便宜点。
固态:这个价位的主机配个固态想来是为了只是开机和程序启动快点的,影驰战将 120G 固态硬盘,400块。牌子不是很响,东西倒还行。
机械硬盘:建议直接上2T的,希捷 ST2000DM001 2T。500搞定。1T其实也够用,但难为机械硬盘这么便宜,不买个大点的以备后用感觉有点吃亏。
内存:金士顿4G 16002,数据吞吐量比较大,8G是底线。550元。
机箱:买个带电源的够了,基于你的审美偏好,不做推荐。一般300-450。
光驱:现在买的基本都带刻录,预算300
以下是建议:你不可能只做视频剪辑、拼接的,以后肯定会有特效方面的需求,显卡强烈推荐换成AMD的6970,最好、最廉价的GPU加速卡。1300左右。视频编辑别踩nvidia的坑(高分辨率下有点力不从心),也别信最新的AMD(架构换了,玩游戏NB了,省电了,但异构运算不如从前)。6970的架构简直是为了GPU加速而生的。
http://love21cnmsncomcn的上传功能后可以实现区域截图,也可以实现放大缩小估计是用了JS来实现的:
var div_move = 0;
var IE = documentalltrue:false;
var tempX,tempY,oldX,oldY;
var have_move = 0;
function grasp()
{
div_move = 1;
if(IE)
{
documentgetElementById("source_div")setCapture();
}
}
function free()
{
div_move = 0;
have_move = 0;
documentgetElementById("source_div")releaseCapture();
}
function getMouseXY(e)
{
if (IE)
{ // grab the x-y poss if browser is IE
tempX = eventclientX + documentbodyscrollLeft
tempY = eventclientY + documentbodyscrollTop
}
else
{
// grab the x-y poss if browser is NS
tempX = epageX
tempY = epageY
}
// catch possible negative values in NS4
if (tempX < 0){tempX = 0}
if (tempY < 0){tempY = 0}
}
function move_it(e)
{
getMouseXY(e);
if(div_move == 1)
{
if(have_move == 0)
{
//alert('a');
oldX = tempX;
oldY = tempY;
have_move = 1;
}
var left = parseInt(documentgetElementById("source_div")styleleft);
var top = parseInt(documentgetElementById("source_div")styletop);
//alert(top);
//alert(left);
//alert(tempX);
//alert(oldX);
documentgetElementById("source_div")styleleft = left + tempX - oldX;
documentgetElementById("source_div")styletop = top + tempY - oldY;
oldX = tempX;
oldY = tempY;
}
}
function change_size(method)
{
if(method == 1)
{
var per = 125;
}
else
{
var per = 08;
}
documentgetElementById("show_img")width = documentgetElementById("show_img")widthper;
//documentgetElementById("show_img")height = documentgetElementById("show_img")heightper;
}
function micro_move(method)
{
switch (method)
{
case "up":
var top = parseInt(documentgetElementById("source_div")styletop);
documentgetElementById("source_div")styletop = top - 5;
break;
case "down":
var top = parseInt(documentgetElementById("source_div")styletop);
documentgetElementById("source_div")styletop = top + 5;
break;
case "left":
var left = parseInt(documentgetElementById("source_div")styleleft);
documentgetElementById("source_div")styleleft = left - 5;
break;
case "right":
var left = parseInt(documentgetElementById("source_div")styleleft);
documentgetElementById("source_div")styleleft = left + 5;
break;
}
}
function turn(method)
{
var i=documentgetElementById('show_img')stylefiltermatch(/\d/)[0]
//alert(i);
i=parseInt(i)+parseInt(method);
//alert(i);
if(i<0)
{
i += 4;
}
if(i>=4)
{
i -= 4;
}
//alert(i);
documentgetElementById('show_img')stylefilter='progid:DXImageTransformMicrosoftBasicImage(Rotation='+i+')'
}
function mysub()
{
var Oform = documentmyform;
Oformgovalue = 1;
Oformwidthvalue = documentgetElementById("show_img")width;
Oformleftvalue = documentgetElementById("source_div")styleleft;
Oformtopvalue = documentgetElementById("source_div")styletop;
if(IE)
{
Oformturnvalue = documentgetElementById('show_img')stylefiltermatch(/\d/)[0];
}
Oformsubmit();
}
苹果树下也有类似功能不过,功能要比你所说的强大的多
资料搜集于!
ASPJPEG处理是在服务器端处理的,所以你只需要把裁剪后的保存下 传回文件名就就可以了。
Set Jpeg = ServerCreateObject("PersitsJpeg")
JpegOpen ServerMapPath("2jpg")'//原
jpegCrop x, y, xx,yy'//裁剪范围
jpegsave Servermappath("23jpg")'//处理后的文件名
0条评论