You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
1.4 KiB

# Firefox in Docker
## Launching the Firefox
8 years ago
```
alias firefox="docker-compose -f ~/docker/firefox/docker-compose.yml run --rm firefox"
8 years ago
```
# Troubleshooting
## Audio
Following are some useful commands which you can use for testing the audio
8 years ago
```
docker-compose run --rm --entrypoint /bin/bash firefox
apt-get update && apt-get install -y alsa-utils
aplay -L
pactl list
cat /dev/urandom | aplay -
arecord -D pulse -f cd | aplay -D pulse -B 10000 -
WebRTC online test for Microphone, Camera, Network, Connectivity and Throughput
https://test.webrtc.org/
https://webaudiodemos.appspot.com/AudioRecorder/index.html
8 years ago
```
8 years ago
## Video
Go to `about:support` in the Firefox to see whether everything is OK or not.
## Codecs and the HW acceleration
8 years ago
You may want to disable Google's VP8 & VP9 video codecs: "MSE & WebM VP9" and "WebM VP8"
as there is no hardware decoding for them.
To do this, install h264ify extension from
```
https://addons.mozilla.org/en-us/firefox/addon/h264ify/
```
Check the codecs
8 years ago
```
https://www.youtube.com/html5
```
8 years ago
Be careful playing with the following settings!
http://www.sitepoint.com/firefox-enable-webgl-blacklisted-graphics-card/
```
about:config
layers.acceleration.force-enabled;true
gl.require-hardware;true
webgl.force-enabled;true
about:support
```
8 years ago
# Extra
8 years ago
## Extensions
8 years ago
Here is the list of Firefox's extensions I am using
8 years ago
```
https://www.eff.org/privacybadger
https://adblockultimate.net/
```