getAudioUrlFast method

Future<Map<String, dynamic>> getAudioUrlFast({
  1. required String videoId,
})

Only returns the audio URL using videoId, no other metadata

Parameters:

  • videoId: YouTube video ID (required)

Returns a Map with:

  • success: bool - Whether the operation was successful
  • audioUrl: String - The direct audio URL (if successful)
  • error: String - Error message (if failed)
  • videoId: String - The video ID used for the request

Implementation

Future<Map<String, dynamic>> getAudioUrlFast({
  required String videoId,
}) {
  throw UnimplementedError('getAudioUrlFast() has not been implemented.');
}