Upload multiple files to FTP Server from iPhone - objective-c

For a new project I need to upload some html and jpeg files from iPhone to a FTP Server.
I examined Apples SimpleFTPSample and managed to upload a file.
But what is the correct way to upload more than one file? Do I have to repeat the whole process with creating input- and output streams with username and password for each file or is there a simpler way?
Thank you for any hint!

Related

Play audio file from S3

From my flow I can't play audio files stored in S3.
The playback function from a text file is working correctly.
The ability to play an audio file from the standard library is also broken.
but i want to play my custom WAV files stored in S3.
and it doesn't work or I don't know how to do it !!!!
Amazon Connect has updated contact flows to now allow playing a prompt from S3, https://docs.aws.amazon.com/connect/latest/adminguide/play.html
You can't reference files stored in S3 directly from Connect. You have to upload the wav file into Connect via the UI in the Routing/Prompts section.

How to upload multiples images from ftp media server to cludinary?

I'm looking for a solution to load multiples images from ftp media server to cloudinary. I searched on the net and I found these links:
How can I bulk upload my images?
Bulk upload large images to cloudinary
Data upload options:
If your images are already publicly available online, you can specify their remote HTTP or HTTPS URLs instead of uploading the actual data. In this case, Cloudinary will fetch the image from its remote URL for you. This option allows for a much faster migration of your existing images
There is no information about uploading images from an ftp media server or something like that. All the available solutions are using a script and then upload images one by one.In my case I have on my server many folders of images and in each folder there are many sub-folders and I have about 10000 images.How can I do this?
You can upload to Cloudinary using an FTP source like this (in PHP):
\Cloudinary\Uploader::upload('ftp://username:password#ftp.mydomain.com/my_image.jpg');

Upload medium or larg file size in host (images,multimedia files,...) without ftp protocol

How can make a uploader file in vb6 to work easyly and can be uploade files into host.
For example (images or multimedia files or other format) and size > small size files for exampe > 500kb or 1 mb , 2 mb or upper sizes .
Please help me to can find any way to designed without ftp protocols.
I think it is possible to use of msxml refrences but i don't know how can designed it by msxml .
[thanks]
You could upload to a HTTP like dropbox. The downside of simple HTTP file transfer is that it is fairly easy for somebody to grab your credentials using a common tool like Fiddler. However that is also the case with FTP just a bit harder. The upside to uploading to dropbox is that you could have any file size (providing you have the space on your dropbox account).
I haven't tried using the dropbox upload api yet but you can read the documentation here, take a look at the PUT and POST methods: https://www.dropbox.com/developers/core/docs
If you just wanted to upload to dropbox and you have the dropbox client installed you could just save the file to the dropbox folder on your computer and it would auto upload.

Programmatically add meta data for MP4

I have a server from where a single consumer me download MP4 files. I would like to add the username to the meta-data of the file at the time the user clicks "download". Amazon does something like this for the MP3 files.
Now, a slight variation to this is how would I do the same thing if the files are on Amazon Cloudfront.
Thanks!
You would have to route your request through your web server.
Logged-in user clicks
Web server downloads the MP4 file from S3 to its file system.
Web server uses an MP4 editor to add the correct MP4 metadata to the file.
Web server serves the MP4 file back to the customer as a download.
S3 is dumb file storage, so you can't do any on-the-fly editing or processing. Any such work must occur on a machine with a CPU.
As such, the question you posed could not be accomplished in any meaningful way using CloudFront, since the traffic needs to route back through your server for post-processing anyway.

What to use to upload different file formats(audio,video) in Rails application?

Does carrier wave support file format like .doc ,.pdf and other paper file formats?If not what is out there to use?
what could i use to enable user to upload audio and video in ruby on rails application?
Thank you in advance
Yes, you can upload files of any kind using CarrierWave. For some formats it has built in features that let you post process the uploaded files, for some formats it doesn't. But you can use it with files of any kind. See here for more information.