Ubuntu :: Any Way To Batch Convert Recursively Using PS2PNG?

Jan 15, 2010

Is there a way to batch convert recursively using ps2png?

View 4 Replies


ADVERTISEMENT

General :: Batch Update Symbolic Links Recursively

Jun 28, 2010

I have a web app that has a bunch of symbolic links in subdirectories throughout it.I need to move the app to another directory structure, and I need to update all the symlinks to point to the new path.The problem is that there's a lot of these scattered throughout various directories.How can I recursively search from the root and recreate all symlinks pointing to /dev/ with /qa/?

View 3 Replies View Related

Ubuntu :: Batch Convert Mp3 To Ogg?

Oct 5, 2010

Is there some way of recursively batch converting mp3s into oggs while keeping the same directory structure?

View 8 Replies View Related

Ubuntu Multimedia :: FFMPEG - FLV To MP3 Batch Convert

Mar 15, 2010

I have a file with about 6 .flv files and I wish to batch convert them to libmp3lame. I have tried making a #!bin/bash script with all the files in e.g.

Code:
ffmpeg -i filename.flv -sameq -acodec libmp3lame -f asf filename.mp3

I have inserted all the filenames individually into the script but when I ran it I got too many errors and i was wondering if someone knew a quicker way to do it e.g. a script that would batch convert all .flv files in that folder to .mp3 format.

View 8 Replies View Related

Ubuntu Multimedia :: How To Batch Convert Files To .flv?

Apr 16, 2011

So I have a php script that is setup to stream flash video (.flv) and I absolutely love having it. The problem is that any files I want to stream have to be in .flv format for it to work properly as .avi and others obviously don't stream well. Up until now, I've used FFMpeg to change the format from .avi to .flv, however the process takes a lot of time if you have a lot of videos, added to that you have to do one file at a time definitely makes it a pain.Does anyone know of a bash script that can take all the files (i.e. avi, .wmv, .mkv, .mpeg4) in one folder and automatically convert it to .flv? Then possibly delete the old files? Low resolution is fine, so long as it at least viewable. Does anyone have a script or know of a program that can do this (I run Ubuntu 10.04). I think FFMpeg has the best chance of doing this, but I don't know the syntax to actually do so.

I've searched the internet, and while I have found a few scripts, they didn't work for me (still looking into two scripts I found.I am currently messing with them to see if I can get them to work).It would be immensely helpful if someone knew of a way to do this.I also forget to mention that I have used Winff, but I was looking more for a bash script to do this so that I can set a cron job to convert them every hour or so.

View 4 Replies View Related

Fedora :: Batch Convert From DVDs To Avi?

Sep 10, 2010

I am looking for a way to batch convert from DVDs to avi - ideally choosing the resolution of my output device (for use on an Android/iPhone). I really want to do it automatically/via a script from the command line if possible.

View 4 Replies View Related

OpenSUSE :: Batch Convert CGM Images?

Apr 6, 2010

Is there an easy way to batch convert CGM images into anything modern (preferably SVG, because they're vector graphics)? The furthest I've gotten is ImageMagick, which tries to open them, but dies saying it can't find "ralcgm", mhich I can't find in any repos.

View 9 Replies View Related

Ubuntu :: Script To Batch Convert Video In Handbrake?

Feb 21, 2011

I've looked everywhere I could but I must be blind. I have Ubuntu 10.04 Server and I'm trying to batch convert .avi to .m4v in folders and subfolders. I can't seem to find a script to do that.

View 1 Replies View Related

OpenSUSE Multimedia :: Batch Convert Flac To Mp3?

Jun 6, 2011

pacpl and audioKonverter appear to be missing from the Packman and OpenSuse repositories. Does anyone know of something similar that's available?

View 3 Replies View Related

General :: What Program Can Batch Convert Video?

Apr 22, 2011

I have many video files that I'm trying to convert from *** to .mp4..Currently I'm using Handbrake which does a good job but getting it started is very tedious. In Handbrake I need to confirm and add to queue all of the files. When there are over 200 files at a time it takes way too long. If there is a way to not confirm all of the files please let me know.What program can I use to just add a folder and have it automatically add all of the files to my queue?

View 9 Replies View Related

Software :: Batch Convert Text Format To RTF?

Aug 27, 2010

I have a bunch of text files that I created with mousepad in xfce. I didn't really think I would need to share them, but I guess I have to. Is there anyway I can batch convert these to rtf so they could be viewed on a windows client?

View 4 Replies View Related

Ubuntu Multimedia :: Batch Convert Audio In Video Files?

May 8, 2010

a movie is encoded with AC3 in 6 channel audio, what I get out is all of the sounds except for voices, which in 5.1 would be sent to the center channel. What I usually do is fire up avidemux and convert the audio to mp3 stereo, as converting to a 5.1 format usually ends up with a very odd sound (like running everything through an echo chamber). What I'd like to do is run a script to batch-convert these files from AC3 to MP3. The video format may vary, but they are usually XVID. I am comfortable at the command line, but I am not well-versed in audio/video tool terms. I don't need anything extravagant, I just want something that works. Heck, even if it is done one at a time, having a shell script that I can use to simply type:

tool.sh inputfile.avi outputfile.avi

View 4 Replies View Related

General :: Need To Convert Batch File To Shell Script

May 3, 2010

Kindly help me converting a batch file with following commands into shell script..I would like to have the same functionality with shell commands.

View 2 Replies View Related

Software :: Batch-convert A Bunch Of Old Wma Files To Ogg Vorbis?

Jan 15, 2010

I'm not asking for help here, just documenting something I just discovered. Yesterday I wanted to batch-convert a bunch of old wma files to ogg vorbis. Not wanting to go through intermediate wav files, I tried to use ffmpeg to do it in one go. I first tried using the following command (in a loop, which I won't print here).

