From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Jean Louis Newsgroups: gmane.emacs.help Subject: Re: Where to put media demonstrating Gnu Elpa packages? Date: Mon, 29 Jul 2019 19:04:18 +0200 Message-ID: <20190729170418.GR16379@protected.rcdrun.com> References: <87bm9lw23u.fsf@web.de> <87lg8lb5du.fsf@web.de> <877ek4rge7.fsf@web.de> <87v9vl4o1t.fsf@web.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="214582"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Mutt/1.10.1 (2018-07-13) Cc: help-gnu-emacs@gnu.org To: Michael Heerdegen Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jul 29 19:11:12 2019 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hs9B2-000tie-BJ for geh-help-gnu-emacs@m.gmane.org; Mon, 29 Jul 2019 19:11:12 +0200 Original-Received: from localhost ([::1]:55276 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hs9B1-0002ci-DG for geh-help-gnu-emacs@m.gmane.org; Mon, 29 Jul 2019 13:11:11 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:39011) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hs9At-0002cY-7k for help-gnu-emacs@gnu.org; Mon, 29 Jul 2019 13:11:04 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hs9As-0007TU-8E for help-gnu-emacs@gnu.org; Mon, 29 Jul 2019 13:11:03 -0400 Original-Received: from stw1.rcdrun.com ([217.170.207.13]:54483) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hs9As-0007S8-1k for help-gnu-emacs@gnu.org; Mon, 29 Jul 2019 13:11:02 -0400 Original-Received: from protected.rcdrun.com (localhost [::1]) (AUTH: PLAIN admin, TLS: TLS1.2,256bits,ECDHE_RSA_AES_256_GCM_SHA384) by stw1.rcdrun.com with ESMTPSA; Mon, 29 Jul 2019 10:10:59 -0700 id 000000000002035B.000000005D3F28A3.0000452B Original-Received: from localhost (protected.rcdrun.com [local]) by protected.rcdrun.com (OpenSMTPD) with ESMTPA id 21e4090d; Mon, 29 Jul 2019 17:04:18 +0000 (UTC) Content-Disposition: inline In-Reply-To: <87v9vl4o1t.fsf@web.de> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 217.170.207.13 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.org gmane.emacs.help:121254 Archived-At: * Michael Heerdegen [2019-07-29 03:40]: > Stefan Monnier writes: > > > I think MediaGoblin is part of the answer, so I think all you need is > > to find the FSF's MediaGoblin instance. > > I went with https://goblinrefuge.com. It's a disaster. My first video > I uploaded took ~ 12 hours to appear. It had 350kB. You get no > feedback, no failure message, no meaningful info about transcoding > progress, etc. My second video was a bit larger, 12.5MB - I wait for it > to appear since four days. > > The 350k video was a demonstration of an Emacs bug. I posted it as an > attachment in an answer to the bug report - nobody complained. Is such > a size acceptable to attach? > > FWIW I'll try PeerTube now which had also been suggested in this > thread. It could be simple. Just find ANY hosting account and upload video, and provide link to it. I use following bash function to convert video to webm: function video2webm () { bitrate=$1; shift; for file in "$@"; do out=${file%.*}.webm; ffmpeg -y -i "$file" -c:v libvpx-vp9 -b:v $bitrate -pass 1 -speed 4 -c:a libopus -f webm /dev/null -async 1 -vsync passthrough && \ ffmpeg -i "$file" -c:v libvpx-vp9 -b:v $bitrate -pass 2 -speed 1 -c:a libopus "$out" -async 1 -vsync passthrough; done; } then I do like: video2webm 300k video.mp4 so this way I get smaller video when necessary. Jean