mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 16:02:26 -05:00 
			
		
		
		
	
		
			
	
	
		
			40 lines
		
	
	
	
		
			533 B
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			40 lines
		
	
	
	
		
			533 B
		
	
	
	
		
			Go
		
	
	
	
	
	
|  | package embed | ||
|  | 
 | ||
|  | import ( | ||
|  | 	"bytes" | ||
|  | 	"compress/gzip" | ||
|  | 	_ "embed" | ||
|  | 	"io" | ||
|  | 	"os" | ||
|  | ) | ||
|  | 
 | ||
|  | func init() { | ||
|  | 	var err error | ||
|  | 
 | ||
|  | 	if path := os.Getenv("FFMPREG_WASM"); path != "" { | ||
|  | 		// Read file into memory. | ||
|  | 		B, err = os.ReadFile(path) | ||
|  | 		if err != nil { | ||
|  | 			panic(err) | ||
|  | 		} | ||
|  | 	} | ||
|  | 
 | ||
|  | 	// Wrap bytes in reader. | ||
|  | 	b := bytes.NewReader(B) | ||
|  | 
 | ||
|  | 	// Create unzipper from reader. | ||
|  | 	gz, err := gzip.NewReader(b) | ||
|  | 	if err != nil { | ||
|  | 		panic(err) | ||
|  | 	} | ||
|  | 
 | ||
|  | 	// Extract gzipped binary. | ||
|  | 	B, err = io.ReadAll(gz) | ||
|  | 	if err != nil { | ||
|  | 		panic(err) | ||
|  | 	} | ||
|  | } | ||
|  | 
 | ||
|  | //go:embed ffmpreg.wasm.gz | ||
|  | var B []byte |