Code:
ffmpeg -i $file -f ogg -acodec vorbis -ab 192k outputdir/$file "vorbis" turns out to be the built-in libavc implementation of the codec. In the process I discovered that the -ab value is always ignored. No matter what value you put, the output is always the default 64k (average, but of course it's vbr). You can however use the poorly-documented -aq option to set the audio quality used. The values don't correspond to the oggenc values though, being a number ranging from 10-100 (or more, I don't know what the maximum is). It's not exactly clear what number corresponds to what average bitrate, so you have to experiment. ~30 seems to give you an average-rate file, while anything above 60 is probably overkill.

Switching to the external libvorbis gave me more flexibility, although at a cost of much longer encoding times (note that ffmpeg must have been compiled with libvorbis support first).

Code:
ffmpeg -i $file -f ogg -acodec libvorbis -ab 192k outputdir/$file
ffmpeg -i $file -f ogg -acodec libvorbis -aq 6 outputdir/$file

I could use both -ab and -aq (with the numbers corresponding to the oggenc values), with no problems. ffmpeg does display some wrong values in it's output text, however. In addition, there's one more difference. The vorbis (libavc) codec provides an entry in the header of the ogg container reporting the average bitrate, but it doesn't appear to provide a similar bitrate header in the vorbis stream itself. Some programs may not report the bitrate value because of this.

libvorbis provides both headers, avoiding that problem. So to summarize, libvorbis appears to be a better codec choice than vorbis.

View 10 Replies View Related

Programming :: Convert Few Lines Of SHELL Script To DOS Batch

Apr 14, 2011

I really need help with this part of a shell script which I am trying to migrate to DOS batch script.

View 3 Replies View Related

Ubuntu Multimedia :: Write A Bash Script To Batch Convert To Mp3hd?

Oct 23, 2010

ok so i am trying to write a batch convert script for mp3hd(do not snigger)my starting point is a script i know works i got elsewhere

Code:
for f in *.m4a; do ffmpeg -i "$f" "${f%.m4a}.wav"; done
from here

[code]....

View 9 Replies View Related

Ubuntu Multimedia :: Batch Convert Entire Music Directory To 320kbps MP3

Jan 3, 2011

I have a large (~60GB) collection of music in various formats on my hard drive. It is organised in the form Artist/Album/*.ext

The formats include M4A, FLAC, MP3, and OGG. What I would like to do is convert the entire directory, keeping subfolders and ID3 information intact. I would preferably like to be able to do this with a single script.

I am running Ubuntu 10.10 x86_64. I am fairly adept with BASH and the command line, so I foresee no problems there. If I have to write my own script, these are the things I'm not sure about:

(a) maintaining the directory structure.
(b) how to tell the script which converter tool to use (LAME, FLAC, etc.
(c) keeping ID3 tags.

View 9 Replies View Related

Software :: How To Convert OS / 2 Icons To LINUX Format In Batch Mode?

Apr 23, 2010

I have few thousands of icons from my OS/2 PC and I would like to convert them to format acceptable by LINUX GUI (*.png, *.xpm).I attempted to open an OS/2 *.ico files with few LINUx graphical apps (GIMP,Fspot, gThumb,Gwenview,Kolourpaint,Okular) but none can understand the format. It's somewhat problematic for me
to convert under OS/2 now so I'm looking for a LINUX app.Are there any LINUX apps that can convert OS/2 *.ico files to a LINUX format in BATCH MODE? If it requires manually "open then save-as", I can't repeat it few thousands of times.

View 1 Replies View Related

General :: Convert Batch File Into A .sh File Will Not Work

Sep 16, 2010

I am trying to convert my batch file into a .sh file and i think i have it perfect but it just will not work, so obviously not perfect. This is the code for my batch file.

[Code]....

This works perfectly on my own computer without any problems. I want to host this on my Linux VPS (CentOS 5) and need it to be converted into run.sh. This is the code for my run.sh.

[Code]....

View 9 Replies View Related

Ubuntu Multimedia :: Unable To Use 'convert' In Command Prompt To Convert Image File Format

Jan 19, 2010

I am trying to use 'convert' in command prompt to convert image file format.I get the following error.

convert: UnableToOpenConfigureFile `delegates.xml' @ configure.c/GetConfigureOptions/589.
convert: NoDecodeDelegateForThisImageFormat `airplane.jpg' @ constitute.c/ReadImage/530.
convert: MissingAnImageFilename `airplane.ppm' @ convert.c/ConvertImageCommand/2838.

View 3 Replies View Related

Ubuntu :: Convert Wav To Mp3 Using Nautilus-script-audio-convert?

Mar 16, 2010

An easy way to convert wav files into mp3 (or ogg).

$ sudo-apt-get install nautilus-script-audio-convert mpg321 vorbis-tools lame nautilus-script-manager.

after that run

$ nautilus-script-manager enable ConvertAudioFile

Now, when you right click on audio file, under 'scripts', you will see ConvertAudioFile option.

View 3 Replies View Related

Software :: Convert A Bunch Of .ogg Files To Mp3 To Play On IPod - Unable To Convert With Sound Converter?

May 3, 2009

I have Ubuntu 9.04 and just installed Sound Converter. I am trying to convert a bunch of .ogg files to mp3 to play on my iPod and it's not working so well. In the Sound Converter options I have is set to convert to high quality mp3. I choose the folder that the files are in and after a moment (slow laptop) Sound Converter populates, I hit 'convert' and it shows that the conversion completes in two seconds. All that it did was create the new folder structure of artist/album but there is nothing in there. Not sure what I am missing. I used Sound Converter before and it worked fine.

View 2 Replies View Related

General :: Using Convert From Imagemagick Package To Convert Multiple Jpg Files?

Jul 18, 2010

I'm trying to use convert, I have installed the imagemagick. I use this line:convert *.jpg test.pdf but I'm only able to convert to pdf 1 single jpg file, not multiple files at once. When there's more than one file, I get the following error: Segmentation fault

View 5 Replies View Related

Software :: FLAC Files To Convert Or Not To Convert To CD-DA?

Dec 24, 2010

I have a lot of .flac files downloaded from several sites. Most of them come with a .cue file, and the .jpg with the cover, etc. It seems it is the intention of the uploader that one rebuilds the original CDDA. However, if I had a stand-alone CD/DVD player with flac I would hardly see the point of converting the flac to cdda. Furthermore, I could even play the flacs with a software player although, in this case, the audio quality would not be so good due to the noise picked up by the signal from the PC digital circuits.

View 2 Replies View Related

Ubuntu :: 9.10 - Get Clamscan To Run Recursively?

Feb 2, 2010

9.10 - get clamscan to run recursively?

View 2 Replies View Related

Ubuntu :: Why Batch Does Not Always Work

May 28, 2010

I was trying to understand "batch" command, and I thought perhaps when I am logged in a terminal, in addition to X, there are multiple users, and man page says it is not suitable for multiple users. But then, you could never use batch in a terminal? So not sure... take a look, at first it works, then it does not. In this example, I am trying to use "batch" to make (touch) a new file. And the load is always very low.

[Code]...

View 4 Replies View Related

Ubuntu :: Run A .batch File?

Jul 31, 2010

I am trying to run a .batch file, I was wondering if this edit would make it work, this is a java application-loader.

Code:
#bin/bash
java -Xmx500m -cp .;Theme.jar Gui 0 1 lowmem members 32
pause

View 2 Replies View Related

Ubuntu :: How To Run Batch Files?

Oct 19, 2010

I recently installed JDK 6 runtime using apt-get install in terminal. I downloaded a .jar file and attempted to run it but I got an error telling me it has blocked the file for some reason.Another thing was, how can I run batch files? I know ubuntu doesn't come with something like MS DOS but is there anything similar that I can run batch files with?

View 3 Replies View Related

Ubuntu :: Can't Get Chmod To Function Recursively

Jan 12, 2011

it seems to me I can't get chmod to function recursively. I have a folder with a couple subdirectories in it and a few in each of those etc. Now, I want to give everyone read-write on all .c files. So, I typed in terminal:

Code: chmod -R 666 *.c However, none of the .c files in any of the subdirectories were touched, i.e. I could have accomplished exactly the same thing by typing

Code: chmod 666 *.c I did RTFM, and it seems that what I did initially should have been the ticket. What am I doing wrong?

View 2 Replies View Related

Ubuntu :: How To Recursively Bunzip2 - No Option

Jul 19, 2011

Since there is no directory recursive option for bunzip2, any ideas on how to do this as I have lots of .bz2 files scattered throughout from an unknown archive program.

View 3 Replies View Related







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