Video X264 encoding

Last update : September 17, 2013

I wanted to know the best X264 parameters to encode my personal movies with ffmpeg for my family website. I rendered 375 frames (15 seconds) from the open-source Big-Buck-Bunny image files (360-png) with different settings, starting at frame 1.113. This post refers to my former post about AVC (H264) video settings.

The common parameters for the encoding are :

  • -vcodec libx264
  • -f image2
  • -pix_fmt yuv420p (chroma subsampling : 4:2:0)
  • -tune animation
  • resolution (pal) : 640 x 360 pixels
  • frame rate : 25 fps

1st Test

The ffmpeg settings for the first test series are :

  • -preset veryslow
  • -profile:v baseline
  • -level 3
  • -refs 1

The value of the Constant Rate Factor (CRF) was changed from 20 to 32, in steps of 3. Here are the results :

CRF Filesize (KB) Videostream (Kbps) Bits/(Pixel*Frame)
 20  2.430  1.326  0.230
 23  1.472  802  0.139
 26  877  478  0.083
 29  531  289  0.050
 32  338  183  0.032

ffmpeg_crf

Visually the quality difference between the movies with an CRF = 20 and CRF = 32 is not perceptible. These are snapshots of the two movies :

CRF = 20  Size = 39,6 KB

CRF = 20  Image size = 39,6 KB

CRF = 32 Size = 32,6 KB

CRF = 32  Image size = 32,6 KB

2nd Test

The ffmpeg settings for the second test series are :

  • -crf : 20
  • -profile:v baseline
  • -level 3
  • -refs 1

The three presets veryslow, medium and ultrafast have been used. Here are the results :

Preset Filesize (KB) Videostream (Kbps) Bits/(Pixel*Frame)
veryslow 2.430 1.326 0.230
medium 2.729 1.489 0.258
ultrafast 5.276 2.880 0.500

ffmpeg_preset

Presets are designed to reduce the work needed to generate sane, efficient commandlines to trade off compression efficiency against encoding speed. The default preset is medium. If you specify a preset, the changes it makes will be applied before all other parameters are applied.

The X264 settings of the different presets are :

ultrafast

  • –no-8x8dct
  • –aq-mode 0
  • –b-adapt 0
  • –bframes 0
  • –no-cabac
  • –no-deblock
  • –no-mbtree
  • –me dia
  • –no-mixed-refs
  • –partitions none
  • –rc-lookahead 0
  • –ref 1
  • –scenecut 0
  • –subme 0
  • –trellis 0
  • –no-weightb
  • –weightp 0

veryslow

  • –b-adapt 2
  • –bframes 8
  • –direct auto
  • –me umh
  • –merange 24
  • –partitions all
  • –ref 16
  • –subme 10
  • –trellis 2
  • –rc-lookahead 60

3rd Test

The ffmpeg settings for the third test series are :

  • -preset veryslow
  • -crf : 20
  • -profile:v baseline
  • -level 3

The numer of reference frames was changed to the values 1, 2, 4, 8 and 16. Here are the results :

Ref frames Filesize (KB) Videostream (Kbps) Bits/(Pixel*Frame)
1 2.430 1.326 0.230
2 2.378 1.297 0.225
4 2.203 1.201 0.209
8 2.079 1.134 0.197
16 2.027 1.106 0.192

ffmpeg_ref_frames

4th Test

The ffmpeg settings for the fourth test series are :

  • -crf : 20
  • -profile:v main
  • -level 3

The numer of reference frames was changed to the values 4, 8 and 16 for the two presets veryslow and medium (4 is the minimum number of reference frames of the main profile). Here are the results :

Preset Ref frames Filesize (KB) Videostream (Kbps) Bits/(Pixel*Frame)
 veryslow 4 1.517 826 0.143
 veryslow 8 1.411 768 0.133
 veryslow 16 1.389 756 0.131
 medium 4 1.700 926 0.161
 medium 8 1.636 891 0.155
medium 16 1.607 875 0.152

ffmpeg_ref_frames_x

5th Test

The ffmpeg settings for the fifth test series are :

  • -preset veryslow
  • -crf : 20

The profiles and levels have been changed. Here are the results :

Profile@Level Filesize (KB) Videostream (Kbps) Bits/(Pixel*Frame)
baseline@3.0 2.430 1.326 0.230
main@3.0 1.517 826 0.143
high@3.0 1.405 765 0.133

