all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Jean Louis <bugs@gnu.support>
To: Michael Heerdegen <michael_heerdegen@web.de>
Cc: help-gnu-emacs@gnu.org
Subject: Re: Where to put media demonstrating Gnu Elpa packages?
Date: Mon, 29 Jul 2019 19:04:18 +0200	[thread overview]
Message-ID: <20190729170418.GR16379@protected.rcdrun.com> (raw)
In-Reply-To: <87v9vl4o1t.fsf@web.de>

* Michael Heerdegen <michael_heerdegen@web.de> [2019-07-29 03:40]:
> Stefan Monnier <monnier@iro.umontreal.ca> 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



  parent reply	other threads:[~2019-07-29 17:04 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-29 16:48 Where to put media demonstrating Gnu Elpa packages? Michael Heerdegen
2018-08-29 17:06 ` Kaushal Modi
2018-08-29 19:43   ` Stefan Monnier
2018-09-01 15:32   ` Michael Heerdegen
2018-09-01 22:27     ` Stefan Monnier
2018-09-01 22:40       ` Michael Heerdegen
2018-09-01 22:55         ` Stefan Monnier
2018-09-01 23:45           ` Michael Heerdegen
2018-09-02  2:48             ` Amin Bandali
2018-09-07  4:42               ` Michael Heerdegen
2019-07-29  1:39           ` Michael Heerdegen
2019-07-29 13:37             ` Stefan Monnier
2019-07-29 17:04             ` Jean Louis [this message]
2019-07-29 21:28               ` Michael Heerdegen
2019-07-29 21:49                 ` Stefan Monnier
2019-07-30  1:05                   ` Michael Heerdegen
2019-07-30  7:54                 ` Jean Louis
2019-07-31  0:29                   ` Michael Heerdegen
2019-08-04  7:22                     ` Jean Louis
2019-08-05  5:40                       ` Michael Heerdegen
2019-08-06 16:45                         ` Jean Louis
2019-08-07  7:02                           ` Michael Heerdegen
2019-08-08 20:43                             ` Jean Louis
2019-08-10 10:48                               ` Michael Heerdegen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190729170418.GR16379@protected.rcdrun.com \
    --to=bugs@gnu.support \
    --cc=help-gnu-emacs@gnu.org \
    --cc=michael_heerdegen@web.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.