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


ADVERTISEMENT

General :: Convert Text To ASCII?

May 20, 2010

how i can convert a text to ASCII? >>> ( to encrypt the text ) and how can we use the "hexdump"

View 5 Replies View Related

General :: Tool To Convert A File Of HEX To ASCII Character Set?

Feb 10, 2011

Is there a known tool to convert a file consisting of 2 byte Hex into ascii?

Note: - Maintain file offset listing in bytes code...

View 3 Replies View Related

General :: Convert The Numbers Back Into Their Corresponding ASCII Character

May 19, 2010

To encrypt the text, we take the word "python" and make it at least the same size as "welcome home" by repeating it as follows:

w e l c o m e h o m e
p y t h o n p y t h o n
Then, we convert each letter into its numerical ASCII value as follows:
w e l c o m e h o m e = 119 101 108 099 111 109 101 032 104 111 109 101

[Code].....

And, finally, we convert the numbers back into their corresponding ASCII character:

View 11 Replies View Related

General :: Convert Binary Number To Text/ascii?

Mar 16, 2011

is there command in linux which is able to convert binary (0101001010000100) to text like it means something

View 4 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

Red Hat :: Convert A Unicode File To Ascii?

Jul 1, 2010

I need to be able to convert a unicode file to ascii using red hat.

View 1 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

Programming :: Convert Multiple File In Directory - Ascii To Hex In Perl ?

Apr 9, 2011

I have found a perl script that can convert single file: ascii to hex.

However I have thousand of file that I want to convert from ascii to hex.

Here is the perl script that convert single ascii file to hex in single line:

Quote:

So I would like to read multiple file from a directory.

Then the file will be have same name file with hex data.

Here is sample of the read and write directory file.

Quote:

View 3 Replies View Related

CentOS 5 :: Convert Between "ASCII English Text" And "ASCII Text"?

Aug 3, 2011

This is weird, and I never noticed before, but now I have an application that is borking on weird things like when /etc/hosts is of one file format or another, and I don't even know the difference between the two (google doesn't tell much either). on CentOS 5.5/5.6 x86_64: a which on the following is an interesting tell:

vi = /bin/vi
vim = /usr/bin/vim

both are actually vim version 7.0.237 but sum differently, and although they are both actually separate executables in the stock installs of CentOS I've been building, on most distros, and older versions of CentOS it seems, vi is usually just a symlink to vim - but again, not in these fresh installs it seems. When I create a file with the 'vi' above, it defaults (usually) to "ASCII text" (but not always) When I create a file with the 'vim' above, it defaults to "ASCII English text" (and causes a particular application I'm working with to bork and barf). It seems the OS is installed by default yielding both file types too, as evidenced by the following:

[Code]...

View 4 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

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 *.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 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 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 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 :: 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

Server :: Convert A Hex File To An ASCII File?

Sep 8, 2010

I have a file of 2GB size in hex form. This is a log file from the server which I converted to hex as the file got corrupted.Can anyone tell how to convert this hex file to ASCII?

View 1 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

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

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