Update: Apple replied to my bug report that this issue is fixed in the latest version of Safari though you may still want to use this workaround to be compatible with older version of Safari. Recently I was working on a web App that required some date comparisons in Javascript. […]
bloggingthumb
I recently needed to extract a 30 second video clip, and remove the audio, from a 2 hour mkv video. The easiest way was to use the command line tool ffmpeg as follows: ffmpeg -ss HH:MM:SS.FFF -i movie.mkv -t 00:30 -qscale 0 -an out.mp4 Where HH:MMSS:FFF was the starting time […]
Extract video clip using Ffmpeg
I am building the Android Open Source Project (AOSP) from source for the Pine 64 board using the community v6 version. One of the things I needed to do was remove the GoogleHome launcher from the build. I found I had to edit this file: device/softwinner/tulip-chiphd/device.mk by adding the following […]
Using a custom launcher with the Android Open Source Project ...
I am building the Android Open Source Project (AOSP) from source for the Pine 64 board using the community v6 version. One of the things I needed to do was add a pre-compiled .apk file to the /system/priv-app folder. Finding information on how to create an Android.mk file to do […]