ffmpeg_profiles

Profiles are not set by default in X264. If a profile is specified, it overrides all other settings, so that a compatible stream will be guaranteed.

The X264 settings of the different profiles are :

baseline

  • –no-8x8dct
  • –bframes 0
  • –no-cabac
  • –cqm flat
  • –weightp 0
  • No interlaced
  • No lossless

main

  • –no-8x8dct
  • –cqm flat
  • No lossless

high

  • No lossless

A level inside a profile specifies the maximum picture resolution, frame rate and bit rate that a decoder may use.

The complete detailed informations about settings are available in the x264.exe inbuild documentation, accessible with the command x264 –fullhelp .

The following list provides some links to websites with more informations about ffmpeg and x264 video encoding :

5.1 Surround Sound and FLAC

Suggested configuration for 5.1 music listening (Wikipedia)

Suggested configuration for 5.1 music listening (Wikipedia)

Five point one (5.1) is the name for six channel surround sound multichannel digital audio systems, most commonly used in commercial cinemas and home theaters. It uses 5 full bandwidth channels (the “five”) and one low-frequency effects channel (the “point one”). The 5.1 system is used by Dolby Digital (AC3 codec), Sony Dynamic Digital Sound (SDDS), Digital Theater Systems (DTS), and Dolby Pro Logic II.

All 5.1 systems use the same speaker channels and configuration, having a front left (L) and right (R), a center channel (C), two surround channels (SL and SR) and a subwoofer (LFE).

Audio files for 5.1 systems are often encoded with the lossless FLAC codec. FLAC is an open format with royalty-free licensing and a reference implementation which is free software. FLAC has support for metadata tagging, album cover art, and fast seeking.

Lossy compression and encoding schemes for digital audio are MP3 and its successor AAC (Advanced Audio Coding). AAC has been standardized by ISO and IEC, as part of the MPEG-2 and MPEG-4 specifications. AAC is the standard audio format for YouTube, Apple (iPhone, iPod, iPad, …) and Sony devices (Playstation, Walkman, …). AAC is more advanced than the Dolby Digital AC3 codec.

Open Source Films

Last update : July 9, 2013

Open source films (open-content movies, free-content movies or open movies) are films which are produced and distributed by using free and open-source software methodologies. Their sources are freely available and the licenses used meet the demands of the Open Source Initiative (OSI) and the Free Cultural Works.

A list of free-content films is available at Wikipedia.

Here are the open source films where the sources are available.

1. Films made by Blender Institute, part of the Blender Foundation, a non-profit organization, chaired by Ton Roosendaal, responsible for the development of Blender, an open source program for three-dimensional modeling  :

Open source film Elephants Dream

Elephants Dream

This 10 minutes short movie is about complexities of a machine and how the characters deal with this complexity and ambiguity.

Open source film Big Buck Bunny

Big Buck Bunny

This short-animated movie is about three critters that poke fun at other jungle animals including a big rabbit called Big Buck Bunny. Therefore Big Buck starts to seek vengeance for himself and his beloved butterflies.

Open source film Sintel

Sintel

A girl called Sintel is searching for her dragon friend Scales.

Open source film Tears of Steal

Tears of Steel

This open source film is about a group of warriors and scientists, who gathered at the Oude Kerk in Amsterdam to stage a crucial event from the past, in a desperate attempt to rescue the world from destructive robots.

The Blender Institute created also an open video game, called Yo Frankie!, based on the universe and characters of the film Big Buck Bunny.

2. Open source films made by other creators and teams :

The boy who never slept

Boy who never slept

This film is about a 23 year-old writer who has felt in love with a 16 year old school girl.

.re_potemkin

.re_potemkin

This project is a re-build of the 1925 silent movie Battleship Potemkin which is in public domain now.

Oceania

Oceania

A story of two teenagers who deal with their shattered family-life in a small California coastal town.

Sita Sings the Blues

Sita Sings the Blues

This 80-minutes animated feature film has been created by a single person and is based on the renowned Indian Sanskrit epic The Ramayana.

Jathias Wager

Jathias Wager

A science fiction film about a young man living in an isolated community of humans who must make a life changing decision about his future species.

Valkaama

Valkaama

Three young people are searching for a utopian society in northern Finland called Valkaama; a society that is full of harmony, peace and poetry.

