Skip to content

Instantly share code, notes, and snippets.

@eugene-lazarev
eugene-lazarev / m4a_to_telegram_voice_message.sh
Created June 28, 2021 11:18
transcode .m4a audio to .ogg — ready to send as "voice message" in telegram
ffmpeg -i file.m4a -acodec libopus file.ogg -y
<network-security-config>
<base-config>
<trust-anchors>
<certificates src="system" />
<certificates src="user" />
</trust-anchors>
</base-config>
</network-security-config>
@eugene-lazarev
eugene-lazarev / ffmpeg_for_html5_background_video.sh
Created February 6, 2020 10:12
ffmpeg for background html5 video
ffmpeg -i video.mp4 -c:v libx264 -profile:v main -level 3.0 -movflags faststart -r 25 -g 2 -an video_html5.mp4