## Overview Regarding [this](https://github.com/PyAV-Org/PyAV/issues/699) issue of mine earlier. Would it be possible to expose field `AvFormatContext::audio_codec_id` for user to force specific audio codec? ## Existing FFmpeg API Documentation of the field [here](https://ffmpeg.org/doxygen/3.3/structAVFormatContext.html#ab179ade0dbe905ab2867b7001bf618ec). ## Expected PyAV API Maybe add this to `av.open()` to be optional argument. Example: ``` av.open('alsa-device', format='alsa', audio_codec='pcm_s32le') ``` I could also take this one and make contribution to this awesome library if this is considered something needed in general. Any thoughts?