General :: Convert *.cur To X11 Cursor File Format?

Mar 6, 2011

Visibly my WM is not capable to read else than the format X11 cursors, so no way to CUR or ANI
Cheers

View 4 Replies


ADVERTISEMENT

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

General :: Convert Pdf File To Text Format In 4.7?

Dec 27, 2010

I have an pdf file on my linux RHEL 4.7 machine. I can open that file but when i click on 'saveas' to save the file in 'Text' format there are no options i see there. I need to save the 'pdf' file to 'text' format. could anyone tell me how to save the pdf file to Text format. Iam using 'KDE'

View 6 Replies View Related

General :: Convert A Video File To Mxf Mxf Container Format?

May 31, 2010

I am trying to convert a mpg video file to mxf container format using ffmpeg by follwing command. ffmpeg -y -i INPUT.mpg -s 640x480 -vcodec mjpeg -b 5Mb -minrate 4Mb -maxrate 6Mb -bufsize 3Mb -an -f mxf OUTPUT.mxf

I get this error::

FFmpeg version 0.5.2, Copyright (c) 2000-2009 Fabrice Bellard, et al.
configuration: --enable-shared --enable-libmp3lame
libavutil 49.15. 0 / 49.15. 0
libavcodec 52.20. 1 / 52.20. 1

[Code]....

View 2 Replies View Related

General :: Simple Script To Convert Datetime Format To UTC Format?

Oct 9, 2009

just wondering is there a simple script to convert datetime to UTC format. I have been searching different forums but most answers are for converting UTC to datetime. For example what is a simple command/script to convert todays datetime to UTC format i.e. '2009-10-09 11:47:59'.

View 10 Replies View Related

Ubuntu :: Convert A PDF File Page Format?

Jan 20, 2010

I have a PDF File here with upright ("portrait" format) pages, and I want to convert it so that each page gets "split" in the middle and becomes two wide ("landscape" format) pages.

Something like "print multiple pages on one page", only reversed

Is there any way to do such a thing with CUPS or something?

I have the source file ONLY in PDF Format

View 9 Replies View Related

Software :: Convert A Video File To Mxf Container Format?

Jun 1, 2010

I am trying to convert a video file to mxf container format using ffmpeg.But not able to achieve the goal.This the command which i used.ffmpeg -i smirnoff_edlp2ok4.mpg -vcodec mpeg2video -b 450k -acodec libmp3lame -ab 64k -ar 48000 -y op.mxf

View 1 Replies View Related

Networking :: Convert Tcpdump Output File To A Pcap Format?

Feb 21, 2011

How to convert Tcpdump output file to a Pcap format? Is there such way?

This is what i mean:

tcpdump -i eth0 >> test.out

Now i want to convert test.out to Pcap so It's readable via Wireshark.

View 5 Replies View Related

Software :: Convert A Microsoft Publisher File To Pdf (or Other Format) On System?

Apr 27, 2010

I have been sent some file sI need to open but they are in .pub format. Having them sent in another format is not an option. I need to open them on Linux. Is there a tool which I can convert it into another format (preferably PDF) rather than having to mess around getting publisher installed on wine etc etc?

View 1 Replies View Related

Ubuntu :: Convert An RSS Format File To HTML Using Command Line Tools?

Feb 14, 2010

I'd like to find a way of

1) capturing an RDF formatted RSS feed as a file on my computer

2) converting the result to HTML using local command line tools

I've sorted 1) with wget? I've discovered xsltproc but I'm going round in circles. The master plan is to import my pinboard bookmarks into a static web site produced on my linux box using a handful of clever bash scripts.

View 7 Replies View Related

General :: Convert AVI Or Rmvb To DVD Format?

Apr 18, 2010

how can convert AVI and Rmvb format to DVD and burn it into DVD Disc? I have Obuntu ver9.?

View 3 Replies View Related

General :: Convert To ASCII Format Under OpenWrt?

Feb 16, 2011

