X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-lj1-f194.google.com (mail-lj1-f194.google.com [209.85.208.194]) by lists.alpinelinux.org (Postfix) with ESMTP id 792AD5C5754 for ; Tue, 2 Oct 2018 19:36:29 +0000 (GMT) Received: by mail-lj1-f194.google.com with SMTP id o14-v6so2893925ljj.2 for ; Tue, 02 Oct 2018 12:36:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:subject:date:message-id:mime-version :content-transfer-encoding; bh=35junbxU6tLpaWKZ1wRkngKK8VYtnG16FNsjZGvnShc=; b=pC2zPFgiAILUju1BA7EOS1NeE8zUOVzD4yUDrCKxat4pyM0VSpVFQj3kRxrhNAc2rN 7jWDLkO2h1rzvZ9yJZvIlq+QIHPZXZQJYxlhgGddTpe9xH2U9a77bt4DGIsCclFBlFN7 8GO7E4oBEoivy4fi30kE6ae+BN+gYFKmOryZyeJWX7h/4LqEhzggBiZhfKPkv/l+vNjb Ffq157fpVTUCMQDg0znJxDJWgLPn21ryhOZ7ciBt1kP0T2QuNh6u4gmEI3xqHFqUlAaX LC8R+Idp2pxqI+weKDuDty/lpWn6NfeH/8RoUMDOEIHi5OiER1cL2zVgt+GqNsmjGG0x yjJQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id:mime-version :content-transfer-encoding; bh=35junbxU6tLpaWKZ1wRkngKK8VYtnG16FNsjZGvnShc=; b=f+rt8wd4OAnMAf/lzUeH6cGNI5xDREp3/VgR4Jr4CUbciJJyHyvTZas7aNQdo/fdvO syegStC5ZU3Fq8BpWgLr/M4e1GRB6pZXhF2mSrmw0l9H5ZFRIhfDyu2KwH8immKK/5Dr NnsN6feCwN53TK8meisFRFLmq5iXRrebz3/G3X2xlnDXpsgAnBiYCqdp3LRXC4QAWy9f 4T/c+ygpWaVEdB0cMut2b9RDE1nh+Rwbe0kpPzUdPlsAmH7rZcEI4xsdgGJGeSQ9BL64 8PP/as/FetF98cgHl+k+ft8Ja6i0eF2U6IUwAj4oUiFKgkfCluExbdodBtcrVzu5T6FI pwcg== X-Gm-Message-State: ABuFfogt3RDlv28moPRfTv0BIEDuTEvVvFVic4CFU3QT7H77/fOhpFVZ iVUVcWte1G2Zfr9zEcFKquOMfmF5 X-Google-Smtp-Source: ACcGV608YQr7HSxbSkV8JpAmYk6jd9Cuz9/NCVL6CPd57cEbt+YTyOa/h/0P5XDkNFU6jQC3s2LXvQ== X-Received: by 2002:a2e:9c59:: with SMTP id t25-v6mr6226661ljj.107.1538508988214; Tue, 02 Oct 2018 12:36:28 -0700 (PDT) Received: from alpine.nodomain (host-31-193-35-94-dynamic.telecomitaliasm.net. [31.193.35.94]) by smtp.gmail.com with ESMTPSA id a23-v6sm633288ljj.1.2018.10.02.12.36.27 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 02 Oct 2018 12:36:27 -0700 (PDT) From: Alex Raschi To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] community/gst-plugins-bad: enable opus support Date: Tue, 2 Oct 2018 21:36:26 +0200 Message-Id: <20181002193626.24860-1-raschi.alex@gmail.com> X-Mailer: git-send-email 2.19.0 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit * fixes #9262 The issue was not webkit2gtk itself but rather gst-plugins-bad which was built without opus support, youtube uses this codec for 1080p videos. To test run luakit with enable_mediasource = true and try to watch a 1080p video on youtube. --- community/gst-plugins-bad/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/community/gst-plugins-bad/APKBUILD b/community/gst-plugins-bad/APKBUILD index 116fd58626..f497abf744 100644 --- a/community/gst-plugins-bad/APKBUILD +++ b/community/gst-plugins-bad/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa pkgname=gst-plugins-bad pkgver=1.14.2 -pkgrel=0 +pkgrel=1 pkgdesc="GStreamer bad plugins" url="https://gstreamer.freedesktop.org" arch="all" @@ -39,6 +39,7 @@ makedepends=" libass-dev libsrtp-dev orc-compiler + opus-dev " subpackages="$pkgname-lang $pkgname-dev $pkgname-doc" source="https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-$pkgver.tar.xz -- 2.19.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---