More than ten additional open-content films will be released in the next future.

Different compressed and lossless encoded versions of open-source films are available at Xiph.org. More informations about open source films are provided at the following links :

Cooltext Graphics Generator and Vector Studio

Cool Text is a free graphics generator for web pages and anywhere else you need an impressive logo without a lot of design work. Online since 1998, Cooltext servers have rendered over 300 million free images. Cooltext features a free font archive with over 1,200 fonts available and offers also automatic button creation.

image  created with Cooltext Graphics Generator

Image created with Cooltext Graphics Generator

Cooltext was founded by Bryan Livingston, a small business owner (Livingston Technologies) and computer programmer living in Lehi, Utah. He is also the author of the now free vector drawing program Vector Studio.

Screenshots

Last update: August 9, 2016

Screenshots, screen dumps or screen captures are images taken by the computer user to record the visible items displayed on the monitor or another visual output device.

Windows
Print Screen for screenshotsThe windows key PrtScnSysRq captures the entire screen and copies it to the clipboard. You find this key at the upper right of your keyboard. Holding down the Alt key when pressing the PrtScnSysRq key, Windows captures only the currently active window and copies it to the clipboard. In Windows 10, use the Windows Log key together with the PrtScnSysRq key to capture the whole screen which is saved into a Screenshots Folder inside the Pictures directory.

If you want to capture regions or windows with scrolling or other features, you need a special software. My favorite tool is Hypersnap. I use the licensed version 6.81.03. The current available version, with more features, is 8.04.02.

There exist also screen-capture tools as extensions or plugins for web browsers, for example Awesome Screenshot.

To test how a web page looks on different real browsers and different operating systems, you can use Browsershots run by a community cooperation. Public beta for Browsershots started in February 2005. The screenshots are made on distributed computers that are run by volunteers. The results are uploaded to a central server. Everybody can add URLs to the job queue on this server, the usage is free, but you can buy priority processing.

Properties of command prompt window

Properties of command prompt

Command Prompt Window
The marked content or the full content of the command prompt window is copied to the clipboard with the menu popped up by right clicking the window. The properties of the command prompt window can be changed in the pop-up menu Properties by right-clicking in its title bar.

Apple iOS
To take screenshots on an Apple iOS device, you press first the Sleep/Wake (Lock) button and than at once the Home button. The screen flashes white. The device captures the entire screen and saves it as a photo in .jpg format. You find the results in the photo app inside the Camera Roll folder on an iPhone / iPod Touch or inside Saved Photos folder on an iPad.

A web scroll capture app to take screenshots of scrolling web pages, developed by Jaye Jung, is available for free at the Apple AppStore.

Android
As of Android 4.0, screenshots can be taken by pressing and holding the Volume Down button and the Sleep/Wake button. They are stored in.png format in the Gallery app inside the Screenshots folder.

Most Android screenshot apps on the market offering more features require root access. One app, Screenshot Ultimate, has been designed to replace every other screenshot app out there by using over 10 different capture methods. Unfortunately, this app is incredibly buggy, unstable and complicated.

Blackberry
To take screenshots of a Blackberry screen, have a look at an earlier post.

Apple Mac
To capture the entire screen, press Command (⌘)-Shift-3. The screenshot is added to your desktop. To capture an area of the screen, press Command (⌘)-Shift-4, and then drag the crosshair pointer to select the area. To capture a specific window, press Command (⌘)-Shift-4, press the Space bar, move the camera pointer over the window to highlight it, and then click. Learn more at the Apple support website.

Linux Debian
An open-source feature-rich screenshot program for Linux is Shutter. Pressing the print-key takes a copy of the whole screen. Screenshots are saved into the Pictures folder.

Shutter Screenshot Linux Program

Shutter Screenshot Linux Program

Android’s Jelly Bean 4.1.1. user guide

The main Android’s buttons are :

  • Home-16 : Home
  • Back-16 : Back
  • Recent-Apps-16 : Recent
  • Menu-16 : Menu

