Sponsored Content
Operating Systems Solaris Video capture and editing on Solaris vs Debian vs Ubuntu Post 302585554 by Marcus Aurelius on Wednesday 28th of December 2011 11:08:37 PM
Old 12-29-2011
Video capture and editing on Solaris vs Debian vs Ubuntu

I am interested in doing some heavy video work. I have a ADVC 110 Video capture device, which I am using to capture VHS video tapes, which I will convert on the server to DVD format and burn to DVD's using DVD production software. I will also take the captured video file and split it up in parts and convert to other formats.
I will have a need to rip DVD video and encoding.

My question is for these tasks what setup do you suggest for the following.

The server that will be doing this work is:

HP Proliant DL-380 G4
Dual CPU's 3.20 ghz / 800 mhz / 1MB L2
5120 MB RAM
6 hard disks on HP Smart Array 6i controller (36.4 GB Ultra320 SCSI HD each)
RAID set to RAID 5 (5 discs) with one spare (6th disk)
USB, 2 Ethernet ports, 1 ILO port, 1 SCSI port

When it comes to the 6 disk raid I am setting up I was planning to use RAID-5 on 5 disks using the 6th disk as a spare. Do you think this will be to slow (due to the parity) since I will be doing so much video editing?
My other choice was RAID 1+0 (RAID 10). This would not allow me to have that extra spare. Which do you think would be best? I have at least 50 - 2 hour VHS tapes to capture and DVD's not included.

As far as the operating system I am still considering the one to use. I am concerned about security, so I am undecided as to how much proprietary software I will install on this machine. Flash etc, make me a little wary.

I have used Ubuntu on my laptop and have been very satisfied, especially with the community support. However I am looking to try something new and not sure what to expect as far as support and available software necessary to perform the above requirements (and others not mentioned).

I am deciding between Debian 6 (squeeze) and Solaris. I am probably going to install Debian on another laptop I have, and was thinking about Solaris for this server.

The video requirements are one of the major functions this server must perform, and I do not know to much about Solaris. What recommendations do you have concerning the video requirements, and how Solaris will work on this server hardware. Thank you.

Last edited by Marcus Aurelius; 12-29-2011 at 12:21 PM..
 

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

image and video editing

what are the best video and image editing software available for mac and linux. id apreciate a good response. (1 Reply)
Discussion started by: ChildrenoftheOS
1 Replies

2. Ubuntu

Avoid creating temporary files on editing a file in Ubuntu

Hi, My ubuntu flavor always create temporary files having filename followed by ~ on editing. For eg: if I am editing a file called "sip.c", automatically a temporary (bkup) file is getting created with the name "sip.c~". How to avoid this file creation? (7 Replies)
Discussion started by: royalibrahim
7 Replies

3. UNIX for Advanced & Expert Users

A question about video capture example

Hi,all From the v4l api page http://v4l2spec.bytesex.org/,there is a capture.c. someone says" this application is support ntsc camera,but I don't know why it support ntsc by default Any ideas? thanks (0 Replies)
Discussion started by: yanglei_fage
0 Replies

4. Linux

USB video capture? composite, s-video, etc

does anybody have any experience with any of these composite video to usb devices on linux? usb video capture - Google Product Search would like to get one but a linux newbie and having trouble figuring out if any are ported... i've found lots of things that link to freedesktop.org DisplayLink... (1 Reply)
Discussion started by: danpaluska
1 Replies

5. Ubuntu

Reliable Video Editing & DVD Burning

I have just about given up trying to find a reliable package. Imagination - Pitvi - Openshot - DVD Styler are just some of those tried, but even if success has been achieved in exporting a viable result - Brasero will not burn it this includes VOB files. It seems that there is no alternative to... (1 Reply)
Discussion started by: Royalist
1 Replies
Xv(3)								  libXv Functions							     Xv(3)

NAME
Xv - X Window System video extension DESCRIPTION
The X Video Extension (Xv) extension provides support for video adaptors attached to an X display. It takes the approach that a display may have one or more video adaptors, each of which has one or more ports through which independent video streams pass. An adaptor may be able to display video in a drawable, capture video from a drawable, or both. It translates between video encoding (NTSC, PAL, SECAM, etc...) and drawable format (depth and visual-id pair). An adaptor may support multiple video encodings and/or multiple draw- able formats. Clients use Xv(3) to gain access and manage sharing of a display's video resources. Typically, a client will use XvQueryExtension(3) to determine the status of the extension, XvQueryAdaptors(3) to get a description of what video adaptors exist, and XvQueryEncodings(3) to get a description of what video encodings an adaptor supports. Once a client has determined what video resources are available, it is free to put video into a drawable or get video from a drawable, according the capabilities supported. Clients can select to receive events when video activity changes in a drawable and when port attributes have changed. The Xv protocol version 2.2 and later is extended to support client images in alternate colorspaces (XvImages). Xv adaptors which are capable of displaying XvImages will have the XvImageMask field set in the type field of the XvAdaptorInfo. XvImage formats supported by the port may be queried with XvListImageFormats(3). XvImages may be created with the help of XvCreateImage(3) or XvShmCreateImage(3); XvImages may be displayed with XvPutImage(3) or XvShmPutImage(3). The Port attributes of the port specified in the Xv(Shm)PutImage command will be valid for the image operation when applicable. There will be a port encoding with the name "XV_IMAGE". The width and height of that encoding will indicate the maximum source image size. SUMMARY OF LIBRARY FUNCTIONS
The following is a summary of Xv library functions and events: XvCreateImage(3) - create an XvImage XvGetPortAttribute(3) - return current port attribute value XvGetStill(3) - capture a single frame of video from a drawable XvGetVideo(3) - capture video from a drawable XvGrabPort(3) - lock port for exclusive use by client XvListImageFormats(3) - return list of image formats for a port XvPortNotify(3) - event generated when port attributes change XvPutImage(3) - write a XvImage to a drawable XvPutStill(3) - write a single frame of video to a drawable XvPutVideo(3) - write video into a drawable XvQueryAdaptors(3) - return adaptor information for a screen XvQueryBestSize(3) - determine the optimum drawable region size XvQueryEncodings(3) - return list of encodings for an adaptor XvQueryExtension(3) - return version and revision of extension XvQueryPortAttributes(3) - return list of attributes of a port XvSelectPortNotify(3) - enable or disable XvPortNotify events XvSelectVideoNotify(3) - enable or disable XvVideoNotify events XvSetPortAttribute(3) - set an attribute for a port XvShmCreateImage(3) - create an XvImage in shared memory XvShmPutImage(3) - write a XvImage in shared memory to a drawable XvStopVideo(3) - stop active video XvUngrabPort(3) - release a grabbed port XvVideoNotify(3) - event generated for video processing Each of these functions and events is described in its own Xv man page. X Version 11 libXv 1.0.5 Xv(3)
All times are GMT -4. The time now is 06:26 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy