unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#42607: guix.gnu.org/videos don't play on iOS
@ 2020-07-29 23:08 Tobias Geerinckx-Rice via Bug reports for GNU Guix
  2020-07-29 23:26 ` Leo Famulari
  0 siblings, 1 reply; 3+ messages in thread
From: Tobias Geerinckx-Rice via Bug reports for GNU Guix @ 2020-07-29 23:08 UTC (permalink / raw)
  To: 42607

[-- Attachment #1: Type: text/plain, Size: 569 bytes --]

Guix,

A sympathetic PotentialUser reported that they were unable to play 
any of our home-page videos on their iPad.  Even Firefox didn't 
work.

Leo pointed out that we use the VP9 and Opus codecs — both of 
which are still not supported by Apple[0][1].  Nor is Vorbis.

nginx can easily sniff iOS/Macintosh user agents and serve them an 
inferior format to match, such as h264 with MP3 audio, which can 
both be encoded using free software in Guix.

Kind regards,

T G-R

[0]: https://caniuse.com/#feat=opus
[1]: https://caniuse.com/#search=vp9

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#42607: guix.gnu.org/videos don't play on iOS
  2020-07-29 23:08 bug#42607: guix.gnu.org/videos don't play on iOS Tobias Geerinckx-Rice via Bug reports for GNU Guix
@ 2020-07-29 23:26 ` Leo Famulari
  2021-02-01 20:54   ` Leo Famulari
  0 siblings, 1 reply; 3+ messages in thread
From: Leo Famulari @ 2020-07-29 23:26 UTC (permalink / raw)
  To: 42607

[-- Attachment #1: Type: text/plain, Size: 1051 bytes --]

On Thu, Jul 30, 2020 at 01:08:48AM +0200, Tobias Geerinckx-Rice via Bug reports for GNU Guix wrote:
> nginx can easily sniff iOS/Macintosh user agents and serve them an inferior
> format to match, such as h264 with MP3 audio, which can both be encoded
> using free software in Guix.

Here is where the videos are created:

https://git.savannah.gnu.org/cgit/guix/videos.git/tree/Makefile

------
$(NUMBER).clino.$(VIDEO).webm: \
	 $(VIDEO)/$(LOCALE_LANG)/durations.txt        \
	 $(VIDEO)/$(LOCALE_LANG)/audios/all.mp3	
		ffmpeg -y -f concat -vsync cfr \
		-i $(VIDEO)/$(LOCALE_LANG)/durations.txt \
		-i $(VIDEO)/$(LOCALE_LANG)/audios/all.mp3 \
		-c:a libopus -b:a 192k \
		-c:v libvpx-vp9 -crf 31 -b:v 0 -pix_fmt yuv420p \
		-af apad -shortest \
		-vf fps=25 -threads 4 $(VIDEO)/$(LOCALE_LANG)/videos/$@;
		make clean_noCli
------

So, we'd need to add a target that did "-c:a copy -c:v libx264" and add
some logic to create two videos instead of one. I didn't look into it
closely yet to see if that will be simple or not.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#42607: guix.gnu.org/videos don't play on iOS
  2020-07-29 23:26 ` Leo Famulari
@ 2021-02-01 20:54   ` Leo Famulari
  0 siblings, 0 replies; 3+ messages in thread
From: Leo Famulari @ 2021-02-01 20:54 UTC (permalink / raw)
  To: 42607

[-- Attachment #1: Type: text/plain, Size: 1220 bytes --]

On Wed, Jul 29, 2020 at 07:26:57PM -0400, Leo Famulari wrote:
> > nginx can easily sniff iOS/Macintosh user agents and serve them an inferior
> > format to match, such as h264 with MP3 audio, which can both be encoded
> > using free software in Guix.
> 
> Here is where the videos are created:
> 
> https://git.savannah.gnu.org/cgit/guix/videos.git/tree/Makefile
> 
> ------
> $(NUMBER).clino.$(VIDEO).webm: \
> 	 $(VIDEO)/$(LOCALE_LANG)/durations.txt        \
> 	 $(VIDEO)/$(LOCALE_LANG)/audios/all.mp3	
> 		ffmpeg -y -f concat -vsync cfr \
> 		-i $(VIDEO)/$(LOCALE_LANG)/durations.txt \
> 		-i $(VIDEO)/$(LOCALE_LANG)/audios/all.mp3 \
> 		-c:a libopus -b:a 192k \
> 		-c:v libvpx-vp9 -crf 31 -b:v 0 -pix_fmt yuv420p \
> 		-af apad -shortest \
> 		-vf fps=25 -threads 4 $(VIDEO)/$(LOCALE_LANG)/videos/$@;
> 		make clean_noCli
> ------
> 
> So, we'd need to add a target that did "-c:a copy -c:v libx264" and add
> some logic to create two videos instead of one. I didn't look into it
> closely yet to see if that will be simple or not.

Coming back to this, I don't remember why I suggested "c:a copy". We
would want to transcode the audio as well, because the standard codec is
h264/aac.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-02-01 20:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-29 23:08 bug#42607: guix.gnu.org/videos don't play on iOS Tobias Geerinckx-Rice via Bug reports for GNU Guix
2020-07-29 23:26 ` Leo Famulari
2021-02-01 20:54   ` Leo Famulari

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).