DinoMan / speech-driven-animation

951 stars 290 forks source link

Unfortunately torchaudio is not supported on Windows #3

Closed Neltherion closed 5 years ago

Neltherion commented 5 years ago

As the title says...

zhumazik commented 5 years ago

Just comment all the lines with "torchaudio" in "sda.py". It's not needed if you call VideoAnimator this way: `

import sda import scipy.io.wavfile as wav from PIL import Image va = sda.VideoAnimator(gpu=0)# Instantiate the aminator fs, audio_clip = wav.read("example/audio.wav") still_frame = Image.open("example/image.bmp") vid, aud = va(frame, audio_clip, fs=fs)`

DinoMan commented 5 years ago

The new version has no dependency on torchaudio so this can be closed