mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-02-14 17:49:53 +00:00
doc(ffmpeg): Add DNS resolution note and example
This commit is contained in:
@@ -19,3 +19,16 @@ that produce the most similar quality by default.
|
||||
```sh
|
||||
ffmpeg -i input.m4a output.mp3
|
||||
```
|
||||
|
||||
Important information per https://johnvansickle.com/ffmpeg/release-readme.txt
|
||||
|
||||
> Notes: A limitation of statically linking `glibc` is the loss of DNS resolution. Installing `nscd` through your package manager will fix this.
|
||||
|
||||
*This is relevant if using ffmpeg to relay to an RTMP server via domain name.*
|
||||
|
||||
```sh
|
||||
# for example, this will not work without `nscd` installed.
|
||||
|
||||
ffmpeg -re -stream_loop -1 -i "FooBar.m4v" -c copy -f flv rtmp://stream.example.com/foo/bar
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user