1
0
mirror of https://github.com/advplyr/audiobookshelf.git synced 2025-02-15 17:59:20 +01:00
audiobookshelf/server/utils/probeWorker.js

9 lines
238 B
JavaScript

const { parentPort } = require("worker_threads")
const prober = require('./prober')
parentPort.on("message", async ({ mediaPath }) => {
const results = await prober.probe(mediaPath)
parentPort.postMessage({
data: results,
})
})