Upload music via API - deezer

Is there possible to download music from PC/internet into Deezer via API? I've a quick look to their doc but didn't found how to do that. If not, can someone suggest a social music network with music upload API?

Nothing is provided for now to upload music into Deezer through the API, that's why there is no documentation. You have to pass through the website, sorry.

Related

How do I share a video from Instagram to Twitter using IFTTT

I am wondering how to share video from Instagram to Twitter, so that it shows up as a native twitter video. There are multiple apps on IFTTT, but they only work for pictures and not videos.
Has anyone else had this same issue?
I've tried e-mailing the developers, but no luck.
Also there's not as much information available through Google, as I assume this is relatively new thing.
Sadly, IFTTT don't support Twitter videos. These are the only actions they support:
If you're interested in programming something yourself, you can look at the Twitter API for uploading media.
Good luck :-)
As Terence said, IFTTT integrations only support photos.
Alternatively, you can use tweetgram.me to automatically share your Instagram photos and videos as native Tweets.
TweetGram supports videos fully and is free to use.
Disclaimer: I am the developer of TweetGram.

Using Facebook for an online magic contest (Video upload /

I am currently developing a new website / facebook app for an online magic competition. I am hoping most of the functionality can come from Facebook's own services, and would like your feedback on how plausible our goals are.
Essentially there will be two types of users: magicians and voters. Magicians will upload a video of them performing a trick (or select a video they have already uploaded). Voters will vote for their favourite magicians, and be able to post these videos to their wall.
Are these possible:
Video upload to Facebook - I have had a search, but the only method I found uses the depreciated REST API. Is there a newer implementation?
Video download - After a user has uploaded a video are they (or can we) able to download their video from Facebook?
Embedding magicians Facebook videos on the standalone website?
Thank you in advance
You can still upload videos and photos using the graph api. We have done this into galleries for a number of clients.
see here for a picture example (works with other media objects such as videos):
Is it possible to post a status update and adding an image file with facebook graph API?
The problems you may face though are the issues of managing and approving content in the site.
One solution we have found is to combine YouTube API and Facebook to get the best of both worlds. you can now embed a YouTube uploader in your site / app which will post videos into a channel of yours but have an approval app to control what lands. Then add any voting mechanism of your choice to the stream of videos. You can use YouTube likes, Facebook likes or your own. Take a look at this video:
http://www.youtube.com/watch?v=u1zgFlCw8Aw
You can embed a YouTube channel into Facebook easily too:
http://www.youtube.com/watch?v=pClpKAnddGI
Also using youtube, you can spread your net farther to reach more of an audience.
Hope this can be of some help. (No, I don't work for YouTube just find using more than one platform better)

Uploading audio to facebook from iOS app?

I've been trying to integrate my app with Soundcloud, but I'm just finding that impossible and way too difficult, and there are no good tutorials out there. Are there any other ways to upload audio files to facebook for playback? Any other services besides Soundcloud? Or does anyone know a useful tutorial for setting up Soundcloud with iOS?
you can use their api to do what you want. first upload the audio file to soundcloud and then post the link to the file on facebook.
here is a link to iOS sharing and here is a link to the soundcloud api wrapper.
iOS sharing will help you post the link to Facebook.
This is kind of cheating, but you could upload your "audio" to youtube, and then use the facebook api to post the link (pretty easy using facebook api). Uploading to youtube would have better support, like this
The soundcloud instructions here aren't terrible, a little tricky at first. Perhaps you could share with us what you've done on these three requirements. Where are you getting stuck?
1)Getting the users connections
2)Provide UI for choosing connections (public sharing) or mail addresses (private sharing)
3)Upload the file
EDIT
Additionaly, here is a useful tutorial link for soundcloud uploading
Both SoundCloud and Facebook have Cocoa wrappers and tutorial for their APIs:
SoundCloud Cocoa API Wrapper + tuts
Facebook iOS Tutorial
Hope these help.

Upload Video Twitter

I am developing a mobile app that share video to youtube, fb and twitter. I know there is a twitvid api but as i am fairly new to iphone development i just do not know how to make use of this.
Really appreciate any help on this.
I think you are unable to upload video directly to twitter, but you can upload your video to youtube and then send a shortened url to the user's status.
You can share video to Twitter by using the uploading media new API. And I have tried it, it works.
I made a convenient class to make post video to Twitter more easily.
Please check this: https://github.com/liu044100/SocialVideoHelper
You just need to call this class method.
+(void)uploadTwitterVideo:(NSData*)videoData account:(ACAccount*)account withCompletion:(dispatch_block_t)completion;
Hope it can resolve your problem.

Upload a video to YouTube or Facebook from your app? (iPhone)

I'm trying to find a way to upload a video to Facebook. I know It is possible as some apps do it. I was searching the web for hours but no results. I know it's somehow related to GData.
I managed to upload a video to youtube, can I somehow convert the code so it will upload to Facebook?
To a upload a video on Facebook, try this. They have a sample code here on how to upload a video using the Facebook Graph API.
I think, that the best way is to upload a video to youtube by using GData, and then post only link for it to Facebook by using FBConnect Objective-C library.