ideal dvd to ipod converter 2.4.0
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 917
Perl Audio Converter 3.3.2
Perl Audio Converter (PAC) is a simple script for converting multiple audio types from one format to another. more>>
Perl Audio Converter (PAC) is a tool for converting multiple audio types from one format to another. It supports MP2, MP3, Ogg Vorbis, FLAC, Shorten, Monkey Audio, FAAC (AAC/M4A/MP4), Musepack (MPC), Wavpack (WV), OptimFrog (OFR/OFS), TTA, LPAC, Kexis (KXS), AIFF, AC3, Lossless Audio (LA), AU, SND, RAW, VOC, SMP, RealAudio (RA/RAM), WAV, and WMA.
It can also convert audio from the following video formats/extensions: RM, RV, ASF, DivX, MPG, MKV, MPEG, AVI, MOV, OGM, QT, VCD, VOB, and WMV. A CD ripping function with CDDB support, batch and playlist conversion, tag preservation for most supported formats, independent tag reading/writing, and extensions for Konqueror and amaroK is also provided.
Enhancements:
- Added: MP4::Info dependency IO::String to pacpl-install
- Updated: License GPLv3
- Bug Fix: Directory conversions. pacpl was claiming the directory was empty and prompting to use the --recursive option...Thanks to John Meyer for the report.
<<lessIt can also convert audio from the following video formats/extensions: RM, RV, ASF, DivX, MPG, MKV, MPEG, AVI, MOV, OGM, QT, VCD, VOB, and WMV. A CD ripping function with CDDB support, batch and playlist conversion, tag preservation for most supported formats, independent tag reading/writing, and extensions for Konqueror and amaroK is also provided.
Enhancements:
- Added: MP4::Info dependency IO::String to pacpl-install
- Updated: License GPLv3
- Bug Fix: Directory conversions. pacpl was claiming the directory was empty and prompting to use the --recursive option...Thanks to John Meyer for the report.
Download (0.12MB)
Added: 2007-07-07 License: GPL v3 Price:
526 downloads
Kde media converter 2.1
Kde media converter is a Kommander script that can convert any type of media into any other type. more>>
Well... i apreciated the good job done by almusaihij http://www.kde-apps.org/content/show.php?content=53457
And ive read comment about too many buttons... Ive searched along in kde-apps and i found this app http://www.kde-apps.org/content/show.php?content=41272
So ive decided to take the best from those kommander script to realize a more "feeling" and clean gui.. I would like to thanx all this guys and the script code..hope i can help to contribuite in adding-code for future kommander interfaces..
It could be more improved... like multiple files converted... and a clean "map-format" ...because now is in a little bit of a mess...
If u like this prog check also:
-SoundKonverter
-Kvideoencoder
A big tnx to the Ubuntu italian community for support..;)
A special tan to almusaihij for makeing a Kubuntu .deb package and for sharing code and idea.
Enhancements:
- More improved code
- Added subtiles misc with avi file
- Added experimental controls
<<lessAnd ive read comment about too many buttons... Ive searched along in kde-apps and i found this app http://www.kde-apps.org/content/show.php?content=41272
So ive decided to take the best from those kommander script to realize a more "feeling" and clean gui.. I would like to thanx all this guys and the script code..hope i can help to contribuite in adding-code for future kommander interfaces..
It could be more improved... like multiple files converted... and a clean "map-format" ...because now is in a little bit of a mess...
If u like this prog check also:
-SoundKonverter
-Kvideoencoder
A big tnx to the Ubuntu italian community for support..;)
A special tan to almusaihij for makeing a Kubuntu .deb package and for sharing code and idea.
Enhancements:
- More improved code
- Added subtiles misc with avi file
- Added experimental controls
Download (0.030MB)
Added: 2007-05-21 License: GPL (GNU General Public License) Price:
537 downloads
MySQL PHP to Posgres Converter 0.94
MySQL PHP to PostgreSQL is a program that takes a php page that uses mysql calls and changes them into PostgreSQL calls. more>>
MySQL PHP to PostgreSQL is an application that takes a php page that uses mysql calls and changes them into PostgreSQL calls.
This allows any website (if it converts properly) that was written in PHP for MySQL to run as a website written to run on PostgreSQL.
- Step 1: Download and uncompress
To uncompress simply type: tar xvzf mysqlphp2postgres.tar.gz
If youre on a non-GNU system you might have to type: gzip -dc mysqlphp2postgres.tar.gz | tar xvf -
- Step 2: Compile
To compile simply type: make
If youre on a non-GNU system youll have to edit the make file to change the compiler to cc instead of gcc
- Step 3: Install
Type: make install
This will simply copy the binary file to /usr/local/bin/
- Step 4: Convert
Type: mysqlphp2postgres inputfile.php outputfile.php
The input file is the php page that uses mysql. The outfile is the page you want to create. You will probably need to tell mysqlphp2postgres the name of the postgreSQL database since mysql_select_db doesnt translate. You can do this by using a -d switch. So if, for example, the database youre connecting to is called blah, you could type: mysqlphp2postgres -d blah inputfile.php outputfile.php
Problems:
I have had the following problems from using this program:
MySQL has a lot more functions in PHP than PostgreSQL that do more things. I havent had a problem with any unsupported functions in my programs, but someone probably will. If you want to help write code for this to support those functions (if thats even possible) feel free to help.
Enhancements:
- Fixed some stuff.
- Cleaned up some code.
- This program now produces code optomized for PHP 4.1.0 and above.
<<lessThis allows any website (if it converts properly) that was written in PHP for MySQL to run as a website written to run on PostgreSQL.
- Step 1: Download and uncompress
To uncompress simply type: tar xvzf mysqlphp2postgres.tar.gz
If youre on a non-GNU system you might have to type: gzip -dc mysqlphp2postgres.tar.gz | tar xvf -
- Step 2: Compile
To compile simply type: make
If youre on a non-GNU system youll have to edit the make file to change the compiler to cc instead of gcc
- Step 3: Install
Type: make install
This will simply copy the binary file to /usr/local/bin/
- Step 4: Convert
Type: mysqlphp2postgres inputfile.php outputfile.php
The input file is the php page that uses mysql. The outfile is the page you want to create. You will probably need to tell mysqlphp2postgres the name of the postgreSQL database since mysql_select_db doesnt translate. You can do this by using a -d switch. So if, for example, the database youre connecting to is called blah, you could type: mysqlphp2postgres -d blah inputfile.php outputfile.php
Problems:
I have had the following problems from using this program:
MySQL has a lot more functions in PHP than PostgreSQL that do more things. I havent had a problem with any unsupported functions in my programs, but someone probably will. If you want to help write code for this to support those functions (if thats even possible) feel free to help.
Enhancements:
- Fixed some stuff.
- Cleaned up some code.
- This program now produces code optomized for PHP 4.1.0 and above.
Download (0.011MB)
Added: 2006-04-14 License: GPL (GNU General Public License) Price:
1288 downloads
Capacitor Converter 1.0
Capacitor Converter is an extension which converts capacitor values. more>>
Capacitor Converter is an extension which converts capacitor values.
Easy to use capacitor converter. Converts between pF, nF and uF in a flash. For those of you who didnt know you can make the toolbar disappear.
Just right-click(Windows) or ctrl+click(one button Macs) beside the address bar and select Capacitor Converter to make it disappear.
<<lessEasy to use capacitor converter. Converts between pF, nF and uF in a flash. For those of you who didnt know you can make the toolbar disappear.
Just right-click(Windows) or ctrl+click(one button Macs) beside the address bar and select Capacitor Converter to make it disappear.
Download (0.002MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
603 downloads
PSP Video Converter 0.1
PSP Video Converter project is a simple graphical frontend to ffmpeg to allow you to easily convert your videos to PSP format. more>>
PSP Video Converter project is a simple graphical frontend to ffmpeg to allow you to easily convert your videos to PSP compatibile format. Works for me, thought I may share.
Note: Created with Kommander 1.3, not sure if it works with earlier Kommander.
Note: There is no error checking for now, so make sure you have a working ffmpeg with necessary codecs installed.
Note: Looks like some PSPs cant open h264 videos encoded with ffmpeg.
<<lessNote: Created with Kommander 1.3, not sure if it works with earlier Kommander.
Note: There is no error checking for now, so make sure you have a working ffmpeg with necessary codecs installed.
Note: Looks like some PSPs cant open h264 videos encoded with ffmpeg.
Download (0.033MB)
Added: 2007-01-22 License: GPL (GNU General Public License) Price:
704 downloads
MS Word to plaintext converter 0.1
MS Word to plaintext converter is a service menue easily converts MS Word documents to plain text files. more>>
MS Word to plaintext converter is a service menue easily converts MS Word documents to plain text files. The generated text file is named *.doc.txt.
I hope it is as useful for you as it is for me.
<<lessI hope it is as useful for you as it is for me.
Download (MB)
Added: 2006-04-26 License: GPL (GNU General Public License) Price:
1283 downloads
Multimedia Converter 1.5
Multimedia Converter project provides graphical environment to take full advantage some of the possibilities the ffmpeg & MPlaye more>>
Multimedia Converter project provides graphical environment to take full advantage some of the possibilities the ffmpeg and MPlayer.
So help to Convert between different media formats.
<<lessSo help to Convert between different media formats.
Download (0.30MB)
Added: 2007-07-01 License: GPL (GNU General Public License) Price:
894 downloads
YaHP Converter 1.2.17
YaHP is a java library that allows you to convert an HTML document into a PDF document. more>>
YaHP Converter is a java library that can convert an HTML document into a PDF document.
YaHP is licensed under the LGPL (GNU).
Method Summary
void convertToPdf(java.lang.String content, IHtmlToPdfTransformer.PageSize size, java.util.List hf, java.lang.String urlForBase, java.io.OutputStream out)
Convert the document in content in a PDF file.
void convertToPdf(java.net.URL url, IHtmlToPdfTransformer.PageSize size, java.util.List hf, java.io.OutputStream out)
Convert the document pointed by url in a PDF file.
private java.net.URL copyToTemp(java.net.URL url)
Copy the file pointed to url in the temp directory
private void init()
initialize the classloader, and the transforme.
Enhancements:
- A NPE which occurred if the FOP_TTF_FONT_PATH property is not set was fixed.
<<lessYaHP is licensed under the LGPL (GNU).
Method Summary
void convertToPdf(java.lang.String content, IHtmlToPdfTransformer.PageSize size, java.util.List hf, java.lang.String urlForBase, java.io.OutputStream out)
Convert the document in content in a PDF file.
void convertToPdf(java.net.URL url, IHtmlToPdfTransformer.PageSize size, java.util.List hf, java.io.OutputStream out)
Convert the document pointed by url in a PDF file.
private java.net.URL copyToTemp(java.net.URL url)
Copy the file pointed to url in the temp directory
private void init()
initialize the classloader, and the transforme.
Enhancements:
- A NPE which occurred if the FOP_TTF_FONT_PATH property is not set was fixed.
Download (29.3MB)
Added: 2007-07-06 License: LGPL (GNU Lesser General Public License) Price:
841 downloads
ISO - DAX - CSO Converter 1.08
ISO - DAX - CSO Converter is simple Kommander script for converting PSP UMD backups between three file formats ISO DAX and CSO. more>>
ISO - DAX - CSO Converter is simple Kommander script for converting PSP UMD backups between three file formats ISO DAX and CSO.
Script depends on:
Kommander
ciso v1.01
daxcr v0.3
kommander is part of kdewebdev3 packet
To compile ciso and daxcr gcc and zlib-devel packet must be installed.
Source for ciso is part of devhook SDK 0.46.0000 file is called dh046_SDK.rar and it can be found on various PSP forums and sites.
To compile ciso:
Extract source to some folder
in Konsole type:
gcc -o ciso ciso.c -lz
ciso will be created warnings are OK if there is no errors
to make ciso executable type:
chmod a+x ciso
copy ciso to path eg. "/usr/local/bin"
Source for daxcr is part of DAX ZISO loader and it can be found at http://dax.psp-tuts.net/DAXZISO_062.zip
To compile daxcr:
Extract source to some folder
in Konsole type:
make
daxcr will be created warnings are OK if there is no errors to make daxcr executable type:
chmod a+x daxcr
copy daxcr to path eg. "/usr/local/bin"
Enhancements:
- modification to POPStation part of GUI to support
- new Copstation v.2.21
- Rename POPstation to Copstation
- support for ISO extraction from EBOOT.PBP
<<lessScript depends on:
Kommander
ciso v1.01
daxcr v0.3
kommander is part of kdewebdev3 packet
To compile ciso and daxcr gcc and zlib-devel packet must be installed.
Source for ciso is part of devhook SDK 0.46.0000 file is called dh046_SDK.rar and it can be found on various PSP forums and sites.
To compile ciso:
Extract source to some folder
in Konsole type:
gcc -o ciso ciso.c -lz
ciso will be created warnings are OK if there is no errors
to make ciso executable type:
chmod a+x ciso
copy ciso to path eg. "/usr/local/bin"
Source for daxcr is part of DAX ZISO loader and it can be found at http://dax.psp-tuts.net/DAXZISO_062.zip
To compile daxcr:
Extract source to some folder
in Konsole type:
make
daxcr will be created warnings are OK if there is no errors to make daxcr executable type:
chmod a+x daxcr
copy daxcr to path eg. "/usr/local/bin"
Enhancements:
- modification to POPStation part of GUI to support
- new Copstation v.2.21
- Rename POPstation to Copstation
- support for ISO extraction from EBOOT.PBP
Download (0.047MB)
Added: 2007-02-04 License: GPL (GNU General Public License) Price:
17852 downloads
Java Units Generator and Converter 0.1
Java Units Generator and Converter (JUGC) is a Java tool and library for converting between measuring units. more>>
Java Units Generator and Converter (JUGC) is a Java tool and library for converting between measuring units.
It makes it possible to define units, their relationships and translations in files, to generate code from those definitions and deploy the generated code as a library in a Java project.
The generated code can then be used to convert values from one unit to another.
Enhancements:
- This initial version does the basic conversions using double precision floating point.
<<lessIt makes it possible to define units, their relationships and translations in files, to generate code from those definitions and deploy the generated code as a library in a Java project.
The generated code can then be used to convert values from one unit to another.
Enhancements:
- This initial version does the basic conversions using double precision floating point.
Download (0.010MB)
Added: 2007-01-12 License: BSD License Price:
1015 downloads
Kubuntu media converter 2.0 RC2
Kubuntu media converter is a Kommander script that can convert between multiple multimedia files. more>>
Kubuntu media converter is a Kommander script that can convert between multiple multimedia files.
It could be more improved..like multiple files converted..and a clean "map-format" ..because now is in a little bit of a mess...
If u like this prog check also:
-SoundKonverter
-Kvideoencoder
A big tnx to the Ubuntu italian community for support.
A special tan to almusaihij for makeing a Kubuntu .deb package and for sharing code and idea.
<<lessIt could be more improved..like multiple files converted..and a clean "map-format" ..because now is in a little bit of a mess...
If u like this prog check also:
-SoundKonverter
-Kvideoencoder
A big tnx to the Ubuntu italian community for support.
A special tan to almusaihij for makeing a Kubuntu .deb package and for sharing code and idea.
Download (0.036MB)
Added: 2007-02-26 License: GPL (GNU General Public License) Price:
996 downloads
KAddressBook to iPod Synchronisation 1.0
KAddressBook to iPod Synchronisation lets you synchronise your KAddressBook to your iPod by executing this simple script. more>>
KAddressBook to iPod Synchronisation lets you synchronise your KAddressBook to your iPod by executing this simple script.
The script makes a few modifications to the addressbook file to make it readable by the iPod.
Amarok recently released the ability to synchonise music to your iPod, so I was finally able to stop using iTunes to transfer my songs. However I was still stuck using the Mac to sync my addressbook.
Well not anymore, after some quick poking around, and a simple script, I am now able to transfer my complete KDE addressbook (including photo), with a simple command line.
Just mount the ipod, and execute the script, passing the ipod’s root directory as a parameter. That’s it! The script loads your KDE addressbook, makes a few simple modifications the iPod requires, and copies it across.
<<lessThe script makes a few modifications to the addressbook file to make it readable by the iPod.
Amarok recently released the ability to synchonise music to your iPod, so I was finally able to stop using iTunes to transfer my songs. However I was still stuck using the Mac to sync my addressbook.
Well not anymore, after some quick poking around, and a simple script, I am now able to transfer my complete KDE addressbook (including photo), with a simple command line.
Just mount the ipod, and execute the script, passing the ipod’s root directory as a parameter. That’s it! The script loads your KDE addressbook, makes a few simple modifications the iPod requires, and copies it across.
Download (0.004MB)
Added: 2006-08-14 License: GPL (GNU General Public License) Price:
1168 downloads
3gp converter 0.6
3gp converter is a Kommander script that uses ffmpeg as a backend and allows you convert the video files in 3gp format. more>>
3gp converter is a GUI (Kommander script) that uses ffmpeg as a backend and allows you convert the video files in 3gp format, which used at mobile phones.
You must have ffmpeg installed at you system compilled with AMR audio-codec fupport (check up ffmpeg manuals for instructions). Also you need Kommander installed(at least kommender executor).
You can set custom parameters of encoding,for video stream: resolution, bitrate, framerate, used codec (h263,mpeg4), one or two pass encoding.
For audio stream:bitrate,samplerate (AAC only), audio codec (amr_nb,AAC).
Enhancements:
- updated homepage and added some info
- sliders fix (now sliders moves when you set values manually)
- added prevew backend switch(ffplay/mplayer)
- added "exit" button
- added "stop" buttons for prevew
<<lessYou must have ffmpeg installed at you system compilled with AMR audio-codec fupport (check up ffmpeg manuals for instructions). Also you need Kommander installed(at least kommender executor).
You can set custom parameters of encoding,for video stream: resolution, bitrate, framerate, used codec (h263,mpeg4), one or two pass encoding.
For audio stream:bitrate,samplerate (AAC only), audio codec (amr_nb,AAC).
Enhancements:
- updated homepage and added some info
- sliders fix (now sliders moves when you set values manually)
- added prevew backend switch(ffplay/mplayer)
- added "exit" button
- added "stop" buttons for prevew
Download (0.035MB)
Added: 2007-05-13 License: GPL (GNU General Public License) Price:
1432 downloads
Sound Converter 0.9.7
Sound Converter can convert sound files to other formats. more>>
Sound Converter project can convert sound files to other formats.
A simple sound converter application for the GNOME environment. It reads anything the GStreamer library can read, and writes WAV, FLAC, MP3, and Ogg Vorbis files.
<<lessA simple sound converter application for the GNOME environment. It reads anything the GStreamer library can read, and writes WAV, FLAC, MP3, and Ogg Vorbis files.
Download (0.036MB)
Added: 2007-08-01 License: GPL v3 Price:
538 downloads
Rainbyte Video Converter 0.01 Beta
Rainbyte Video Converter is a Kommander script which helps you convert video and audio in an easy way. more>>
Rainbyte Video Converter is a Kommander script which helps you convert video and audio in an easy way.
Its based on Kommander, mencoder and ffmpeg and you can convert from/to any format supported by those programs.
Well, I hope that it will be usefull for you, thanks for all.
<<lessIts based on Kommander, mencoder and ffmpeg and you can convert from/to any format supported by those programs.
Well, I hope that it will be usefull for you, thanks for all.
Download (0.012MB)
Added: 2007-02-27 License: GPL (GNU General Public License) Price:
985 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above ideal dvd to ipod converter 2.4.0 search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed