Malwinder Singh

Results 8 comments of Malwinder Singh

@esafirm Can you please tell when it will be ready?

@esafirm How to filter media files?

You website is not working.. can u pls fix it?

Getting same issue. I have even added Runtime permissions.

Duplicate of #90 See my comment on it. I hope that helps.

I fixed it by: ``` val retriever = MediaMetadataRetriever() retriever.setDataSource(videoPath) val width = Integer.valueOf(retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_WIDTH)) val height = Integer.valueOf(retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_HEIGHT)) val rotation = Integer.valueOf(retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_ROTATION)) val compressedVideoFilePath = SiliCompressor .with(context) .compressVideo(videoPath, context.cacheDir.path, if...

Duplicate of #90 See my comment on it. I hope that helps.

Here is solution to problem: onValueSelected getting called even on unfilled (empty) bar area (top of filled bar area): ``` /** * Selected Y Index on user tap */ private...