def videos
        all_video_ids.each_slice(50).flat_map do |video_ids|
          conditions = {id: video_ids.join(',')}
          conditions[:part] = 'snippet,status,statistics,contentDetails'
          Collections::Videos.new(auth: @auth).where(conditions).map(&:itself)