Ubuntu :: Converting Multiple Files (TIF To EPS) At Once

Mar 4, 2010

I am converting .tif images to .eps and am trying to do a bunch of them at once. I have tried
Code:
convert *.tif *.eps
but this doesn't do it.

View 2 Replies


ADVERTISEMENT

Ubuntu Multimedia :: Converting Multiple BMPs To An AVI Without Compression?

Aug 1, 2011

I am trying to convert hundreds of BMPs into a single AVI file, without compression. Since every pixel matters in my case, I don't want any kind of compression. It's fine if the output file is extremely large.

I'd like to know if it's possible to achieve this with packages coming with Ubuntu 11.04. I have tried ffmpeg/mencoder, but they either compressed the output file, or the output file is not playable in totem. I am a new user for both tools. there is actually a way to get uncompressed avi from these tools.

"BMP to AVI Sequencer" [URL] does the job perfectly. I successfully converted 180 1080P BMPs into a 1G avi, running at 30 fps. Unfortunately I need a command line tool this time.

View 2 Replies View Related

Ubuntu :: Converting .ogg Files To .mp3?

Apr 14, 2010

What are the proper ffmpeg instructions for converting .ogg files to .mp3?

I have followed several formulas, but each time I get an error message.

View 9 Replies View Related

Ubuntu :: Converting .rpm Files To Deb For Install?

Jun 10, 2010

I have heard that tclient v2 is much better than the one that comes with ubuntu or even remmina and have found a rpm package for it.

I search and found I should use alien to convert to a deb so I can install; I am getting the following error :-

