<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://fileformats.archiveteam.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://fileformats.archiveteam.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Carl</id>
		<title>Just Solve the File Format Problem - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://fileformats.archiveteam.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Carl"/>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Special:Contributions/Carl"/>
		<updated>2026-04-16T15:53:12Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.19.2</generator>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/FLAC</id>
		<title>FLAC</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/FLAC"/>
				<updated>2012-11-10T04:16:02Z</updated>
		
		<summary type="html">&lt;p&gt;Carl: Added MediaMonkey player&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|&lt;br /&gt;
|[[File Formats]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[Electronic File Formats]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[Audio]]&lt;br /&gt;
| &amp;gt;&lt;br /&gt;
|[[FLAC]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
FLAC is a file format and codec for losslessly compressed audio. It can store audio with a PCM bit resolution up to 32 bits per sample and sampling rates up to 640 kHz.&lt;br /&gt;
&lt;br /&gt;
The format is open and royalty-free. The reference implementation is cross-platform and dual-licensed, command-line utilities (e.g. encoder, decoder and metadata editor) use GNU GPL and code libraries use BSD.&lt;br /&gt;
&lt;br /&gt;
FLAC is suitable for archiving for many reasons:&lt;br /&gt;
* open format&lt;br /&gt;
* support for metadata tagging&lt;br /&gt;
* lossless (no generation loss if you need to convert to another format)&lt;br /&gt;
* disk size effective (audio is typically reduced to 50-60% of original size)&lt;br /&gt;
* data integrity&lt;br /&gt;
* error resistant (bit faults are contained within a frame, typically a fraction of a second)&lt;br /&gt;
&lt;br /&gt;
== Playback ==&lt;br /&gt;
=== Hardware ===&lt;br /&gt;
* Squeezebox&lt;br /&gt;
* Transporter&lt;br /&gt;
* Sonos&lt;br /&gt;
&lt;br /&gt;
=== Software ===&lt;br /&gt;
* Amarok - cross-platform, open source&lt;br /&gt;
* foobar2000 - Windows, non-commercial&lt;br /&gt;
* VLC - cross-platform, open source&lt;br /&gt;
* Winamp - Windows, commercial&lt;br /&gt;
* MediaMonkey - Windows, commercial&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [http://flac.sourceforge.net/ Home of FLAC project]&lt;br /&gt;
* [http://flac.sourceforge.net/format.html FLAC format description]&lt;/div&gt;</summary>
		<author><name>Carl</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/DBase_III</id>
		<title>DBase III</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/DBase_III"/>
				<updated>2012-11-10T04:12:29Z</updated>
		
		<summary type="html">&lt;p&gt;Carl: Added links to dBase file structure sites&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
| name                   = dBase Database File&lt;br /&gt;
| extensions             = *.dbf&lt;br /&gt;
| pronom                 = x-fmt/9&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This article describes how to export data out of a dBase III Table File (*.dbf). &lt;br /&gt;
&lt;br /&gt;
=== Opening the data with Libre Office ===&lt;br /&gt;
It is possible to import *.dbf files into Libre Office (or Open Office) Calc or Base: http://help.libreoffice.org/Calc/Importing_and_Exporting_dBASE_Files . &lt;br /&gt;
&lt;br /&gt;
Libre Office will try to recognize the character encoding of the data and preselect this option in the import window. Once a file imported, it can be saved in/exported to a variety of different formats. &lt;br /&gt;
&lt;br /&gt;
=== Importing the data directly into a mySQL database ===&lt;br /&gt;
Alternatively the data can directly be imported into a running mySQL database using the linux program &amp;lt;code&amp;gt;[http://manpages.ubuntu.com/manpages/lucid/man1/dbf2mysql.1.html dbf2mysql]&amp;lt;/code&amp;gt;. Importing the data directly however could cause some problems with the character encoding for non ASCII characters.&lt;br /&gt;
&lt;br /&gt;
If the mysql server is already running, the following commands will import the data:&lt;br /&gt;
 user@linux:~$ mysql -u root -p&lt;br /&gt;
 mysql&amp;gt; create database database_name;&lt;br /&gt;
 mysql&amp;gt; exit&lt;br /&gt;
 user@linux:~$ sudo apt-get install dbf2mysql&lt;br /&gt;
 user@linux:~$ dbf2mysql -vvv -c -f -d database_name -U root -P password DATA_FILE.DBF &lt;br /&gt;
&lt;br /&gt;
The data can then be exported using &amp;lt;code&amp;gt;mysqldump&amp;lt;/code&amp;gt;&lt;br /&gt;
 user@linux:~$ mysqldump -u root -p database_name &amp;gt; data_export.sql&lt;br /&gt;
&lt;br /&gt;
=== Additional Weblinks ===&lt;br /&gt;
* [http://en.wikipedia.org/wiki/DBase Wikipedia article about dBase]&lt;br /&gt;
* [http://www.nationalarchives.gov.uk/pronom/x-fmt/9 dBase III entry in PRONOM]&lt;br /&gt;
* [http://www.digitalpreservation.gov/formats/fdd/fdd000325.shtml dBase entry at digitalpreservation.gov]&lt;br /&gt;
* [http://www.dbf2002.com/dbf-file-format.html DBF File structure]&lt;br /&gt;
* [http://www.dbase.com/Knowledgebase/INT/db7_file_fmt.htm dBase File Structure at dBase knowledge base]&lt;/div&gt;</summary>
		<author><name>Carl</name></author>	</entry>

	</feed>