A running app is minimized by tapping the Home icon. A recently used app is revealed by tapping the Recent icon. To see more recent apps, slide down. To switch to an app, tap a screenshot from the Recent apps list. To clear a recent app from the list, swipe it sideways. You don’t need to close a running app for every instance on the Android system. If you want however to stop an app, run the Settings app, tap Applications under DEVICE, select the app you want to close, tap the Force stop button and tap OK to confirm. At  the same settings you can uninstall the app. To rearrange icons on the screen, touch and hold any icon for a second and drag the icon to a different spot on the screen. You can also drag an icon to the left or right edge of the screen until it starts sliding to drop the icon to another screen.  To remove an icon, touch and hold it until the Remove icon appears on the top, the drag and drop the icon over the Remove icon.

To group similar apps together, you can create a folder by holding an icon for a second to reveal a create folder button at the top of the screen. Give it a name and drag the wanted icons into this folder. You can rename a folder at any time by tapping its name to rename. To turn off Auto-Correction, open the app Settings and select Language & input under PERSONAL and enter the keyboard tab to change the options.

The following list provides links to additional informations about this topic :

UPnP Technology and Test Tools

Universal Plug and Play (UPnP) is a set of networking protocols that permits networked devices, such as personal computers, printers, gateways, servers and mobile devices to seamlessly discover each other’s presence on the network and establish functional network services for data sharing, communications, and entertainment. UPnP is intended primarily for residential networks. No special device driver support is necessary, common network protocols are used (TCP/IP, HTTP, XML, SOAP). UPnP uses UDP port 1900 and TCP port 2869.

The UPnP technology is promoted by the UPnP Forum. Formed in October 1999, the UPnP Forum is an industry initiative of more than 1000 leading companies in computing, printing, networking, consumer electronics and home appliances. A huge library of UPnP resources is available at the website of the UPnP Forum.

UPnP was published as an international standard, ISO/IEC 29341, in December 2008.

The foundation for UPnP networking is IP addressing, either by DHCP or by AutoIP (zero configuration networking). The next step in UPnP networking is discovery, based on the Simple Service Discovery Protocol (SSDP). SSDP allows a device to advertise its services to control points, for example to media servers (Serviio) on the network. The next step is to learn more about the discovered device and its capabilities by retrieving the device’s XML description from the URL provided by the device in the discovery message. Now the control point can send actions to a device’s service using the Simple Object Access Protocol (SOAP).

An additional capability of UPnP networking is event notification, or eventing. The event notification protocol defined in the UPnP Device Architecture is known as General Event Notification Architecture (GENA). The final step in UPnP networking is presentation, usually by providing an URL of a webpage loaded in a browser.

UPnP AV is an audio and video extension of UPnP, referenced in specifications published by other organizations, including the Digital Living Network Alliance (DLNA).

Problems with UPnP are lack of authentication and vulnerabilities with the risk that UPnP devices can be accessed and/or manipulated by malicious web sites.

A complete set of open source tools for creating and testing UPnP solutions is provided by Intel. They include Device Spy, a generic control point, and Device Builder, a code generation tool. In all, there are 11 tools in this package that range from low-level debugging to full reference tools :

  • Device Spy
  • Device Sniffer
  • Network Light
  • Device Builder
  • Device Relay
  • Device Validator
  • Service Author
  • AV Media Controller
  • AV Media Server
  • AV Media Renderer
  • AV Wizard

Network Light is a software model of an UPnP device to show the basic functions of the UPnP protocol. The light can be switched on/off or dimmed. The following snaps show how

network_light

UPnP Network Light OFF / ON / DIMMED

UPnP Device Spy Tool

UPnP Device Spy Tool

setLoadLevelTarget

UPnP Device Spy Tool : Invoke action DIM 50%

UPnP Device Spy Tool : Invoke action ON

UPnP Device Spy Tool : Invoke action ON

UPnP Device Sniffer Tool

UPnP Device Sniffer Tool

Another UPnP test tool, called UPnP Inspector, has been developed by Coherence. The Inspector is an UPnP Device and Service analyzer, and a debugging tool, based on the Coherence DLNA/UPnP framework. It is loosely modeled after the Intel UPnP Device Spy and Device Validator.

UPnP Inspector

UPnP Inspector

UPnP Inspector logs

UPnP Inspector logs

UPnP Inspector action

UPnP Inspector action

UPnP Inspector details

UPnP Inspector details

 

The american Human Brain Activity Map Project

Last update : August 10, 2013

Human Brain Activity Map Project

Cartoon by Jordan Adwan, The New Yorker, 2013

