Adds a FluentCxAudio#91
Conversation
|
✅ All tests passed successfully Details on your Workflow / Core Tests page. |
Summary - Unit Tests Code CoverageSummary
CoverageFluentUI.Blazor.Community.Components - 72.3%
|
|
The component has some glitches:
|
|
I have used this file for testing: |
Thanks for the file... Maybe it will help for finding few bugs and handle them |
Add the metadata of the file Modify the position of the playlist Modify the compact player and floating to be better Prepare the properties
|
@MarvinKlein1508 : I've added the extraction of the metadata and correct many issues you saw... The next step will be to have a properies dialog to show most of the metadata |
|
@MarvinKlein1508 : Done |

Pull Request
📖 Description
FluentCxAudio is a part of a very big component.
But it can work as standalone
It can play, pause, stop, resume an audio file.
You can add playlist...
4 views : Default, Compact, Floating, Minimal...
Each audio track can have it's cover (url, direct url)
🎫 Issues
The HTML Audio Element has an issue when seeking... it's seems to be a known bug...
(On browser try this :
document.querySelector('audio');
after that, get the audio element and :
audio.pause();
audio.currentTime = 160; (in seconds and less than the duration)
audio.play(); <- here, the audio element doesn't seek well...
👩💻 Reviewer Notes
📑 Test Plan
✅ Checklist
General
Component-specific
⏭ Next Steps
The next step will be to add a way to get the cover inside the tags of the audio file...
Try to find why seek is not working on the HTML Audio Element if we don't use the HTML Audio element in direct