I am following https://github.com/lukhnos/objectiveflickr to achieve the sharing on flickr functionlity.
The Library has methods to send input stream to flickr:
NSInputStream *imageStream = [NSInputStream inputStreamWithData:imageData];
[request uploadImageStream:imageStream suggestedFilename:@"Foobar.jpg" MIMEType:@"image/jpeg" arguments:[NSDictionary dictionaryWithObjectsAndKeys:@"0", @"is_public", nil]];
Since NSData is sent, I think changing the MIMEType will do the job. I am stuck with the invalid signature problem on the authentication process and cannot check it myself, but will solve it somehow. For now I just wanted to know that If I want to share video on flickr. Is that even possible?