Как узнать обложку медиафайла? - C#

Узнай цену своей работы

Формулировка задачи:

Использую WMPLib. Как узнать обложку mp3 файла? В идеале без использования TagLib.

Решение задачи: «Как узнать обложку медиафайла?»

textual
Листинг программы
  1. using System;
  2. using System.IO;
  3. using System.Linq;
  4.  
  5.  
  6. class SimpleExtractor
  7. {
  8.  
  9.     // find position of subarray
  10.     public static int GetPos(byte[] source, byte[] pattern)
  11.     {
  12.         for (int i = 0; i < source.Length; i++)
  13.         {
  14.             if (i + pattern.Length < source.Length)
  15.             {
  16.                 byte[] result = new byte[pattern.Length];
  17.                 Array.Copy(source, i, result, 0, pattern.Length);
  18.                 if (result.
  19.                     SequenceEqual(pattern))
  20.                 {
  21.                     return i;
  22.                 }
  23.             }
  24.         }
  25.         return -1;
  26.     }
  27.  
  28.     // extract subarray
  29.     public static bool GetSubArray(byte[] source, byte[] beg,
  30.                                               byte[] end, out byte[] subArr)
  31.     {
  32.         int stPos = 0,
  33.             finPos = 0;
  34.              subArr = null;
  35.  
  36.         stPos = GetPos(source, beg);
  37.  
  38.         if (stPos != -1)
  39.             if ((finPos = GetPos(source, end)) != -1)
  40.             {
  41.                 finPos += end.Length;
  42.                 subArr = source.Skip(stPos).Take(finPos - stPos).ToArray();
  43.                 return true;
  44.             }
  45.        
  46.         return false;
  47.     }
  48.  
  49.     static void Main()
  50.     {
  51.         // JPEG signature
  52.         //-----------------------------------
  53.         byte[] start = new byte[] { 0xFF, 0xD8, 0xFF, 0xE0 };    // start jpeg
  54.         byte[] end = new byte[] { 0xFF, 0xD9 };                  // end jpeg
  55.  
  56.         try
  57.         {
  58.             // read file
  59.             //-----------------------------------
  60.             byte[] barray = File.ReadAllBytes("E:\\music\\Iggy_Azalea-Black_Widow_feat._Rita_Ora_.mp3");
  61.  
  62.             byte[] imgArr = null;
  63.  
  64.             //-----------------------------------
  65.             // extract byte array of image
  66.             if (GetSubArray(barray, start, end, out imgArr))
  67.                 // save to file      
  68.                 File.WriteAllBytes("D:\\NewImage.jpeg", imgArr);
  69.         }
  70.         catch (Exception ex)
  71.         {
  72.  
  73.             Console.Write(ex.Message);
  74.         }
  75.  
  76.         Console.ReadKey(true);
  77.     }
  78. }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

13   голосов , оценка 3.923 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы