16 lines
349 B
Bash
Executable File
16 lines
349 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Building goffmpeg examples..."
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
# Build simple-transcode example
|
|
echo "Building simple-transcode..."
|
|
go build -o bin/simple-transcode ./simple-transcode
|
|
|
|
echo ""
|
|
echo "Build complete!"
|
|
echo "Run with: ./bin/simple-transcode <input> <output>"
|
|
echo "Example: ./bin/simple-transcode test.mp4 output.mp4"
|