iTunes Playlist Export 1.5 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News iTunes Playlist Export 1.5 (Default branch)
# 1  
Old 11-20-2008
iTunes Playlist Export 1.5 (Default branch)

iTunes Export provides the ability to export iTunes Playlists to the standard .m3u file format. Unfortunately, this feature is not included in the iTunes application and is extremely useful for users who wish to use iTunes with other applications or devices. iTunes Export is written in C# (.Net). iTunes Export provides a Command Line version (tested on Mono) and a GUI version, as well as a library that developers can use in their own applications. License: BSD License (revised) Changes:
An issue with invalid characters in playlist filenames was fixed. Some characters are valid in playlist names (within iTunes), but not valid in filenames for the resulting playlist files. Multi-Language support was added for the GUI version. Descriptions are now available in English and French. The Library reader and all playlist writers were updated to use UTF-8 encoding. The export routine was changed to include audio streams. Disabled tracks (tracks that are unchecked in iTunes) are now ignored. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
MDBTools(1)															       MDBTools(1)

NAME
mdb-schema - Generate schema creation DDL SYNOPSIS
mdb-schema [options] database [backend] DESCRIPTION
mdb-schema is a utility program distributed with MDB Tools. It produces DDL (data definition language) output for the given database. This can be passed to another database to create a replica of the original access table format. OPTIONS
-T <table>, --table <table> Single table option. Create schema for this table only. Default is to export all tables. -N namespace Prefix identifiers with namespace. --drop-table Issue DROP TABLE statement. --no-drop-table Don't issue DROP TABLE statement. This is the default. --not-null Issue NOT NULL constraints. This is the default. --no-not-null Don't issue NOT NULL constraints. --default-values Issue DEFAULT values. --no-default-values Don't issue DEFAULT values. This is the default. --not-empty Issue CHECK <> '' constraints. --no-not-empty Don't issue CHECK <> '' constraints. This is the default. --indexes Export INDEXes. This is the default. --no-indexes Don't export INDEXes. --relations Export foreign keys constraints. This is the default. --no-relations Don't export foreign keys constraints. backend Specifies target DDL dialect. Supported values are access, sybase, oracle, postgres, and mysql. If not specified the generated DDL will be in access format. ENVIRONMENT
MDB_JET3_CHARSET Defines the charset of the input JET3 (access 97) file. Default is CP1252. See iconv(1). MDBICONV Defines the output charset to use for the SQL file. Default is UTF-8. mdbtools must have been compiled with iconv. MDBOPTS semi-column separated list of options: o use_index o no_memo o debug_like o debug_write o debug_usage o debug_ole o debug_row o debug_props o debug_all is a shortcut for all debug_* options NOTES
HISTORY
mdb-schema first appeared in MDB Tools 0.1. SEE ALSO
gmdb2(1) mdb-export(1) mdb-hexdump(1) mdb-prop(1) mdb-sql(1) mdb-ver(1) mdb-array(1) mdb-header(1) mdb-parsecsv(1) mdb-tables(1) AUTHORS
The mdb-schema utility was written by Brian Bruns and others. BUGS
Relationships and other features may not be supported by all databases. Access datatypes are mapped to their closest counterparts in the target backend. This may not always yield an exact fit. 0.7 13 July 2013 MDBTools(1)