Several weeks after the public announcement of the Human Brain Project as a european research FET Flagship by the European Commission, the US administration unveiled the planning of a decade-long scientific effort to examine the workings of the human brain and build a comprehensive map of its activity, seeking to do for the brain what the Human Genome Project did for genetics. The project called Brain Activity Map (BAM) will include federal agencies, private foundations and teams of neuroscientists and nanoscientists in a concerted effort to advance the knowledge of the brain’s billions of neurons and gain greater insights into perception, actions and, ultimately, consciousness. Moreover, the project holds the potential of paving the way for advances in artificial intelligence.

The Human Brain Activity Map initiative will be organized by the Office of Science and Technology Policy (OSTP). Partners will be the National Institutes of Health (NIH), the Defense Advanced Research Projects Agency (DARPA), the National Science Foundation (NSF), the Howard Hughes Medical Institute (HHMI) in Chevy Chase, the Allen Institute for Brain Science in Seattle and other big actors as Google and Microsoft.

Gary Marcus, a professor at New York University (N.Y.U.), recommends to endow five separate projects rather than putting a huge amount of money into a single project. He proposes to address the most fundamental unsolved questions in neuroscience :

  • Decipher the basic language of the brain : What is the basic element of neural computation ? What is the basic scheme by which symbolic information (like sentences) are stored ?
  • Understand the rules governing how neurons organize into circuits
  • Determine which circuits to use in a given situation and understanding how the brain communicates information from one region to another (neural plasticity and neural development)
  • Find the relation between brain circuits, genes, and behavior
  • Develop new techniques for analyzing and observing brain function

The following list provides some links to additional informations about the Human Brain Activity Map Project :

Online music : Last.fm, Deezer and Spotify

A renowned online music service is iTunes, based on SoundJam MP and launched by Apple in 2001. Jeff Robbin and Bill Kincaid developed SoundJam MP in 1998 with assistance from Dave Heller. They chose Casady & Greene to publish SoundJam MP. Jeff Robbin is now the vice president of consumer applications at Apple Inc and he remains the lead software designer for iTunes.

Other online music services are less known, among them Last.fm, Deezer and Spotify.

Last.fm is a music website, founded in the United Kingdom in 2002, acquired by CBS Interactive in May 2007. Using a music recommender system called Audioscrobbler, Last.fm builds a detailed profile of each user’s musical taste by recording details of the songs the user listens to. Audioscrobbler began as a computer science project of Richard Jones. Last.fm was founded in 2002 by Felix Miller, Martin Stiksel, Michael Breidenbruecker and Thomas Willomitzer as an internet radio station and music community site. Last.fm won the Europrix 2002 and was nominated for the Prix Ars Electronica in 2003. Last.fm and Audioscrobbler were merged in 2005 and are still active today. A new desktop player was released on January 15, 2013.

Deezer is a French web-based music streaming service. It allows users to listen to music on various devices. It currently has more than 20 million licensed tracks and over 30,000 radio channels. The first version of Deezer, called Blogmusik, has been developed by Daniel Marhely in Paris in 2006. The company became succesful in 2010 when they entered a partnership with Orange. Deezer has three account types : discovery (free), premium and premium-plus. Deezer was launched in Luxembourg in March 2012 in partnership with Tango.

Spotify is a commercial music streaming service providing DRM-protected content from a range of major and independent record labels, including Sony, EMI, Warner Music Group and Universal. The service was launched in October 2008 by Swedish startup Spotify AB. The company was founded by Daniel Ek and Martin Lorentzon. Since November 2012 the service is also available in Luxembourg.

The system is currently accessible using Microsoft Windows, Mac OS X, Linux, iOS, Android, BlackBerry, Windows Mobile, Windows Phone, S60 (Symbian), Sonos, and other devices. Music can be browsed by artist, album, record label, genre, playlist, radio channels, as well as by direct searches. About 20 million songs are available since December 2012. Some artists are missing because of licensing restrictions imposed by the record labels or by the artists. The Beatles, for example, are not available because of a digital distribution agreement that is exclusive to iTunes.

Three subscriptions, with trials, are available : open, unlimited, premium. A free service is only available upon invitation. Spotify operates under a so-called ‘Freemium’ model, which is offering simple and basic services free for the user to try and more advanced or additional features at a premium price based ont the Open Music Model (OMM). The incorporation of DRM diverges however from the OMM.

In 2011 Spotify was announced as a technology pioneer by the World Economic Forum (WEF).