sudo alien -k tsclient-2.0.2-1.fc11.src.rpm
error: incorrect format: unknown tag
mkdir: cannot create directory `tsclient-2.0.2': File exists
nable to mkdir tsclient-2.0.2: at /usr/share/perl5/Alien/Package.pm line 257.

I am running alien from the directory where the .rpm file is and while the extraction is done the creation of a deb file is not.

View 5 Replies View Related

Ubuntu Multimedia :: Converting .wav Files To Mp3?

Nov 16, 2010

I copied some songs off a CD and wanted to convert them to mp3. Is there a program that I should have used to rip them that would have done that or is there a program that will convert them for me?

View 9 Replies View Related

Ubuntu Multimedia :: Converting .nwc Files To .ly?

Jan 22, 2011

Is there a way (strictly in Ubuntu -- well I am viewing the noteworthy files under wine) to convert these files to lilypond format? I have tried the nwc2ly converter, but so far without any success. Any thoughts, or suggestions? You see I have a friend that has done a lot of Orthodox Music in NWC, but I want to get it into Lilypond as it will look better, and then I can easily convert to pdf, and easily change things if needed, etc. But I would rather not have to print and retype it all.

View 1 Replies View Related

Ubuntu Multimedia :: Converting Mythtv Nuv Files To Avi?

Sep 1, 2011

What's the accepted method for converting Mythtv's nuv files to avi files now?

I ask this because nuvexport seems to be unsupported these days. The last released version removed support for using transcode to convert the files. This leaves only mencoder and ffmpeg, and these have the following problems:

1) mencoder is much, much too slow. It takes about five times as long to convert a file as transcode ever did.

2) Ubuntu's ffmpeg is crippled, and doesn't work. I realise that there are instructions for installing a version of ffmpeg that works, but as this does not provide any method for creating Debian packages of it, I do not wish to pollute my filesystem with a mish-mash of manually installed software.

Is there any way to convert nuv files with transcode?

View 5 Replies View Related

Ubuntu Multimedia :: Converting WMA Files To FLAC / WV Or SHN Format

May 31, 2010

I have a whole bunch of wma files I want to convert to a more liked format like wv flac or shn. Shntool does not seem to want to do that soundconverter and soundkonverter both refuse too. My wma format is wma1 or wmal cannot tell if it is 1 the number or l the letter L.
1. They play in xine straight off. Xine is in your synaptic
2. To convert quickly install dBpoweramp under wine again quick and no fuss.

View 9 Replies View Related

Ubuntu :: Converting The Files To FLAC Yielded The Same Results?

Jul 21, 2011

I downloaded a couple of TTA files and they are just static on playback. Do I need a different codec or something? Converting the files to FLAC yielded the same results. I'm running a 10.04 64bit machine.

View 9 Replies View Related

Ubuntu Multimedia :: Converting Media Files With WinFF?

Aug 21, 2011

I'm tryin' to convert media files to other formats using winff.But nothing happens ! I mean a terminal window popping up and then nothing happens to the files , I tried many formats like (wmv,avi,flv,mp3,wma etc.) to others , and I have all prerequisites . I'm not sure

- ffmpeg (Multimedia player)

- Gstreamer ffmpeg video plugin (Codecs to play formats)

- libmp3lame

- libmp3lame (DEV - I thought that this could be useful)

and this is an image off winFF on my desktop ,

View 2 Replies View Related

Ubuntu :: Extract Multiple 7z Files In Multiple Folders?

Jun 14, 2011

have a large amount of 7z files in multiple folders which I need to extract.The directory structure is like this:

/main-folder/
multiple subfolders/
1 or more 7z files per subfolder

I would like to get the output of this action in one separate folder, all together in 1 folder.How can I do this?

View 7 Replies View Related

Ubuntu :: Replace Multiple Lines In Multiple Files?

Aug 20, 2011

I often use the rpl command to make changes to multiple html files at once. For example:

rpl -R '<br />' '<br /><br />' mydirectory However, I haven't been able to figure out how to change multiple lines. For example, let's say I want to change all occurrences of :

<br />
<br />
to:
<br />
I've tried
rpl -R '<br />
<br />' '<br />' mydirectory

but that didn't work. how to do this with rpl or some other way?

View 9 Replies View Related

Fedora :: Batch Converting Of PNM Files?

Aug 27, 2010

when i scan some documents they are saved as .PNM files. what I would like is JPGs.

does anybody know any good ways of batch converting pnm files to jpeg files.

View 9 Replies View Related

OpenSUSE :: Converting .pptx Files Into .ppt?

Apr 21, 2010

i need a command line application for converting .pptx (PowerPoint 2007) Files into .ppt (PP 2000/2003/XP)Files.

Is there any tool existing or is it even possible to do the convert via openoffice?

The only requirement is, to do that via command line or a script which can be executed from the command line.

View 3 Replies View Related

General :: Rename Multiple Files In Multiple Directories/subdirectories Recursively?

Aug 23, 2010

I am to rename all the files within a directory (which contains multiple subdirectories) recursively without invalid characters.

I tried the coding posted above.

find . -type f -printf '%p
' | while read file; do
oldfile=$(basename "$file")
newfile=$(echo "$oldfile" | sed 's/[^A-Za-z0-9_.]/_/g')
if [ ! "$newfile" == "$oldfile" ]; then
echo mv "$file" "${file%$oldfile}$newfile"
code....

but I get an error on both of them stating "find: bad option -printf find: [-H | -L] path-list predicate-list"

View 9 Replies View Related

Ubuntu Multimedia :: Command Line For Converting .flac Files To .ogg?

Jan 6, 2010

I am looking for a command line command to convert ~2500 .flac files to .ogg files. All of the .flac files are in one folder and I would like to have the .ogg files put in a folder labled OGG - I would like to retain song information etc if possible.

View 3 Replies View Related

Software :: GUI Application For Converting Various Audio Files ?

Jan 26, 2010

I am looking for a nice and simple GUI app that can handle multiple audio formats and convert between them, something like Xrecode in windoze. Maybe by any chances you know about such alternative or similar application

If no such application exist, then i would like to find some solution for easy conversion for these scenarios:

Mainly i keep my music collection in flac format, so i mostly care for conversion from other formats to flac.

View 4 Replies View Related

Ubuntu Servers :: Converting MSSQL To MySQL Formatted Dump Files?

Dec 11, 2010

Does anyone have a simple to use bash script or some such that will convert MSSQL dump files to MySQL formatted dump files?

View 6 Replies View Related

Fedora :: Shrink Library By Converting All The Flac Files To Ogg

Aug 6, 2011

I've been a Linux user for 5 years, though this I only recently started using RPM based distros. I'm still in my first week using Fedora and I love it. Hats off to the development team. Now, onto my question:

I have a rather large collection of music in three different formats: MP3, OGG, and FLAC. I'd like to shrink my library by converting all the flac files to ogg. However, since I don't want to convert from lossy to lossy, I'm going to leave the mp3s alone. Is there a program that will allow me to do this quickly and easily? I'd prefer a GUI, though I'm comfortable working with the terminal if needed.

View 5 Replies View Related

OpenSUSE :: Converting Or A Program That Can Edit Microsoft Publisher Files?

Mar 24, 2010

I was able to convert a Real Estate Firm from using Microsoft OSS to OpenSuse 11.2.The Real estate agents in the firm are pleased and some are not but it's the cost of doing business and saving money.I am at a cross road or should I say I have come to a bump in the road. Most of the agents create their flyers and signs in Microsoft Publisher, I tried Open Office 3.X and I'm unable to open or edit the files in question.Do have any suggestions or could you point me in the direction of a solid solution that will help me either convert the files or a program that can be used with-in OpenSuse 11.2 that can edit the files

View 9 Replies View Related

General :: Process Is Very Timely As Converting Loads Of Avi Files At A Time

Oct 12, 2010

I'm rather new to linux, and I have a dedi server. I know how to browse, install, remove etc, all the basics needed to use it. I've installed flvtool2, memcoder and ffmpeg, and at the moment im converting avi files in to flv. Im then passing metadata using yamdi.

However, this process is very timely as im converting loads of avi files at a time.Im looking for a script, or a way where I can execute one command/script and which will convert all files in the directory I specify, then run those converted files through yamdi.Im guessing it would be some sort of loop, and then changing for each file?

View 6 Replies View Related

OpenSUSE Multimedia :: Converting .mkv With Soft Subs Files To Play On An IPad?

Aug 5, 2011

I have many .mkv files that have soft subs I'd like to convert so I can play them on my iPad. What Linux tool can I use to do this more of less automatically?

View 5 Replies View Related

General :: Creating A Script To Move Or Copy Files Into Multiple Directories Below The Files?

Aug 25, 2009

How can you create a script to move or copy files from a main directory into multiple directories below the main directory.

View 7 Replies View Related

Ubuntu :: How To Move Multiple Files

Feb 20, 2010

how do i move multiple files at once using the command line?

View 4 Replies View Related

Ubuntu :: Print Multiple .doc Files?

Jun 12, 2010

I often have a need for printing multiple files. Therefore I found a Nautilus script that would allow me to do this. However often many of the files a Microsoft Office doc-files. Since I do not really want to convert every single file (as that would defeat the purpose of bundle printing) I tried to figure out how to print these, as the commands "lpr" og "cupsdoprint" cannot process these. I have found a printing command using the CLI part of OpenOffice, but I cannot get it to do multiple selected files.

The command is:

Code:
soffice -p "/path/of/file.doc"

How can I use this in a Nautilus Script so I can print multiple files?

View 1 Replies View Related

Ubuntu Servers :: Multiple Php.ini Files

Jul 19, 2010

I would like to have multiple php.ini files for multiple sites.

I've a production site (word wide available) and a test site (available to some selected IP-addresses). I would like to set some different PHP settings for the test site, for example, 'error_reporting' and 'display_errors'.

Is this possible? I'm not looking for some CGI hack, unless it wouldn't work any other way.

View 2 Replies View Related

Ubuntu :: Permissions Of Multiple Files At Once?

Aug 6, 2010

I made some files belong to root, so that my sister couldn't read them while she was staying with me, there were about 40 files altogether but I did them all at once by change the permissions of the folder and clicking "apply Permissions to enclosed files" but now I want to change them back to belonging to my user account so Opened a gksudo nautilus windows and I went on folder properties and set the permissions to [user] and clicked apply to enclosed files, but it only did the folder. I tried selecting all the files and changing them all at once that way but it won't let me, how can I make the files belong to me again, other then one by one? I dont know how to use the CLI that much.

View 4 Replies View Related

Ubuntu :: How To Extract Multiple Rar Files At Once

Sep 11, 2010

find a software similiar to [URL]whit gui for ubuntu ? or some kind of nautilus script ?

View 9 Replies View Related

Ubuntu :: Can't Select Multiple Files For Uploading

Feb 13, 2010

I pushed the browse button and selected the first picture, but I was unable to select all of the pictures.
This happened again on an email attempt to do the same thing.

In the gnome environment, I am able to select the first then hold down shift, and select the last pic and all the ones in between will be selected. I expected this behavior when selecting for upload, but it didn't happen. I had to select each one, one at a time and upload each one.

I tried making a folder to upload the whole folder and that would not select at all.

View 8 Replies View Related

Ubuntu Multimedia :: NeroAacEnc With Multiple Files?

Mar 8, 2010

I would like to create AAC files using NeroAAC.I have directories of wav files I need to encode and I cannot figure out how to do this with the neroAacEnc command on the command line. The program will not accept neroAacEnc -if *.wav -of *.aac as a valid command, though FAAC, LAME and OggEnc will accept similar commands.I lack the coding skills to write a proper script for it. I'd just like to be able to type in a command and have an entire directory converted from wavs to aacs with the Nero codec. Is this possible? If not, can it be programmed? How?

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved