In my Android app I have encrypted video files saved in the app's directory (in the filesystem). My goal is to play the video without its previous decryption and saving decrypted file in the filesystem. Is it possible to do it with libvcl library for Android? I've embedded it into my app and read the docs but could not find a way to decrypt video 'on the fly'. If not, what is the best Android library to achieve this?
Related
In my case, when the photos or audio files have been loaded from firebase or played, they should be accessible offline and shouldn't need to be loaded from the URL again.
For that case try saving it to sqlite. Data does not persist when you close the application. So I suggest try to store the data on sqlite. Here's a tutorial on how to implement it.
I have a project in J2ME, writing in net beans 6.9.1
My project is about opening a mp3 file from with a string format file name that generates with a function (not browsing) and plays it.
I have created this program and it works in simulator.
My problem is, how to send all these 300 files to mobile device?
It should be simple to send between users with Bluetooth in future.
I want to know is there any way to package all files in one file and extract them when installing in mobile device?
Or what is the correct way to to that?
Thanks a lot.
Just copy the files JAR and JAD from "project_dir/dist" into your mobile then install it.
Packaging all those 300 mp3 files in your app will result in large jar file size. As you know most of the Java ME mobile phones have very less memory allocated for installing Java ME apps. It is better to provide an option to download all those files form server to SD card when a person use the app for first time.
As Sabin said, it is not a good solution to have all your audio files inside your application, assuming you are using Mobile RMS (Record Management System) which is very limited in size and capabilities; it is better to add a code to open them from your SD card or stream them from server.
I downloaded session record by adding /output/recording.zip?download=zip at the end of the recording URL. Record folder has some .flv and .xml files. How can i play this session? Am i use flv editor?
The recording you download using /output/recording.zip?download=zip query is not the video, it contains form FLV but they will not play.
To play the recording make the recording offline, in Adobe Connect 9 there is an option on recording page "Make Flv" under Actions tab.
You will have to play complete recording to download.
Yes, I think you'll need to use an editor for that.
Usually the way to download an Adobe Connect recording is the one described in the official documentation.
You should only use flv files, not xml files
cameraVoip.flv file for microphone, camera video and screenshare.flv for shared screen (from desktop).
You can also get the start time of these files in the indexstream.xml file, if you know how to work with ffmpeg software or other software, you can combine these files.
But if you can not and only audio and video are important to you and not a text conversation, you can use the program I wrote.
It goes without saying that Adobe Connect files may be corrupted for any reason, so make sure they are safe and then work with Adobe files.
https://github.com/HosseinShams00/AdobeConnectDownloader
I have a file manager app that lets users upload their file, but in some situations they need to upload large files and they don't have access to a ftp client, I was wondering if there's a ready made tool that allowed them to upload files via ftp from the browser, or any other method that supported resuming.
It should also work on ios/android devices. Pre-made configurable free applets might work if you know of one.
It's not a resume-supported solution, but you can check Flash-based uploaded. I prefer swf-upload.
Flash upload will work on Android. iPhone browser (as I know) don't allow uploads.
I am trying save the recorded voice locally in my file system using flex and as3.
I am successful in recording voice and playback again. I am using web application prospective in Flex.
Here I noticed that if I used windowed application, I am successfully saving voice record in my system(using adobe air file system).
Pleas let me know the process of saving recorded file.
You can save VoiceRecord in ByteArray on Flex Side, and send this ByteArray to Server and save there in File or Database
FileReference.save(), but it has to be converted to ByteArray
There is also a open source alchemy c++ plugin someone built for flash that can encode it to an mp3 on the client. Would probably be of great use to you: https://github.com/kikko/Shine-MP3-Encoder-on-AS3-Alchemy