Skip to content
This repository was archived by the owner on Oct 27, 2025. It is now read-only.
This repository was archived by the owner on Oct 27, 2025. It is now read-only.

Failed to download some videos in EMOPIA_2.2 datasets #8

Description

@KindleHe

I try to download the source mp4 from Q1.txt, Q2.txt, Q3.txt, Q4.txt of songs_lists directory in the EMOPIA_2.2 datasets,
using the following scripts:

#!/bin/bash
input="$1"
root=`echo $input|cut -d "." -f 1`
count=1
while IFS= read -r line
do
  echo "Start download $count-th $line"
  output=`echo $line|cut -d "=" -f 2|cut -d "," -f 1`
  youtube-dl -x --audio-format mp3 -o "$root/$output.%(ext)s" $line
  count=$[count+1]
  sleep 3
done < "$input"

But failed to download some videos.

Start download 3-th https://www.youtube.com/watch?v=JP3QKZlyQz4
[youtube] JP3QKZlyQz4: Downloading webpage
ERROR: Video unavailable
This video is not available

@seungheondoh Could you share the source music datasets of EMOPIA_2.2 datasets, so that we can apply scripts/timestamp2clip.py to get get audio clips?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions