GithubHelp home page GithubHelp logo

Comments (3)

ryanheise avatar ryanheise commented on June 19, 2024

This plugin only extracts data from a file. It's up to you to get the data from other sources and save them to a file. Once you do so, this plugin is applicable after that point. I can't help you with how to read data from various sources, you will need to search for other plugins to do that or write a plugin that does that.

from just_waveform.

LondonX avatar LondonX commented on June 19, 2024

Thanks for reply. Yes, I write a plugin to do that, post here hope to help other guys.

Dart call

final exported = await AvAssetExportIos.instance.export(
      ipodLibraryUri: song.data,
      targetUri: iosExportFile.uri.toString(),
    );

SwiftAvAssetExportIosPlugin.swift

import Flutter
import UIKit
import AVFoundation
import AVKit
import AssetsLibrary

public class SwiftAvAssetExportIosPlugin: NSObject, FlutterPlugin {
    public static func register(with registrar: FlutterPluginRegistrar) {
        let channel = FlutterMethodChannel(name: "av_asset_export_ios", binaryMessenger: registrar.messenger())
        let instance = SwiftAvAssetExportIosPlugin()
        registrar.addMethodCallDelegate(instance, channel: channel)
    }
    
    public func handle(_ call: FlutterMethodCall, result: @escaping FlutterResult) {
        let args = call.arguments as? [String : Any?]
        switch(call.method) {
        case "export":
            let ipodLibraryUri = args!["ipodLibraryUri"] as! String
            let targetUri = args!["targetUri"] as! String
            let assetURL = URL.init(string: ipodLibraryUri)!
            let targetURL = URL.init(string: targetUri)!
            export(assetURL, targetURL) { error in
                print("[SwiftAvAssetExportIosPlugin] has error", error != nil)
                result(error == nil)
            }
            break
        default:
            result(FlutterMethodNotImplemented)
        }
    }
    
    func export(
        _ assetURL: URL,
        _ targetURL: URL,
        completionHandler: @escaping (_ error: Error?) -> ()
    ) {
        let asset = AVURLAsset(url: assetURL)
        guard let exporter = AVAssetExportSession(
            asset: asset,
            presetName: AVAssetExportPresetAppleM4A
        ) else {
            completionHandler(ExportError.unableToCreateExporter)
            return
        }
        try? FileManager.default.removeItem(at: targetURL)
        exporter.outputURL = targetURL
        exporter.outputFileType = AVFileType.m4a
        
        print("[SwiftAvAssetExportIosPlugin] exportAsynchronously assetURL: \(assetURL), outputURL: \(targetURL)");
        exporter.exportAsynchronously {
            switch(exporter.status) {
            case .completed:
                completionHandler(nil)
                break
            case .failed:
                print(exporter.error!)
                completionHandler(exporter.error)
                break
            default:
                break
            }
        }
    }
}

enum ExportError: Error {
    case unableToCreateExporter
    case unsupportedFormat
}

from just_waveform.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.