1
0
mirror of https://github.com/advplyr/audiobookshelf.git synced 2025-01-13 00:06:30 +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,
})
})