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