extension
extension copied to clipboard
[Feature Request] Mono Audio Checkbox
Sometimes with old movie uploads or certain files have messed up stereo tracks on youtube (for example only have sound on one side) Example of messed up audio: https://www.youtube.com/watch?v=Mh2GQmfN-AI
Either in the volume category or the misc category, add a checkbox to make mono audio (I am not sure if having it be global or video specific one time click would be better for user experience).
Basically to implement this, take all the sounds from channels, add then together, then divide by number of channels, that is the new output of all the channels.
@gigapixelguy You can’t even imagine how labor-intensive this is. As far as I know, there is no way to activate this functionality in the youtube stock player. I was working on a module for downloading videos from Youtube. And getting the file is not at all easy.
- You can get the audio file track separately,
- Next pass the link to the file to this code https://stackoverflow.com/questions/69726033/javascript-new-audiocontext-mono-to-stereo-not-wordking It is impossible to find out which channel is being used. Often right but not always - https://www.youtube.com/watch?v=e8ODm-F9-IM Therefore, it is obvious that you need to use the built-in functions of your OS or audio card a) https://www.reddit.com/r/youtube/comments/l5f0qo/force_audio_to_play_as_mono/ b) https://superuser.com/questions/351249/how-do-i-force-single-only-channel-audio-in-youtube-flash-videos-to-play-in-bo
From my experience, some users have bad contact on the audio output connector. For example, if there is no Ground, then only the difference between the channels will sound. If possible, it is better to output the sound digitally -HDMI,S/PDIF
@gigapixelguy You can’t even imagine how labor-intensive this is. As far as I know, there is no way to activate this functionality in the youtube stock player. I was working on a module for downloading videos from Youtube. And getting the file is not at all easy.
- You can get the audio file track separately,
- Next pass the link to the file to this code https://stackoverflow.com/questions/69726033/javascript-new-audiocontext-mono-to-stereo-not-wordking It is impossible to find out which channel is being used. Often right but not always - https://www.youtube.com/watch?v=e8ODm-F9-IM Therefore, it is obvious that you need to use the built-in functions of your OS or audio card a) https://www.reddit.com/r/youtube/comments/l5f0qo/force_audio_to_play_as_mono/ b) https://superuser.com/questions/351249/how-do-i-force-single-only-channel-audio-in-youtube-flash-videos-to-play-in-bo
From my experience, some users have bad contact on the audio output connector. For example, if there is no Ground, then only the difference between the channels will sound. If possible, it is better to output the sound digitally -HDMI,S/PDIF
Thanks for the information.