CodePlexProject Hosting for Open Source Software
I found some Guid to your "TODO" list
/// <summary> /// MPEG-4 and AAC Audio Types /// http://msdn.microsoft.com/en-us/library/windows/desktop/dd317599(v=vs.85).aspx /// Reference : wmcodecdsp.h /// </summary> [FieldDescription("MPEG-4 and AAC Audio Types")] public static readonly Guid MEDIASUBTYPE_RAW_AAC1 = new Guid("000000ff-0000-0010-8000-00aa00389b71"); /// <summary> /// Dolby Audio Types /// http://msdn.microsoft.com/en-us/library/windows/desktop/dd317599(v=vs.85).aspx /// Reference : wmcodecdsp.h /// </summary> [FieldDescription("Dolby Audio Types")] public static readonly Guid MEDIASUBTYPE_DVM = new Guid("00002000-0000-0010-8000-00aa00389b71"); /// <summary> /// Dolby Audio Types /// http://msdn.microsoft.com/en-us/library/windows/desktop/dd317599(v=vs.85).aspx /// Reference : wmcodecdsp.h /// </summary> [FieldDescription("Dolby Audio Types")] public static readonly Guid MEDIASUBTYPE_DOLBY_DDPLUS = new Guid("a7fb87af-2d02-42fb-a4d4-05cd93843bdd"); /// <summary> /// μ-law coding /// http://msdn.microsoft.com/en-us/library/windows/desktop/dd390971(v=vs.85).aspx /// Reference : Ksmedia.h /// </summary> [FieldDescription("")] public static readonly Guid KSDATAFORMAT_SUBTYPE_MULAW = new Guid("00000007-0000-0010-8000-00aa00389b71"); /// <summary> /// Adaptive delta pulse code modulation (ADPCM) /// http://msdn.microsoft.com/en-us/library/windows/desktop/dd390971(v=vs.85).aspx /// Reference : Ksmedia.h /// </summary> [FieldDescription("")] public static readonly Guid KSDATAFORMAT_SUBTYPE_ADPCM = new Guid("00000002-0000-0010-8000-00aa00389b71"); /// <summary> /// Dolby Digital Plus formatted for HDMI output. /// http://msdn.microsoft.com/en-us/library/windows/hardware/ff538392(v=vs.85).aspx /// Reference : internet /// </summary> [FieldDescription("")] public static readonly Guid KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_DIGITAL_PLUS = new Guid("0000000a-0cea-0010-8000-00aa00389b71"); /// <summary> /// ????? /// ????? /// Reference : wmcodecdsp.h /// </summary> [FieldDescription("")] public static readonly Guid MEDIASUBTYPE_MSAUDIO1 = new Guid("00000160-0000-0010-8000-00aa00389b71"); // TODO: find out what these are, and add them: // {00000031-0000-0010-8000-00aa00389b71} // {0000000b-0000-0010-8000-00aa00389b71} // {00000011-0000-0010-8000-00aa00389b71}
MEDIASUBTYPE_MSAUDIO1 exists in the file wmcodecdsp.h. but I have not found any doc
/// <summary> /// MPEG-4 and AAC Audio Types /// http://msdn.microsoft.com/en-us/library/windows/desktop/dd317599(v=vs.85).aspx /// Reference : wmcodecdsp.h /// </summary> [FieldDescription("MPEG-4 and AAC Audio Types")] public static readonly Guid MEDIASUBTYPE_RAW_AAC1 = new Guid("000000ff-0000-0010-8000-00aa00389b71"); /// <summary> /// Dolby Audio Types /// http://msdn.microsoft.com/en-us/library/windows/desktop/dd317599(v=vs.85).aspx /// Reference : wmcodecdsp.h /// </summary> [FieldDescription("Dolby Audio Types")] public static readonly Guid MEDIASUBTYPE_DVM = new Guid("00002000-0000-0010-8000-00aa00389b71"); /// <summary> /// Dolby Audio Types /// http://msdn.microsoft.com/en-us/library/windows/desktop/dd317599(v=vs.85).aspx /// Reference : wmcodecdsp.h /// </summary> [FieldDescription("Dolby Audio Types")] public static readonly Guid MEDIASUBTYPE_DOLBY_DDPLUS = new Guid("a7fb87af-2d02-42fb-a4d4-05cd93843bdd"); /// <summary> /// μ-law coding /// http://msdn.microsoft.com/en-us/library/windows/desktop/dd390971(v=vs.85).aspx /// Reference : Ksmedia.h /// </summary> [FieldDescription("")] public static readonly Guid KSDATAFORMAT_SUBTYPE_MULAW = new Guid("00000007-0000-0010-8000-00aa00389b71"); /// <summary> /// Adaptive delta pulse code modulation (ADPCM) /// http://msdn.microsoft.com/en-us/library/windows/desktop/dd390971(v=vs.85).aspx /// Reference : Ksmedia.h /// </summary> [FieldDescription("")] public static readonly Guid KSDATAFORMAT_SUBTYPE_ADPCM = new Guid("00000002-0000-0010-8000-00aa00389b71"); /// <summary> /// Dolby Digital Plus formatted for HDMI output. /// http://msdn.microsoft.com/en-us/library/windows/hardware/ff538392(v=vs.85).aspx /// Reference : internet /// </summary> [FieldDescription("")] public static readonly Guid KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_DIGITAL_PLUS = new Guid("0000000a-0cea-0010-8000-00aa00389b71"); /// <summary> /// ????? /// ????? /// Reference : wmcodecdsp.h /// </summary> [FieldDescription("")] public static readonly Guid MEDIASUBTYPE_MSAUDIO1 = new Guid("00000160-0000-0010-8000-00aa00389b71");
I put in a full version ISSUE TRACKER.http://naudio.codeplex.com/workitem/16375
I looked to see if your option is possible, I continued my research.
I had already done tests to avoid the latency to the first read.
But I have not found another solution.
From: ManuN I had already done tests to avoid the latency to the first read. But I have not found another solution. Read the full discussion online. To add a post to this discussion, reply to this email (naudio@discussions.codeplex.com) To start a new discussion for this project, email naudio@discussions.codeplex.com You are receiving this email because you subscribed to this discussion on CodePlex. You can unsubscribe or change your settings on codePlex.com. Please note: Images and attachments will be removed from emails. Any posts to this discussion will also be available online at codeplex.com
From: ManuN
Read the full discussion online.
To add a post to this discussion, reply to this email (naudio@discussions.codeplex.com)
To start a new discussion for this project, email naudio@discussions.codeplex.com
You are receiving this email because you subscribed to this discussion on CodePlex. You can unsubscribe or change your settings on codePlex.com.
Please note: Images and attachments will be removed from emails. Any posts to this discussion will also be available online at codeplex.com
I thought IMFTransform used to make convertions
I found a simple example:
http://code.google.com/p/bitspersampleconv2/wiki/HowToUseResamplerMFT
From: ManuN I thought IMFTransform used to make convertions I found a simple example: http://code.google.com/p/bitspersampleconv2/wiki/HowToUseResamplerMFT Read the full discussion online. To add a post to this discussion, reply to this email (naudio@discussions.codeplex.com) To start a new discussion for this project, email naudio@discussions.codeplex.com You are receiving this email because you subscribed to this discussion on CodePlex. You can unsubscribe or change your settings on codePlex.com. Please note: Images and attachments will be removed from emails. Any posts to this discussion will also be available online at codeplex.com
I will try this option to see.
Lack of time, abandoned.
Are you sure you want to delete this post? You will not be able to recover it later.
Are you sure you want to delete this thread? You will not be able to recover it later.