[URL] under Fedora 14 - Bash:
$ cat asdf | iconv -c -t ASCII
<a href="http://www.net-security.org/secworld.php?id=10607">biometric cabinet lock detects life in the finger</a>
ASDF
$
[Code]...

But theres no iconv under OpenWrt. Are there other working methods to convert a piped ( "|" ) text to only ascii format (under OpenWrt 10.03)?

View 1 Replies View Related

General :: Convert DBX Mail Files To MBox Format?

Nov 16, 2010

Recently, my hard drive crashed. I was using XP and do not have my install discs (lost them 3 moves ago...). I make backups regularly and only lost roughly 3 days worth of material (nothing really important). On my other PC I've been running linux forever. I don't need windows and have installed a new HD in the PC and put fedora on there w/ no issues. Now historical email. There seems to be many workarounds for getting dbx files to mbox inside windows, but how would I accomplish this task without a windows install anywhere (Virtual installs are out as I do not have any install discs for windows anyways).

After a quick search, I only found one possible solution (in perl) and am looking for something that I don't have to program my self. I am a programmer by trade but have never programmed in perl (c++, FORTRAN, matlab, python... yes) and at this point, don't feel like learning new syntexs for this one problem (python has been my goto scripting language for everything linux...). Also if anyone has a link to a c++ lib(link to documentation?) that does the same thing... I might take a look at that and make a gui for it... then release it for others...

View 1 Replies View Related

General :: Bash Script To Convert MPG Files To AVI Format?

Sep 19, 2009

I'd like to write a bash script to convert all of the .mpg files in a directory to .avi files. The ffmpeg part of this produces the kind of file that I want, but rather than changing the name of the input and output files each time that I run the script, I'd like to automate it. I've tried this script, but I get an error "command not found".

#!/bin/bash
cd /home/michael_s/golf_temp
1 for i in 'ls *.mpg' ; do
/usr/bin/ffmpeg.exe -i /home/michael_s/golf_temp/"$i" -map 0:0 -map 0:1 -pass 1 -vcodec mpeg4 -vtag xvid -f avi -b 1100k -vol 384 -mbd rd -s 640x480 -aspect 4:3 -acodec libmp3lame -ac 2 -ab 128k /home/michael_s/golf_temp/"$i".avi

rm -f /home/michael_s/golf/temp/"$i".avi
/usr/bin/ffmpeg.exe -i /home/michael_s/golf_temp/"$i" -map 0:0 -map 0:1 -pass 2 -vcodec mpeg4 -vtag xvid -f avi -b 1100k -vol 384 -mbd rd -s 640x480 -aspect 4:3 -acodec libmp3lame -ac 2 -ab 128k /home/michael_s/golf_temp/"$i".avi
done
fi
quit

View 5 Replies View Related

General :: Convert .wav Sound Files To .gsm Format With Sox Utility?

Sep 1, 2009

how can I convert .wav sound files to .gsm format as I have an application for this usage ? Please be informed that I have made use of the sox utility for this purpose , as the followings , but it didn't get through : #sox FR00003.wav -r 8000 -c 1 FR0003.gsm resample -ql

View 5 Replies View Related

General :: Convert A Cdrom Made With Clonecd To ISO9660 Format?

Jan 4, 2010

I used linux clonecd to copy a cdrom, but I would like to convert it to more standard iso9660 format.

How could we make it? I have the bin and toc files as source from clonecd linux.

View 9 Replies View Related

General :: Free Command Line Tool To Convert SVG To PDF And/or Some Commonly-used Bitmap Format?

Jun 29, 2011

Is there a free linux command line tool to convert SVG to PDF and/or some commonly-used bitmap format (for example PNG)?

View 2 Replies View Related

Fedora :: Convert .mp4 Format To .avi Format Using "ffmpeg"?

Aug 9, 2011

I have some .mp4 files. While open this file using vlc-player the resolution is fine. Then I convert this .mp4 format to .avi format using "ffmpeg". While open the .avi file using vlc-player the resolution is not fine.

View 3 Replies View Related

General :: Get A .cur File As Cursor?

Mar 29, 2011

so i have this master sword .cur file in my downloads. i have ubuntu 10.10 and would like the master sword as my cursor it would fit amazingly with the entire zelda theme ive been putting together...walkthrough maybe?

View 14 Replies View Related

General :: Convert Fdf File To Xsf File Or Xyz File On Ubuntu 9.10_32 Bit?

Nov 7, 2010

I want to convert fdf file to xsf file or xyz file on ubuntu 9.10_32 bit .

View 5 Replies View Related

Fedora :: Convert A Dvd To Avi Format?

Sep 5, 2010

Just wondering what are my options if I wanted to convert a dvd to avi format?

View 3 Replies View Related

General :: Convert Binary File In To Ascii File Using Shell Script?

May 23, 2011

i am trying to convert a binary file in to ASCII using shell script. this file contains multiple types of data like string, number, bcd, etc.

View 5 Replies View Related

General :: Convert An HTML Email Saved As A Text File To A PDF File From The Command Line?

Aug 23, 2011

I need to be able to convert HTML email messages saved as text files (.eml or .msg) to PDF documents, one PDF per email, retaining formatting and images.

Are there any Linux tools that will allow me to do this from the command line (so it can be scripted)?

View 1 Replies View Related

Fedora :: Convert A DVD From NTSC To PAL Format?

Aug 13, 2009

What is the best way using Linux to convert a DVD from NTSC to PAL format? I have a DVD made from an HD recording using a video camera. Made a standard DVD by copying from the Camera to the DVD recorder [ergo NTSC].

Now how to convert the DVD to PAL format?

View 2 Replies View Related

Fedora :: How To Convert FLV And MP4 Videos To SWF Format

Sep 20, 2009

Is there any way to convert *.flv and *.mp4 videos to *.swf format please? I have some videos downloaded with .....-dl that are in the above format. I would like to make them all into SWF files, so anyone can watch them in their browser, without having to find a suitable multimedia player.

View 9 Replies View Related

Ubuntu :: How To Convert PDF To EPub Format

Jul 29, 2010

I guess many guys got lots of eBooks in PDF and other formats, but some e-readers like Sony Reader, Barnes & Noble Nook, Hanlin eReader and phones/devices using Android only support specific formats with their default reader apps, especially newly-released and hot iPad. What's the best way to convert those PDFs to ePub (ePub is the only ebook format iTunes accepts)?

View 1 Replies View Related

Ubuntu Multimedia :: Convert Flv To Mtv Format?

Sep 28, 2010

I just got a new mp3 player that will play videos if they are in mtv format - is it possible to convert flv vids to mtv? I'm using Karmic.

View 3 Replies View Related

Ubuntu Multimedia :: Convert To Swf From Any Format?

Oct 10, 2010

convert to swf from any format, i can't seem to accomplish this.

View 9 Replies View Related

Ubuntu Multimedia :: Convert Vob To Avi Format?

Jan 26, 2011

how can i convert vob format to avi?

i am using ubuntu 10.04

View 1 Replies View Related

Software :: Convert HighMAT Format To DVD?

Aug 15, 2010

I have a Humax HDPVR-1000C digital cable set-top box. Now I want to transfer some of the shows I had recorded with the box to a DVD. So I copy a movie from the Humax box to an external USB hard drive and then plug the hard drive to my OpenSUSE box. The hard drive now contains three files: one with the extension .hmt, one with the extension .nts and a fairly large file with the extension .ts.

After doing some googling I found out that the .hmt and .nts files are apparently related to Microsoft HighMAT technology. So it seems that the Humax box stores the recordings in M$ HighMAT format.

My question is that how do I fit these files to a DVD that can be played in a DVD player? VLC can play these files just fine, but really would like to burn them on a DVD.

View 1 Replies View Related







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