summaryrefslogtreecommitdiff
path: root/internal/media/ffmpeg/ffmpeg.go
diff options
context:
space:
mode:
authorLibravatar kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com>2024-10-14 09:59:12 +0000
committerLibravatar GitHub <noreply@github.com>2024-10-14 11:59:12 +0200
commit6a76b9d609fab579a3b54674f098fda06e121e49 (patch)
tree6fbfcaceb88c3e9a86cbd41242042e1e9fe6ee27 /internal/media/ffmpeg/ffmpeg.go
parent[chore]: Bump github.com/minio/minio-go/v7 from 7.0.77 to 7.0.78 (#3431) (diff)
downloadgotosocial-6a76b9d609fab579a3b54674f098fda06e121e49.tar.xz
[feature/OFFICIALLY UNSUPPORTED] add nowasm build tag to disable building with WebAssembly (#3429)
* add experimental build-tag 'nowasm' which uses local ffmpeg / ffprobe * updated experimental support message * add comment to build script explaining build tag * add nowasm build tags to moderncsqlite files
Diffstat (limited to 'internal/media/ffmpeg/ffmpeg.go')
-rw-r--r--internal/media/ffmpeg/ffmpeg.go8
1 files changed, 7 insertions, 1 deletions
diff --git a/internal/media/ffmpeg/ffmpeg.go b/internal/media/ffmpeg/ffmpeg.go
index d33fef34e..0571c029a 100644
--- a/internal/media/ffmpeg/ffmpeg.go
+++ b/internal/media/ffmpeg/ffmpeg.go
@@ -15,10 +15,14 @@
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
+//go:build !nowasm
+
package ffmpeg
import (
"context"
+
+ "codeberg.org/gruf/go-ffmpreg/wasm"
)
// ffmpegRunner limits the number of
@@ -36,5 +40,7 @@ func InitFfmpeg(ctx context.Context, max int) error {
// Ffmpeg runs the given arguments with an instance of ffmpeg.
func Ffmpeg(ctx context.Context, args Args) (uint32, error) {
- return ffmpegRunner.Run(ctx, ffmpeg, args)
+ return ffmpegRunner.Run(ctx, func() (uint32, error) {
+ return wasm.Run(ctx, runtime, ffmpeg, args)
+ })
}