File size: 2,806 Bytes
750bbe6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
.PHONY: vibevoice
vibevoice:
	bash install.sh

.PHONY: download-voices
download-voices:
	@echo "Downloading voice preset files..."
	@mkdir -p voices/streaming_model
	@if command -v wget >/dev/null 2>&1; then \
		wget -q -O voices/streaming_model/en-Frank_man.pt \
			https://raw.githubusercontent.com/microsoft/VibeVoice/main/demo/voices/streaming_model/en-Frank_man.pt && \
		wget -q -O voices/streaming_model/en-Grace_woman.pt \
			https://raw.githubusercontent.com/microsoft/VibeVoice/main/demo/voices/streaming_model/en-Grace_woman.pt && \
		wget -q -O voices/streaming_model/en-Mike_man.pt \
			https://raw.githubusercontent.com/microsoft/VibeVoice/main/demo/voices/streaming_model/en-Mike_man.pt && \
		wget -q -O voices/streaming_model/en-Emma_woman.pt \
			https://raw.githubusercontent.com/microsoft/VibeVoice/main/demo/voices/streaming_model/en-Emma_woman.pt && \
		wget -q -O voices/streaming_model/en-Carter_man.pt \
			https://raw.githubusercontent.com/microsoft/VibeVoice/main/demo/voices/streaming_model/en-Carter_man.pt && \
		wget -q -O voices/streaming_model/en-Davis_man.pt \
			https://raw.githubusercontent.com/microsoft/VibeVoice/main/demo/voices/streaming_model/en-Davis_man.pt && \
		echo "Voice files downloaded successfully"; \
	elif command -v curl >/dev/null 2>&1; then \
		curl -sL -o voices/streaming_model/en-Frank_man.pt \
			https://raw.githubusercontent.com/microsoft/VibeVoice/main/demo/voices/streaming_model/en-Frank_man.pt && \
		curl -sL -o voices/streaming_model/en-Grace_woman.pt \
			https://raw.githubusercontent.com/microsoft/VibeVoice/main/demo/voices/streaming_model/en-Grace_woman.pt && \
		curl -sL -o voices/streaming_model/en-Mike_man.pt \
			https://raw.githubusercontent.com/microsoft/VibeVoice/main/demo/voices/streaming_model/en-Mike_man.pt && \
		curl -sL -o voices/streaming_model/en-Emma_woman.pt \
			https://raw.githubusercontent.com/microsoft/VibeVoice/main/demo/voices/streaming_model/en-Emma_woman.pt && \
		curl -sL -o voices/streaming_model/en-Carter_man.pt \
			https://raw.githubusercontent.com/microsoft/VibeVoice/main/demo/voices/streaming_model/en-Carter_man.pt && \
		curl -sL -o voices/streaming_model/en-Davis_man.pt \
			https://raw.githubusercontent.com/microsoft/VibeVoice/main/demo/voices/streaming_model/en-Davis_man.pt && \
		echo "Voice files downloaded successfully"; \
	else \
		echo "Error: Neither wget nor curl found. Cannot download voice files."; \
		exit 1; \
	fi

.PHONY: run
run: vibevoice
	@echo "Running vibevoice..."
	bash run.sh
	@echo "vibevoice run."

.PHONY: test
test: vibevoice download-voices
	@echo "Testing vibevoice..."
	bash test.sh
	@echo "vibevoice tested."

.PHONY: protogen-clean
protogen-clean:
	$(RM) backend_pb2_grpc.py backend_pb2.py

.PHONY: clean
clean: protogen-clean
	rm -rf venv __pycache__