S3Bubble OTT Streaming

shape
shape
shape
shape
shape
shape
shape
shape

S3Bubble Support Forums

To stay up to date with the latest S3Bubble updates and tutorials please make sure you sign up to our YouTube Channel.

Forum Replies Created

Viewing 15 posts - 421 through 435 (of 663 total)
  • Author
    Posts
  • in reply to: members downloading encrypted hls content #29543
    s3bubble
    Keymaster

    Hi zawan_na,

    Please watch the video below it was a bit rushed but I am sure you can figure it out.

    http://learning.s3bubble.com/lesson/bucket-polices-overview/

    Under the video is a link on how to setup WAF with Cloudfront.

    Best Regards

    Sam

    in reply to: Please help – audio upload is not working #29540
    s3bubble
    Keymaster

    Hi walterfordham,

    I have taken a look at this for you and i see the error message returned is.

    The account already has the maximum number of pipelines allowed: account=, maximum number of pipelines=4

    This means you will need to delete a pipeline so AWS can then create a new one in this region as you have reached your maximum of 4 pipelines.

    Just so you know deleting a pipeline will not delete any files so just head to this link and delete one you are no longer using.

    https://console.aws.amazon.com/elastictranscoder/home

    Best Regards

    Sam

    • This reply was modified 8 years, 3 months ago by s3bubble.
    in reply to: Business Theme with s3Bubble Developer Subscription? #29534
    s3bubble
    Keymaster

    Hi Michel,

    The cooking business theme is only available with our business package.

    The only theme available with the developer package is the streamium theme.

    http://streamium.s3bubble.com

    Best Regards

    Sam

    in reply to: AUdio encryption #29527
    s3bubble
    Keymaster

    Hi walterfordham,

    Q1: 1st question: I see a video in your interface when I click on see media after encryption instead of an audio file ? could you explain ?

    Answer: There is an audio button at the top to switch to the audio player but we understand this is not very user-friendly and any audio pieces encoded in hls in the future will go straight to the adaptive bitrate audio streaming page.

    Q2: 2nd question: Yesterday, I got a lot of error messages that my titles are too long – the error message said 40 characters maximum. Today I do not have the same error, long titles are working for encryption.

    Answer: Not sure why you have been getting this error message but the message will be straight from the AWS api no us so they may have some limitation set in AWS.

    Q3: We would like to use your new audio player (soundcloud looking) with audio playlist while protecting our audios.

    Answer: For protected audio follow the same method as outlined when encrypting hls adaptive bitrate video. After your audio has been encrypted you can then go to https://s3bubble.com/secure/#/playlists and create a new audio playlist and then select your audio pieces from the add audio button under the player.

    All our most recent documentation will be on our video learning website. http://learning.s3bubble.com/. I am going to do some new videos this week coming with the new update interface you can find the encryption videos here.

    http://learning.s3bubble.com/course/hls-adaptive-bitrate-streaming/

    Best Regards

    Sam

    • This reply was modified 8 years, 3 months ago by s3bubble.
    in reply to: Hidden Controls on a Video in a New Tab #29522
    s3bubble
    Keymaster

    Can you please provide a link to the videos?

    Best Regards

    Admin

    in reply to: Please help – audio upload is not working #29504
    s3bubble
    Keymaster

    Please try now.

    Best Regards

    Sam

    in reply to: Please help – audio upload is not working #29503
    s3bubble
    Keymaster

    Hi walterfordham,

    I see your issue after looking at your account looking into this now it is more than likely a filename issue going to try and resolve this for you know.

    Best Regards

    Sam

    in reply to: Please help – audio upload is not working #29501
    s3bubble
    Keymaster

    Hi walterfordham,

    Let me help you with this first can I have some more information.

    Which setup are you using?

    Old WordPress Plugin – https://en-gb.wordpress.org/plugins/s3bubble-amazon-s3-audio-streaming/
    New WordPress Plugin – https://en-gb.wordpress.org/plugins/s3bubble-amazon-web-services-oembed-media-streaming-support/
    Just the iframe embed code.

    What bucket and file are you having this issue with?

    If you don’t what to post information here please send to support@s3bubble.com

    Best Regards

    Sam

    • This reply was modified 8 years, 3 months ago by s3bubble.
    in reply to: members downloading encrypted hls content #29491
    s3bubble
    Keymaster

    Update,

    You can now go to your bucket in S3Bubble admin and click actions and then Add secure bucket policy.

    We will then add this policy for your.

    Best Regards

    Sam

    in reply to: Audio error after uploading #29484
    s3bubble
    Keymaster

    Hi walterfordham,

    This issue has been resolved.

    Best Regards

    Sam

    in reply to: Can My videos be hotlinked? #29474
    s3bubble
    Keymaster

    Hi Easyenglish,

    If you want to add extra protection please add this to your bucket policy.

    Go to your bucket in AWS and click properties under permissions click edit/add bucket policy and paste the following in you will need to be using iframes and also make sure you change the bucket name.

    {
    	"Version": "2008-10-17",
    	"Id": "S3BubbleSecurity",
    	"Statement": [
    		{
    			"Sid": "1",
    			"Effect": "Allow",
    			"Principal": {
    				"AWS": "*"
    			},
    			"Action": "s3:GetObject",
    			"Resource": "arn:aws:s3:::(YOUR BUCKET NAME GOES HERE)/*",
    			"Condition": {
    				"StringLike": {
    					"aws:Referer": [
    						"https://media.s3bubble.com/*"
    					]
    				}
    			}
    		},
    		{
    			"Sid": "Explicit deny to ensure requests are allowed only from specific referer.",
    			"Effect": "Deny",
    			"Principal": "*",
    			"Action": "s3:GetObject",
    			"Resource": "arn:aws:s3:::(YOUR BUCKET NAME GOES HERE)/*",
    			"Condition": {
    				"StringNotLike": {
    					"aws:Referer": [
    						"https://media.s3bubble.com/*"
    					]
    				}
    			}
    		}
    	]
    }

    Best Regards

    Sam

    in reply to: Is it possible to use S3Bubble with several AWS accounts? #29470
    s3bubble
    Keymaster

    Hi vmestodiet,

    Yes you can use the same S3Bubble account.

    Best Regards

    Sam

    in reply to: members downloading encrypted hls content #29462
    s3bubble
    Keymaster

    Hi Samueldv6,

    Yes it actually a lot easier without Cloudfront simply go to your bucket and click properties.

    Then add a bucket policy and add the following.

    {
    	"Version": "2008-10-17",
    	"Id": "S3BubbleSecurity",
    	"Statement": [
    		{
    			"Sid": "1",
    			"Effect": "Allow",
    			"Principal": {
    				"AWS": "*"
    			},
    			"Action": "s3:GetObject",
    			"Resource": "arn:aws:s3:::(YOUR BUCKET NAME GOES HERE)/*",
    			"Condition": {
    				"StringLike": {
    					"aws:Referer": [
    						"https://media.s3bubble.com/*"
    					]
    				}
    			}
    		},
    		{
    			"Sid": "Explicit deny to ensure requests are allowed only from specific referer.",
    			"Effect": "Deny",
    			"Principal": "*",
    			"Action": "s3:GetObject",
    			"Resource": "arn:aws:s3:::(YOUR BUCKET NAME GOES HERE)/*",
    			"Condition": {
    				"StringNotLike": {
    					"aws:Referer": [
    						"https://media.s3bubble.com/*"
    					]
    				}
    			}
    		}
    	]
    }

    Best Regards

    Sam

    • This reply was modified 8 years, 3 months ago by s3bubble.
    • This reply was modified 8 years, 3 months ago by s3bubble.
    in reply to: members downloading encrypted hls content #29453
    s3bubble
    Keymaster

    Hi Both,

    Ok i have looked into this extensively and have a solution which solves a lot of problems but it will need to be implemented into the s3bubble setup.

    Please, can you both test downloading this video.

    http://streamium.s3bubble.com/action/encrypted-video/

    With the method you described.

    This setup includes

    Video Player
    WAF
    Cloudfront
    S3

    Update this post with feedback.

    Best Regards

    Sam

    • This reply was modified 8 years, 3 months ago by s3bubble.
    in reply to: members downloading encrypted hls content #29445
    s3bubble
    Keymaster

    Hi Samuel,

    Thanks for the video link that’s really helpful 😉

    Going to look into this, I’ll update with feedback.

    Best Regards

    Sam

Viewing 15 posts - 421 through 435 (of 663 total)