You need to sign in to do that
Don't have an account?

Best option for Audio/Video files
Hi,
we have a requirement,we developing one App which is intigrated By 3rd party(Web Application).we need to push all the Video/audio files to salesforce from web application.Can any one suggest me which is best Sobject to store these files in SFDC.
i have some options in my mind
a)files
b)Content Version
c)Attachment
how can play these imported videos without download in salesforce?any video playes are needed or we need to write any code for that
i think no option are available in salesforce for playing videos with out Download to local system.
we have a requirement,we developing one App which is intigrated By 3rd party(Web Application).we need to push all the Video/audio files to salesforce from web application.Can any one suggest me which is best Sobject to store these files in SFDC.
i have some options in my mind
a)files
b)Content Version
c)Attachment
how can play these imported videos without download in salesforce?any video playes are needed or we need to write any code for that
i think no option are available in salesforce for playing videos with out Download to local system.
Please go through the below two links,
For more info ContentDocument : http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_contentdocument.htm
For more info ContentVersion : https://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_contentversion.htm
But Attachment object supports Insert calls, If you want to insert only object in attachment. Please take a look on limitation.
For more info about attachment : http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_contentdocument.htm
All Answers
Obviously Files is better than Attachment for Storing Audio/Videos.
Because files are the following advantages,
1. We can preview files.
2. share files.
3. Content version support.
Note: As per salesforce document, Not all files can be previewed, such as copy-protected PDFs, unknown file types, and any file larger than 25 MB. For files that can’t be previewed, the Preview option isn’t available on feeds or list views, and files appear as generic file type icons in the feed. Some Microsoft Office 2007 features don't display correctly in previews.
I have checked some of the file only get previewd such as document, text file, ppt.. But video's doesn't support preview. I think there is no option the preview.
Please follow the link for comparsion,
https://help.salesforce.com/apex/HTViewHelpDoc?id=collab_files_size_limits.htm&language=en
Thanks for your reply........
can i insert videos to files from Web Application through Api
Please go through the below two links,
For more info ContentDocument : http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_contentdocument.htm
For more info ContentVersion : https://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_contentversion.htm
But Attachment object supports Insert calls, If you want to insert only object in attachment. Please take a look on limitation.
For more info about attachment : http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_contentdocument.htm
Its awesome.... thanks for ur reply