Systematic Architecture [EN]
The blog on systems development/architecture, to be a beautiful, artistic one.
Showing posts with label
sound
.
Show all posts
Showing posts with label
sound
.
Show all posts
Sunday, 16 August 2015
Reset Audio on Windows
How to restart audio on Windows =============================== Symptom ------- On Windows 10 I actually run across frozen audio device often that it doesn't sound at all and something keeps the audio handle. Solution -------- Run this commands as admin. ```bash net stop audiosrv net stop AudioEndpointBuilder net start audiosrv ```
ffmpeg converts double length on MacOS
ffmpeg creates double length of mp3 from mp4 on MacOS ======================================================= Symptom -------- When you try to extract a sound file from a video file on MacOS, ```bash $ ffmpeg -i video.mp4 sound.mp3 ``` you'll get a sound file but it has double the length of the video, e.g. 10' in a video to 20' in a sound. Solution -------- You'd better put an option (`-write_xing 0`) to evade automatic treatment on a command line ```bash $ ffmpeg -i video.mp4 -write_xing 0 sound.mp3 ```
Older Posts
Home
Subscribe to:
Posts (Atom)