Coder Social home page Coder Social logo

randallflagg / id3_ansi2unicode Goto Github PK

View Code? Open in Web Editor NEW
1.0 3.0 0.0 23 KB

Convert ID3 tags in MP3 files(but not only) from ANSI to unicode format

C# 100.00%
id3-ansi2unicode id3 id3v2 id3v1 id3-reader id3-writer id3v2-tag id3-charset-converter mp3 mp4

id3_ansi2unicode's Introduction

ID3 ANSI2Unicode Convert

ID3 ANSI2Unicode Convert for .NET Core

Throughput Graph

License: MIT Pull Requests Welcome subject-music-data id3 Build status

ID3 ANSI2Unicode Convert for .NET Core is an effort to port an entire mp3 library from ANSI encoding to Unicode in order to have better support using modern players that don't support ANSI.

This utility uses the IDSharp for.NET Core library but it can also be used with the id3 library, if wanted for any reason.

NOTE - The code in this repo has not been thoroughly tested.

This version of the utility should support .NET Core 1.1 and 2.0, as well as .NET Standard 1.3, 1.5 and 2.0 but was tested only against 2.x.

Future Plans

  • A javascript version; probably based on Node.js

Getting Started or Wanting to Help

  1. Fork and/or Clone this repo to a desired location(e.g. C:\Projects\ID3)
  2. Fork or Clone the following repo to the same location as above(e.g. C:\Projects\ID3): https://github.com/RandallFlagg/IdSharpCore
  3. Try the example below to get started

Example

using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;

namespace Example
{
    class Program
    {
        public static void Main(string[] args)
        {
            Console.WriteLine("Start Converting!");
            IID3Converter converter = new ID3SharpConverter();
            var recursive = false;
            var configuration = (
                path: @"C:\My Audio Files",
                ext: "*.mp3",
                searchOption: recursive ? SearchOption.AllDirectories : SearchOption.TopDirectoryOnly
            );

            if (converter.Init(configuration))
            {
                Console.WriteLine("Before:");
                converter.PrintTag();

                converter.Execute();

                Console.WriteLine("After:");
                converter.PrintTag();

                Console.WriteLine("Done Converting!");
            }
        }
    }
}

id3_ansi2unicode's People

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

id3_ansi2unicode's Issues

ID3.Net

Hi,
I am using the ID3.net in this small utility I wrote.
Hope I am not being rude but I wanted to know if there is any chance that you two, @jcoutch and @JeevanJames, will join forces?
You are working on the same project but jcoutch has Nuget support while JeevanJames has a more complete library. Maybe there are more big differences that I missed out.

BTW, I am using also IdSharpCore if you need some code references.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.