net.rim.pushsdk.commons.content
Class Mp4VideoContent
java.lang.Object
net.rim.pushsdk.commons.content.Content
net.rim.pushsdk.commons.content.SinglePartContent
net.rim.pushsdk.commons.content.BinaryContent
net.rim.pushsdk.commons.content.Mp4VideoContent
public class Mp4VideoContent
- extends BinaryContent
Represents MP4 video content. The content-type header is set to video/mp4.
- Author:
- mdandrea
|
Constructor Summary |
Mp4VideoContent(byte[] content,
boolean shouldBase64Encode)
Constructs an MP4 video with the specified content. |
Mp4VideoContent(File file,
boolean shouldBase64Encode)
Constructs an MP4 video from the specified file. |
Mp4VideoContent(URL url,
boolean shouldBase64Encode)
Constructs an MP4 video from the specified URL. |
|
Method Summary |
protected void |
checkExtension(String string)
Verifies that the video ends in the .mp4 or .m4v file extension. |
String |
toString()
Constructs a String with all attributes in name = value format. |
Mp4VideoContent
public Mp4VideoContent(byte[] content,
boolean shouldBase64Encode)
- Constructs an MP4 video with the specified content. The video is base64 encoded if requested.
- Parameters:
content - the MP4 video contentshouldBase64Encode - true if the content should be base64 encoded; false otherwise
Mp4VideoContent
public Mp4VideoContent(File file,
boolean shouldBase64Encode)
throws IOException
- Constructs an MP4 video from the specified file. The video is base64 encoded if requested.
- Parameters:
file - the MP4 video fileshouldBase64Encode - true if the content should be base64 encoded; false otherwise
- Throws:
IOException - if any IO errors occur reading from the file
Mp4VideoContent
public Mp4VideoContent(URL url,
boolean shouldBase64Encode)
throws IOException
- Constructs an MP4 video from the specified URL. The video is base64 encoded if requested.
- Parameters:
url - the MP4 video URLshouldBase64Encode - true if the content should be base64 encoded; false otherwise
- Throws:
IOException - if any IO errors occur reading from the URL
checkExtension
protected void checkExtension(String string)
- Verifies that the video ends in the .mp4 or .m4v file extension.
- Overrides:
checkExtension in class SinglePartContent
- Parameters:
string - the file name
toString
public String toString()
- Constructs a
String with all attributes in name = value format.
- Overrides:
toString in class BinaryContent
- Returns:
- a
String representation of this object.
Copyright © 2011 Research In Motion. All Rights Reserved.