C cante Member Dec 29, 2023 #1 Hello, I am trying to develop an app that fetches videos from my online server and puts them in a customlistview. Basically, I want to show the video thumbnails in the customlistview just like YouTube
Hello, I am trying to develop an app that fetches videos from my online server and puts them in a customlistview. Basically, I want to show the video thumbnails in the customlistview just like YouTube
Erel B4X founder Staff member Licensed User Longtime User Dec 31, 2023 #2 You will need to generate the thumbnails on the server side. You can use ffmpeg tool for this. Once you have the images, then the simplest solution is to use SMM: [B4X] SimpleMediaManager (SMM) - framework for images, videos and more Upvote 0
You will need to generate the thumbnails on the server side. You can use ffmpeg tool for this. Once you have the images, then the simplest solution is to use SMM: [B4X] SimpleMediaManager (SMM) - framework for images, videos and more
aeric Expert Licensed User Longtime User Dec 31, 2023 #3 I would store the thumbnail image and the app can download it from the path saved inside a database. Then I can have a custom thumbnail. Upvote 0
I would store the thumbnail image and the app can download it from the path saved inside a database. Then I can have a custom thumbnail.
C cante Member Dec 31, 2023 #4 Erel said: You will need to generate the thumbnails on the server side. You can use ffmpeg tool for this. Once you have the images, then the simplest solution is to use SMM: [B4X] SimpleMediaManager (SMM) - framework for images, videos and more Click to expand... Thank you Erel for the timely response. Upvote 0
Erel said: You will need to generate the thumbnails on the server side. You can use ffmpeg tool for this. Once you have the images, then the simplest solution is to use SMM: [B4X] SimpleMediaManager (SMM) - framework for images, videos and more Click to expand... Thank you Erel for the timely response.
C cante Member Dec 31, 2023 #5 aeric said: I would store the thumbnail image and the app can download it from the path saved inside a database. Then I can have a custom thumbnail. Click to expand... Thank you very much for this great suggestion. Upvote 0
aeric said: I would store the thumbnail image and the app can download it from the path saved inside a database. Then I can have a custom thumbnail. Click to expand... Thank you very much for this great suggestion.