Skip to content
View rfc2822's full-sized avatar
🐑
Looking at sheep
🐑
Looking at sheep

Organizations

@bitfireAT

Block or report rfc2822

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
rfc2822/README.md

My Github Profile

Stats

🟨⬜🟪⬛

Pinned Loading

  1. bitfireAT/davx5-ose bitfireAT/davx5-ose Public

    DAVx⁵ is an open-source CalDAV/CardDAV suite and sync app for Android. You can also access your online files (WebDAV) with it.

    Kotlin 2.4k 113

  2. Convert MKV to MP4 without recoding ... Convert MKV to MP4 without recoding (so that Samsung TV can seek/pause)
    1
    find *.mkv -exec basename -s .mkv '{}' \; | xargs -I{} ffmpeg -i {}.mkv -c copy {}.mp4
    2
    
                  
    3
    parallel ffmpeg -i {.}.mkv -c copy {.}.mp4 ::: *.mkv