mình dùng Nutagen library để lấy thông tin độ dài thời gian file MP3, và script như sau
import mutagen
def timelength(path):
from mutagen.mp3 import MP3
audio = MP3(path)
return(audio.info.length)
path= input()
return timelength
nhưng ko hiểu sao lúc chạy lại ra như vầy
File "C:\Users\Thinh\OneDrive\Tài liệu\UiPath\aaa.py", line 3
from mutagen.mp3 import MP3 ^
IndentationError: expected an indented block
[Finished in 0.137s]
mình là newbie nên ko biết sai ở đâu, nhờ a e chỉ giúp.