We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When displaying single segments in seamliten the padding is added to the segment without being highlighted.
To reproduce paste this segment in seamlisten
/path/to/audio/some.mp3 1917117 1962282
to verify that its longer than the original segment here's how to listen to the segment paste the following command in a notebook
import librosa import IPython.display as ipd path="/path/to/audio/some.mp3" start = 1917117 end = 1962282 x, sr = librosa.load(path) start = round(start*sr/16000) end = round(end*sr/16000) sample = x[start: end] ipd.Audio(data=sample, rate=sr)
[Internal issue: 24]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When displaying single segments in seamliten the padding is added to the segment without being highlighted.
To reproduce paste this segment in seamlisten
to verify that its longer than the original segment here's how to listen to the segment
paste the following command in a notebook
[Internal issue: 24]
The text was updated successfully, but these errors were encountered: