Main > Free Download Search >

Free write id3v2.x.y software for linux

write id3v2.x.y

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5080
wipe 2.2.0

wipe 2.2.0


Wipe is a file and block device wiping utility. more>>
Wipe is a file and block device wiping utility. It is based on work by Peter Gutmann.
There are some low level issues that must be taken into consideration. One of these is that there must be some sort of write barrier between passes. Wipe uses fdatasync(2)
(or fsync(2)) as a write barrier, or if fsync(2) isnt available, the file is opened with the O_DSYNC or O_SYNC flag.
For wipe to be effective, each pass must be completely written. To ensure this, the drive must support some form of a write barrier, write cache flush, or write cache disabling. SCSI supports ordered command tags, has a force
media access bit for commands, and write cache can be disable on mode page 8. IDE/ATA drives support write cache flushes and write cache disabling.
Unfortunetly, not all drives actually disable write cache when yjhis is set up.Those drives are broken. Write caching should always be disabled, unless your system is battery backed and always powers down cleanly.
Enhancements:
- typo in Makefile.in (Ricardo Branco)
<<less
Download (0.068MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1947 downloads
Sprite 3.21

Sprite 3.21


Sprite is a Perl module to manipulate text delimited databases using SQL. more>>
Sprite is a Perl module to manipulate text delimited databases using SQL.

SYNOPSIS

use Sprite;

$rdb = new Sprite;

$rdb->set_delimiter (-Read => ::) ## OR: (Read, ::);
$rdb->set_delimiter (-Write => ::) ## OR: (Write, ::);

$rdb->set_os (Win95);

## Valid arguments (case insensitive) include:
##
## Unix, Win95, Windows95, MSDOS, NT, WinNT, OS2, VMS,
## MacOS or Macintosh. Default determined by $^O.

$rdb->set_lock_file (c:win95tmpSprite.lck, 10);

$rdb->set_db_dir (Mac OS:Perl 5:Data) || die "Cant access dir!n";

$data = $rdb->sql (<<less
Download (0.014MB)
Added: 2007-05-16 License: Perl Artistic License Price:
900 downloads
LibMSWrite 0.9

LibMSWrite 0.9


LibMSWrite is a free, platform-independent C++ filter library that can read and write the Microsoft Write 3.0/3.1 document. more>>
LibMSWrite is a free, platform-independent C++ filter library that can read and write the Microsoft Write 3.0/3.1 document format. LibMSWrite library supports what is believed to be the complete featureset of the Write file format.

It is fully portable across 32-bit and 64-bit architectures and has no dependencies other than C++. Both Linux, Windows and any other system that supports C++ is supported (STL is not required).

It employs XML-based code generation techniques to simplify the process of manipulating binary Write data structures, in a portable manner.

What can LibMSWrite do for me?

LibMSWrite provides a comprehensive API that serves as a significant abstraction layer for the Microsoft Write file format. Its primary use is in the "backend" of Write Import and Export filters for office suites. LibMSWrite simplifies the creation of such filters because developers no longer need to know the innards of the Write file format.

LibMSWrite forms the basis of the Write filters for KWord >= 1. (http://www.koffice.org), the word processor that complements the K Desktop Environment (http://www.kde.org), which is the most popular free GUI for Unix-based systems (e.g. Linux, FreeBSD).

The LibMSWrite Project does not just provide a library. It also includes:

- mswrite2html: program which converts Write files to XHTML
- list.h: alternative linked list implementation to STL
- xmlparser.cpp: quick & dirty XML parser
- wmf.cpp: WMF parser and BMP-to-WMF converter

Microsoft Write ?

Microsoft Write was the word processor included in Microsoft Windows 3.x (now more than a decade old). With the notable exception of tables, it supported all of the features needed for writing simple documents (essays, book reviews, reports etc.). The Microsoft Write format is almost completely unrelated to the, now (2003) de-facto, Microsoft Word format.

Microsoft Write files usually have the extension .WRI. Although, there are some .WRI files that are actually RTFs.

LibMSWrite was written because there was a need to guarantee that Write documents could continue to be read in the face of diminishing compatibility for old, binary document file formats. For instance, this is important if you have 7 years worth of work in the format...

The LibMSWrite project is not endorsed by Microsoft.
<<less
Download (0.074MB)
Added: 2006-03-30 License: BSD License Price:
1303 downloads
pyXLWriter 0.4a3

pyXLWriter 0.4a3


pyXLWriter is a Python library for generating Excel spreadsheets. more>>
pyXLWriter is a Python library for generating Excel spreadsheets. Its a port of John McNamaras Spreadsheet::WriteExcel Perl module.
To install run python setup.py install in the root of the distribution.
Enhancements:
- Simple Worksheet.write correction (thanks to Frank Tobin)
- Corrected authors e-mail: fufff@users.sourceforge.net
<<less
Download (0.15MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1200 downloads
MP3::Tag::ID3v2 0.9708

MP3::Tag::ID3v2 0.9708


MP3::Tag::ID3v2 is a Read / Write ID3v2.x.y tags from mp3 audio files. more>>
MP3::Tag::ID3v2 is a Read / Write ID3v2.x.y tags from mp3 audio files.

SYNOPSIS

MP3::Tag::ID3v2 supports * Reading of ID3v2.2.0 and ID3v2.3.0 tags (some ID3v2.4.0 frames too) * Writing of ID3v2.3.0 tags

MP3::Tag::ID3v2 is designed to be called from the MP3::Tag module.

use MP3::Tag;
$mp3 = MP3::Tag->new($filename);

# read an existing tag
$mp3->get_tags();
$id3v2 = $mp3->{ID3v2} if exists $mp3->{ID3v2};

# or create a new tag
$id3v2 = $mp3->new_tag("ID3v2");

See MP3::Tag for information on the above used functions.

* Reading a tag

$frameIDs_hash = $id3v2->get_frame_ids(truename);

foreach my $frame (keys %$frameIDs_hash) {
my ($name, @info) = $id3v2->get_frame($frame);
for my $info (@info) {
if (ref $info) {
print "$name ($frame):n";
while(my ($key,$val)=each %$info) {
print " * $key => $valn";
}
} else {
print "$name: $infon";
}
}
}
* Adding / Changing / Removing / Writing a tag
$id3v2->add_frame("TIT2", "Title of the song");
$id3v2->change_frame("TALB","Greatest Album");
$id3v2->remove_frame("TLAN");
$id3v2->write_tag();
* Removing the whole tag
$id3v2->remove_tag();
* Get information about supported frames
%tags = $id3v2->supported_frames();
while (($fname, $longname) = each %tags) {
print "$fname $longname: ",
join(", ", @{$id3v2->what_data($fname)}), "n";
}

<<less
Download (0.17MB)
Added: 2006-11-07 License: Perl Artistic License Price:
1091 downloads
RubyFilter 0.12

RubyFilter 0.12


RubyFilter provides a Ruby email filtering program and library. more>>
RubyFilter provides a Ruby email filtering program and library.

RubyFilter is a Ruby email filtering program that can serve as a replacement for email delivery programs such as procmail.

It is also a Ruby module which provides classes that make it easy to write programs that filter and deliver email.

<<less
Download (0.059MB)
Added: 2007-04-17 License: BSD License Price:
921 downloads
DWR 2.0 RC4

DWR 2.0 RC4


DWR is a Java open source library that helps developers wanting to write Web sites that include AJAX technology. more>>
DWR is a Java open source library that helps developers wanting to write Web sites that include AJAX technology.
DWR project allows code in a Web browser to use Java functions running on a Web server as if it was in the browser.
Enhancements:
- Changes include a JavaScript proxy API, reverse AJAX, and new security features.
- There were also security and bugfixes.
Enhancements:
- This release adds Guice support and fixes many reverse AJAX bugs.
<<less
Download (0.17MB)
Added: 2007-04-11 License: The Apache License 2.0 Price:
928 downloads
tcpdump 3.9.7

tcpdump 3.9.7


tcpdump is a packet filtering library that works with libcap. more>>
tcpdump is a handy little library which provides a packet filtering mechanism based on the BSD packet filter (BPF).

Most notably, tcpdump needs this to work, and there is also a perl module (still in beta) which can use this as well. In plain english, if you want to write your own network traffic analyzer, this is the place to start.
<<less
Download (0.85MB)
Added: 2007-07-24 License: BSD License Price:
826 downloads
Regular Statement String 2.5.7

Regular Statement String 2.5.7


Regular Statement String (RSS) provides several libraries in C, Java, and COM. more>>
Regular Statement String (RSS) provides several libraries in C, Java, and COM to implement and demonstrate the key-value development method using well-designed "strings" (RSS) as the media. Regular Statement String also shows a way to write "Process Oriented" applications.
Enhancements:
- This release adds an implementation for SUN Solaris (SPARC).
<<less
Download (0.33MB)
Added: 2007-04-12 License: Freeware Price:
926 downloads
FFTscope 1.0.5

FFTscope 1.0.5


FFTscope is a nice visualization plugin for the AlsaPlayer. more>>
FFTscope is a nice visualization plugin for the AlsaPlayer.

The main purpose of this project is to demonstrate how to write a vis plugin for the AlsaPlayer visualization API.

<<less
Download (MB)
Added: 2007-06-12 License: GPL (GNU General Public License) Price:
865 downloads
abrowse 0.0.2b

abrowse 0.0.2b


abrowse is a program which allows you to read AKAI S1000/3000 sample CDs and write the samples into wav audio format. more>>
abrowse is a program which allows you to read AKAI S1000/3000 sample CDs and write the samples into wav audio format. It is written in perl.
<<less
Download (0.11MB)
Added: 2006-07-22 License: GPL (GNU General Public License) Price:
1193 downloads
QFE 0.5.1

QFE 0.5.1


QFE is full-featured FTN message editor with a graphical interface written on C++/Qt. more>>
QFE is full-featured FTN message editor with a graphical interface. QFE is written on C++/Qt and does not depend on either KDE or Gnome.
All operations with FIDO message base use fidoconfig and smapi packages from HUSKY project.
I write qfe for Linux, but it works on Win32, and in theory, it should compile & work on all Qt-supported platforms.
Enhancements:
- Fix update squish base UID when write new message.
- Fix write new message & delete message in Jam-areas.
- Fix UU & Base64 decoder for work with badly-encoded parts.
- Rewrite "CHRS" and "CHARSET" kludge handler.
- Other minor fixes.
<<less
Download (0.54MB)
Added: 2007-01-27 License: GPL (GNU General Public License) Price:
1007 downloads
Greenfoot 1.2.1

Greenfoot 1.2.1


Greenfoot is an integrated development environment that makes it easy to write games and simulations in Java. more>>
Greenfoot is an integrated development environment that makes it easy to write games and simulations in Java.
It comes with a broad range of demo scenarios and documentation that gets newcomers started very quickly. Greenfoot may be used to learn or teach programming, or just to write a cool game and maybe put it up on a Web site. (it can export the game to a Web page).
The project was originally developed for school age learners, but is now used by all age groups.
<<less
Download (4.4MB)
Added: 2007-06-14 License: Freeware Price:
866 downloads
INews 0.8

INews 0.8


INews is a system to write and publish newspapers on the internet. more>>
INews is a system to write and publish newspapers on the internet.

INews is different, because:

* the newspaper has a traditional structure, with pages and articles distributed like in a paper newspaper.
* the newspaper is not published using HTML, but can be read with a java application.

INews is a complete system, composed by:

* a server application.
* an editor application, to write and publish editions of the newspaper.
* a reader application, to read the last edition of the newspaper on the internet.
* an administration application.

Purposes of the system are:

* speed and simplicity to write and publish the newspaper:
if the articles are ready as RTF documents (written with the most common word processors) and the pictures are ready, it should be a matter of minutes to publish the newspaper.
* to work in team to publish the newspaper.
* to keep an archive with all the articles, images and editions of the newspaper.
* to be open: all the articles and images are saved in the filesystem in a directory tree.

It is possible to build new parts types (like articles and images) and add them to the system.
<<less
Download (0.92MB)
Added: 2005-09-23 License: Freeware Price:
1495 downloads
pygobject 2.13.2

pygobject 2.13.2


pygobject archive contains bindings for the GObject, to be used in Python. more>>
pygobject archive contains bindings for the GObject, to be used in Python.

It is a fairly complete set of bindings, its already rather useful, and is usable to write moderately complex programs. (see the examples directory for some examples of the simpler programs you could write).

<<less
Download (0.42MB)
Added: 2007-07-07 License: LGPL (GNU Lesser General Public License) Price:
843 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5