Exemplo n.º 1
0
        static private Media _createVideoMedia(string fileName, TagLib.File file)
        {
            VideoMedia media = new VideoMedia();

            media.MediaType = t_MediaType.VIDEO;
            if (file != null)
            {
                media.Year  = file.Tag.Year;
                media.Title = file.Tag.Title != "" && file.Tag.Title != null ? file.Tag.Title : Path.GetFileNameWithoutExtension(fileName);
                foreach (TagLib.ICodec codec in file.Properties.Codecs)
                {
                    TagLib.IAudioCodec acodec = codec as TagLib.IAudioCodec;
                    TagLib.IVideoCodec vcodec = codec as TagLib.IVideoCodec;
                    if (acodec != null && (acodec.MediaTypes & TagLib.MediaTypes.Audio) != TagLib.MediaTypes.None)
                    {
                        media.Bitrate = acodec.AudioBitrate;
                    }
                    if (vcodec != null && (vcodec.MediaTypes & TagLib.MediaTypes.Video) != TagLib.MediaTypes.None)
                    {
                        media.Width  = vcodec.VideoWidth;
                        media.Height = vcodec.VideoHeight;
                    }
                    break;
                }
            }
            else
            {
                media.Title = Path.GetFileNameWithoutExtension(fileName);
            }
            return(media);
        }
Exemplo n.º 2
0
        static private Media _createAudioMedia(string fileName, TagLib.File file)
        {
            AudioMedia media = new AudioMedia();

            media.MediaType = t_MediaType.AUDIO;
            if (file != null)
            {
                media.Artist = file.Tag.FirstPerformer;
                media.Album  = file.Tag.Album;
                media.Year   = file.Tag.Year;
                media.Title  = file.Tag.Title != "" && file.Tag.Title != null ? file.Tag.Title : Path.GetFileNameWithoutExtension(fileName);
                foreach (TagLib.ICodec codec in file.Properties.Codecs)
                {
                    TagLib.IAudioCodec acodec = codec as TagLib.IAudioCodec;
                    if (acodec != null && (acodec.MediaTypes & TagLib.MediaTypes.Audio) != TagLib.MediaTypes.None)
                    {
                        media.Bitrate = acodec.AudioBitrate;
                    }
                    break;
                }
            }
            else
            {
                media.Title = Path.GetFileNameWithoutExtension(fileName);
            }
            return(media);
        }
Exemplo n.º 3
0
        /// <summary>
        /// Display the tags for the MP3 file. This will print to the console in a line break way the tags and their values of the MP3 file.
        /// </summary>
        /// <returns>A string with linebreaks that have the tag and their values for the ID3 tag.</returns>
        public String DisplayTags()
        {
            StringBuilder tags = new StringBuilder();

            tags.AppendLine("--------------TAGS-----------------");

            tags.AppendLine("Tags on disk:   " + tagfile.TagTypesOnDisk);
            tags.AppendLine("Tags in object: " + tagfile.TagTypes);
            tags.AppendLine(String.Empty);

            tags.AppendLine("Grouping: " + tagfile.Tag.Grouping);
            tags.AppendLine("Title: " + tagfile.Tag.Title);
            tags.AppendLine("TitleSort: " + tagfile.Tag.TitleSort);
            tags.AppendLine("Album Artists:" + String.Join(",", tagfile.Tag.AlbumArtists));
            tags.AppendLine("Album Artists Sort: " + String.Join(",", tagfile.Tag.AlbumArtistsSort));
            tags.AppendLine("Performers: " + String.Join(",", tagfile.Tag.Performers));
            tags.AppendLine("Performers Sort: " + String.Join(",", tagfile.Tag.PerformersSort));
            tags.AppendLine("Composers: " + String.Join(",", tagfile.Tag.Composers));
            tags.AppendLine("Composers Sort: " + String.Join(",", tagfile.Tag.ComposersSort));
            tags.AppendLine("Conductor: " + tagfile.Tag.Conductor);
            tags.AppendLine("Album: " + tagfile.Tag.Album);
            tags.AppendLine("Album Sort: " + tagfile.Tag.AlbumSort);
            tags.AppendLine("Comment: " + tagfile.Tag.Comment);
            tags.AppendLine("Copyright: " + tagfile.Tag.Copyright);
            tags.AppendLine("Genres: " + String.Join(",", tagfile.Tag.Genres));
            tags.AppendLine("BPM: " + tagfile.Tag.BeatsPerMinute);
            tags.AppendLine("Year: " + tagfile.Tag.Year);
            tags.AppendLine("Track: " + tagfile.Tag.Track);
            tags.AppendLine("TrackCount: " + tagfile.Tag.TrackCount);
            tags.AppendLine("Disc: " + tagfile.Tag.Disc);
            tags.AppendLine("DiscCount: " + tagfile.Tag.DiscCount);

            tags.AppendLine("Lyrics: " + tagfile.Tag.Lyrics);
            tags.AppendLine("Media Types:     " + tagfile.Properties.MediaTypes);

            foreach (TagLib.ICodec codec in tagfile.Properties.Codecs)
            {
                TagLib.IAudioCodec acodec = codec as TagLib.IAudioCodec;
                TagLib.IVideoCodec vcodec = codec as TagLib.IVideoCodec;

                if (acodec != null && (acodec.MediaTypes & TagLib.MediaTypes.Audio) != TagLib.MediaTypes.None)
                {
                    tags.AppendLine("Audio Properties : " + acodec.Description);
                    tags.AppendLine("Bitrate:    " + acodec.AudioBitrate);
                    tags.AppendLine("SampleRate: " + acodec.AudioSampleRate);
                    tags.AppendLine("Channels:   " + acodec.AudioChannels);
                }

                if (vcodec != null && (vcodec.MediaTypes & TagLib.MediaTypes.Video) != TagLib.MediaTypes.None)
                {
                    tags.AppendLine("Video Properties : " + vcodec.Description);
                    tags.AppendLine("Width:      " + vcodec.VideoWidth);
                    tags.AppendLine("Height:     " + vcodec.VideoHeight);
                }
            }

            if (tagfile.Properties.MediaTypes != TagLib.MediaTypes.None)
            {
                tags.AppendLine("Length:     " + tagfile.Properties.Duration);
            }

            TagLib.IPicture[] pictures = tagfile.Tag.Pictures;

            tags.AppendLine("Embedded Pictures: " + pictures.Length);

            foreach (TagLib.IPicture picture in pictures)
            {
                tags.AppendLine(picture.Description);
                tags.AppendLine("   MimeType: " + picture.MimeType);
                tags.AppendLine("   Size:     " + picture.Data.Count);
                tags.AppendLine("   Type:     " + picture.Type);
            }

            tags.AppendLine("--------------END------------------");

            return(tags.ToString());
        }