Api.prototype.sendVoiceFromUrl = function (chatId, url, options) {
  return yarl.get(url, { buffer: true }).then(function (res) {
    return this.sendVoice(chatId, res.body, options);
  }.bind(this));
};