Demo to preview the settings
Live Demo: https://timsupport.bubbleapps.io/waveform
Introduction
Plugin delivers a versatile audio playback experience reminiscent of Soundcloud, featuring a sleek waveform display and comprehensive functionality. With controls for play, pause, stop, mute/unmute, adjustable volume, and playlist support, users can seamlessly manage their audio content. Customization options allow for tailored design integration, while features like image export, speed control, markers, and dynamic event triggers enhance user engagement and navigation.
How to setup
- Install plugin Waveform Audio Player #soundcloud Plugin
- Place the Audio Player - Waveform element on the page & set up the fields of audio file and the colors and options you would like to have in your player.
- Add a Button responsible for playing/pausing the song:
Workflow Example
How use Regions
How use The Playlist
Plugin element “Audio Player - Waveform”
Fields
Title | Description | Type |
Unplayed Wave Color | The color of the unplayed part of the wave. | Color |
Played Wave Color | The color of the played part of the wave. | Color |
Waveform Type | The type of waveform visualization. | Dropdown(Rounded,Bars,Wavy) |
Bar Width | Bar Width in px when type is custom. Applied only on type Custom | Number, Optional |
Bar Height | A vertical scaling factor for the waveform. Applied only on type Custom | Number, Optional |
Bar Radius | Bar Border Radius in px when type is custom. Applied only on type Custom | Number, Optional |
Bar Gap | Gap between Bars in px when type is custom. Applied only on type Custom | Number, Optional |
Cursor Color | The color of the cursor / selector. The cursor represents the current playback position within the audio file. | Color |
Audio File | The audio source file. | File, Required |
Stop all instances on play | This is useful when you have multiple instances of Waveform on the same page. If this value is yes , all players currently playing will pause/stop(depends on “Stop or Pause”) when this player starts playing. If set to “no ” then all instances when this player starts playing other will not stop, will continue playing simultaneously. | Yes/No, Required |
Stop or Pause | When “Stop all instances on play” is checked, then this property set to “yes” makes all other instances stop when current instance plays, set to “no” makes them pause instead. | Yes/No, Required |
Speed | The speed of the Audio Player. 1 is normal. 0.5 is 2x slower. 2 is 2x faster, etc… | Number, Required |
Muted | Set property to “yes” this box if you want the Audio Player to be muted by default. | Yes/No, Required |
Hide Cursor | Hide the mouse cursor when hovering over the waveform. By default it will be shown. | Yes/No, Required |
Normalize | Normalization ensures that the loudest part of the audio reaches a specified level without clipping or distortion, thereby improving the overall clarity and consistency of the audio playback. | Yes/No, Required |
Toggle Restart Option | Enables to restart the song If played more than 20% and plays previous if less than 20% | Yes/No, Optional |
Preload Peaks | Check this box if you want to preload the peaks from your database for instant-rendering.
By supplying this data, WaveSurfer can render the waveform more quickly and smoothly, as it doesn't have to calculate the peaks itself from the audio file. | Yes/No |
Peaks Data (JSON fromat) | (Optional) This field will be the peaks of the current audio file as JSON format when “Preload Peaks”. It has to be the same output as what the custom state "Peaks Data (JSON)" outputs ! | Text |
Consider Audio as Played (sec) | Number of seconds that the audio has to be played to be considered as played. Once this number of seconds has been reached on the current audio, the event "Current Audio File can be considered as Played" will be fired. It may help you to build a listening counter feature. | Number |
---Media Session-— | ||
Media Session | This property determines whether the integration with the Media Session API is enabled or not. The Media Session API provides metadata about the currently playing media to the operating system, allowing for better integration with system controls such as playback controls on lock screens or notifications. | Yes/No, Required |
Title | (Optional) The song title. | Text, Optional |
Artwork (Image) | (Optional) The image that will be displayed. | Image, Optional |
Artist | (Optional) The artist. | Text, Optional |
Album | (Optional) The album. | Text, Optional |
Only download on start? 💬 ⚠️. | ⚠️ WARNING: If you are not using the Peaks Data, the waveform will NOT be displayed until the user clicks on "Start". When this option is enabled, the audio file will only start downloading when the start function is called. This avoid downloading long lists and improve performance.
If you have a web page with multiple WaveSurfer instances but you don't want to fetch all the audio files immediately upon loading the page, setting thsi property to “unchecked” allows you to fetch audio files only when the WaveSurfer component is initialized. | Checkbox |
Allow Downloading | Enables the audio to be downloaded by users | Yes/No, Required |
Allow Controls | Allows to display/hide of default audio player. | Checkbox |
Height | The height of the waveform in pixels, or leave empty to fill the container height | Number, Optional |
Returned Values
Title | Description | Type |
Is Playing | Indicates whether the media player is currently playing | Yes/No |
Current Time (s) | Represents the current playback position in the media, measured in seconds. | Number |
Total Duration (s) | Denotes the total duration of the media in seconds. | Number |
Current Speed | Indicates the current playback speed of the media, such as 1x, 1.5x, or 2x. | Number |
Is Muted | Indicates whether the media is currently muted | Yes/No |
Is Loading | Indicates whether the media player is currently loading data, which might be useful for showing loading spinners or progress bars. | Yes/No |
% Loaded | Represents the percentage of the media that has been loaded. This can be useful for displaying a progress indicator during loading. | Number |
Image URL | An image representation of a waveform generated in action "Generate Image” | Text |
Current Volume (/1) | Represents the current volume level of the media. | Number |
Markers Data (JSON) | Contains data about markers associated with the media. | Text |
Peaks Data (JSON format) | Contains precomputed peak data for the audio waveform, which can be used for visualizing the waveform more efficiently. | Text |
Current Audio File can be considered as Played | Indicates whether the media is considered "played" based on the provided time in the fields. | Yes/No |
Playlist - Number of Songs to be Played Next | Indicates the number of songs in a playlist or queue that are scheduled to be played next. | Number |
Playlist - Title of Songs to be Played Next | Contains titles or names of songs in a playlist or queue that are scheduled to be played next. | Text List |
Playlist - Track List | Contains titles or names of songs in a playlist | Text, List |
Total Duration Formatted | Total Duration formatted as: hh:mm:ss | Text |
Current Time Formatted | Current Time formatted as: hh:mm:ss | Text |
Current Playing Index | Indicates the playing index song from the playlist | Number |
Events
Title | Description |
Started Playing | This event occurs when the audio playback starts. |
Stopped Playing | This event occurs when the audio playback stops. |
Has been Muted | This event occurs when the audio is muted. |
Has been Unmuted | This event occurs when the audio is unmuted. |
Is Loaded | This event indicates that the audio file is fully loaded and ready for playback. |
Finished Playing | This event occurs when the audio playback reaches its end. |
Image Generated | This event occurs when an image representation of the waveform is successfully generated and ready for use/display. |
Volume Changed | This event occurs when the volume of the audio changes. |
Peaks Loaded (ready to be saved in DB) | Is fired as soon as the peaks are loaded, saved into state "Peaks Data (JSON format)" and ready to be saved in database. |
Current Audio File can be considered as Played | Is fired as soon as the current audio file has been played more than X seconds (defined in the Waveform settings). |
Reset Waveform | Is fired as soon as the Waveform resets |