What are the differences and similarities between ffmpeg, libav, and avconv?

Libav is dead Last commit was on 2019-08-21. Use FFmpeg. Confusing messages The messages mentioned in the question are rather misleading and understandably a source of confusion. The fork was basically a non-amicable result of conflicting personalities and development styles within the FFmpeg community. The real ffmpeg vs the fake one For a while both … Read more

How to install python3 version of package via pip on Ubuntu?

Ubuntu 12.10+ and Fedora 13+ have a package called python3-pip which will install pip-3.2 (or pip-3.3, pip-3.4 or pip3 for newer versions) without needing this jumping through hoops. I came across this and fixed this without needing the likes of wget or virtualenvs (assuming Ubuntu 12.04): Install package python3-setuptools: run sudo aptitude install python3-setuptools, this … Read more

Nginx no-www to www and www to no-www

HTTP Solution From the documentation, “the right way is to define a separate server for example.org”: server { listen 80; server_name example.com; return 301 http://www.example.com$request_uri; } server { listen 80; server_name www.example.com; … } HTTPS Solution For those who want a solution including https://… server { listen 80; server_name www.domain.com; # $scheme will get the … Read more