Video conversion in Linux with RippedWire and WinFF


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Video conversion in Linux with RippedWire and WinFF
# 1  
Old 02-05-2008
Video conversion in Linux with RippedWire and WinFF

Tue, 05 Feb 2008 19:00:00 GMT
In the past we have examined OggConvert and Thoggen, two GUI tools for simple encoding or transcoding video into free Ogg formats. But if you are interested in codecs other than Theora and Dirac, you have a lot more options to choose from. Let's consider two utilities that advertise both ease-of-use and quality: RippedWire targets DVD ripping and conversion specifically, and WinFF, which can convert DVD content and other video sources.


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Ubuntu

Conversion of the format of a file in linux

How to convert a rtf file to a ttf file in ubuntu terminal? (2 Replies)
Discussion started by: poonam.gaigole
2 Replies

2. Shell Programming and Scripting

Linux to ansi pc conversion

Hi All, I checked the old posts here. But could not find a solution for my question. I have a file created by one application in HP-UX. My client wants it to be converted into ANSI PC version. I have heard about unixtodos and have worked with it also. But I am totally unaware of of this ANSI... (0 Replies)
Discussion started by: Tuxidow
0 Replies

3. Shell Programming and Scripting

HPUX to Linux awk conversion

I have the following script to edit ^'s and newlines out of files to be entered into a database. This script has been around since the dawn of time (way before me). #!/bin/bash # Remove all ^ and \n from the source file, except do not remove ^^^\n cat myfile.hold | awk ' BEGIN {FS="|";... (1 Reply)
Discussion started by: insania
1 Replies
Login or Register to Ask a Question
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.9 Xv(3)