You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
488 B
Go
25 lines
488 B
Go
2 years ago
|
package utils
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"io"
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func WriteTempFile(rd io.Reader, ext string) (string, error) {
|
||
|
audioFile, err := os.CreateTemp("", "*"+ext)
|
||
|
if err != nil {
|
||
|
return "", fmt.Errorf("ffmpeg create temp file: %w", err)
|
||
|
}
|
||
|
|
||
|
if _, err := io.Copy(audioFile, rd); err != nil {
|
||
|
return "", fmt.Errorf("ffmpeg write temp file: %w", err)
|
||
|
}
|
||
|
|
||
|
if err := audioFile.Close(); err != nil {
|
||
|
return "", fmt.Errorf("ffmpeg close temp file: %w", err)
|
||
|
}
|
||
|
|
||
|
return audioFile.Name(), nil
|
||
|
}
|