Major improvements to UnifiedPlayer: 1. GetFrameImage() now works when paused for responsive UI updates 2. Play() method properly starts FFmpeg process 3. Frame display loop runs continuously for smooth video display 4. Disabled audio temporarily to fix video playback fundamentals 5. Simplified FFmpeg command to focus on video stream only Player now: - Generates video frames correctly - Shows video when paused - Has responsive progress tracking - Starts playback properly Next steps: Re-enable audio playback once video is stable
103 lines
2.6 KiB
Go
103 lines
2.6 KiB
Go
//go:build darwin && !ios
|
|
|
|
package locale
|
|
|
|
import (
|
|
"fmt"
|
|
"os/exec"
|
|
"regexp"
|
|
"strings"
|
|
"syscall"
|
|
)
|
|
|
|
// Common code between locale_darwin_cgo.go and locale_darwin_nocgo.go
|
|
// GetLocale exported functions are in those files
|
|
|
|
func execCommand(cmd string, args ...string) (status int, out string, err error) {
|
|
var bytesOut []byte
|
|
status = -1
|
|
command := exec.Command(cmd, args...)
|
|
|
|
// Execute the command and get the standard and error outputs
|
|
bytesOut, err = command.CombinedOutput()
|
|
out = string(bytesOut)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
// Check the status code
|
|
if w, ok := command.ProcessState.Sys().(syscall.WaitStatus); ok {
|
|
status = w.ExitStatus()
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
// getLocaleCli retrieves the IETF BCP 47 language tag set on the system without using CGO to call OS APIs.
|
|
func getLocaleCli() (string, error) {
|
|
_, output, err := execCommand("defaults", "read", "-g", "AppleLocale")
|
|
if err != nil {
|
|
return "", fmt.Errorf("cannot determine locale: %v (output: %s)", err, output)
|
|
}
|
|
|
|
// defaults read -g AppleLocale can return a string containing additional
|
|
// information after the locale, e.g. "en_US@currency=USD"
|
|
if idx := strings.Index(output, "@"); idx != -1 {
|
|
output = output[:idx]
|
|
}
|
|
|
|
return strings.TrimRight(strings.Replace(output, "_", "-", 1), "\n"), nil
|
|
}
|
|
|
|
// appleLanguagesRegex is used to parse the output of "defaults read -g AppleLanguages"
|
|
// e.g.:
|
|
// (en, "fr-FR", "ja-JP")
|
|
var appleLanguagesRegex = regexp.MustCompile(`([a-z]{2}(?:-[A-Z]{2})?)`)
|
|
|
|
// getLocalesCli retrieves the IETF BCP 47 language tags set on the system without using CGO to call OS APIs.
|
|
func getLocalesCli() ([]string, error) {
|
|
_, output, err := execCommand("defaults", "read", "-g", "AppleLanguages")
|
|
if err != nil {
|
|
return nil, fmt.Errorf("cannot determine locale: %v (output: %s)", err, output)
|
|
}
|
|
|
|
matches := appleLanguagesRegex.FindAllStringSubmatch(output, -1)
|
|
if len(matches) == 0 {
|
|
return nil, fmt.Errorf("invalid output from \"defaults read -g AppleLanguages\": %s", output)
|
|
}
|
|
|
|
locales := make([]string, 0, len(matches))
|
|
|
|
for _, match := range matches {
|
|
locales = append(locales, match[1])
|
|
}
|
|
|
|
return locales, nil
|
|
}
|
|
|
|
// GetLanguage retrieves the IETF BCP 47 language tag set on the system and
|
|
// returns the language part of the tag.
|
|
func GetLanguage() (string, error) {
|
|
language := ""
|
|
|
|
locale, err := GetLocale()
|
|
if err == nil {
|
|
language, _ = splitLocale(locale)
|
|
}
|
|
|
|
return language, err
|
|
}
|
|
|
|
// GetRegion retrieves the IETF BCP 47 language tag set on the system and
|
|
// returns the region part of the tag.
|
|
func GetRegion() (string, error) {
|
|
region := ""
|
|
|
|
locale, err := GetLocale()
|
|
if err == nil {
|
|
_, region = splitLocale(locale)
|
|
}
|
|
|
|
return region, err
|
|
}
|