Change the order of tracks in an embed spotify playlist - embed

on my facebook I have a embed player of spotify and this works fine but the order of the play-list is not right, the oldest tracks are at the top and the newest at the bottom. Is there an option to change this the other way round?
I'll hope to receive an answer from you.
Thanks in advance.
With kind regards,

The Play Button widget shows tracks in the canonical order of the playlist, and does not respect any custom sorting you've applied in the desktop client. To see this canonical order in the desktop client, click the sorted column header until it's no longer hightlighted in white.

Related

Cast an entire webpage to tv?

I need to cast an entire webpage (which includes images, videos, iframes and carousels) to a chromecast enabled TV.
Once loaded, the webpage is auto scroll enabled and hence keeps showing few images, videos and iframes (think of it like a looped slideshow).
I know there's an option in the chrome browser itself to cast a tab/entire desktop, but it would require my laptop/computer screen to be open all the time.
I also came across chromecast for web app docs: https://developers.google.com/cast/docs/chrome_sender/integrate , but as far as I can figure out, it will help only to cast videos but not iframes/carousels embedded in my website.
Any suggestions how to achieve this? The requirement is to show an advertisement kind of data to the TV in every 3 hours. All this cannot be automated fully I guess?
Yes, you can do this. You just need to create a custom receiver app, which is basically just an HTML page that implements the cast receiver framework javascript. https://developers.google.com/cast/docs/caf_receiver/basic

Cast a website to TV from Android app - Chromecast; is it possible?

This is what I want to do.
Have a screen on my Android app with a few buttons on it. One of them would be the Chromecast icon, the other buttons would just be a few numbers most like (a "1" button, a "2" button, a "3" button etc).
When the cast button is hit, a default website is loaded (eg. www.example.com) on the TV. In the Android app, I still just see my buttons.
When a number his hit (ie. "1") the website changes, and www.example.com/parameter/1 is loaded for example.
I have been reading Google's documentation. If I understand correctly, I can create Android sender app code to do part 1 and 2. And a receiver application for part 3.
What I am confused about though is how I just get it to load a preexisting website. Surely I wouldn't need any custom HTML5 code for that? All I want to do is load a URL.
Could someone please advise me if what I want to do is possible, and if so point me in the right direction? Thanks
The default receiver only loads media URLs. Video, images, etc. If you want it to do anything else, like show a website, you need to create a custom receiver.
Luckily, that's rather easy, and they have some good samples on the Github account.
https://github.com/googlecast

Youtube parameters not working with thickbox

Have some youtube videos that I'm trying to show with thick box and for some reason I can't remove the title bar, controls, or related videos. I've tried several different things, currently my working code looks like this:
<a class="thickbox" href="//www.youtube.com/embed/########&KeepThis=true&TB_iframe=true&height=400&width=600" title="###### Beckwith">
<img src="http://www.########.org/campaign/wp-content/uploads/sites/59/2013/11/#Beckwith.png"/>
</a>
I hashed some info for the sake of privacy. Parameters need to be inserted before &KeepThis or else thickbox won't work. The problem is whenever I insert parameters they either don't work or the video won't play. Any suggestions on how to fix this would be appreciated.
There is a known issue with YouTube API.
Star this issue to get updates on it.
Latest update :
The rollback has being scheduled and should begin soon, but I don't have an exact timeline to share for when it will be fully completed. It's likely to be on the order of hours.

Create a chrome extension which modifies a web page?

every time I go to a particular web page I hit F12 delete a node and uncheck a few absolute position boxes on two others. I would like to know how to do this with a chrome extension.
I have not made a chrome extension before so I thorough guide to making one would also be appreciated
I recommend you to read this guide first as Google suggests.
http://developer.chrome.com/extensions/getstarted.html
Also, I think in order to implement what you want to do, you'll need to use page action.
So, take a look at this page about page action.
http://developer.chrome.com/extensions/pageAction.html

how to hide music href in player?

I'm using jplayer on my website but I have only one player on top which plays each mp3 on the page (like deezer). That's why I'm using demo04, as I want to display the current song playing and I want to add mp3 on the fly (maybe is it possible in an other way?).
I can add music to the player with a simple link, for example :
The Separation
So my problem is coming from the demo which doesn't prevent downloading tracks (right click>save target as) and I need this functionality.
In a few words, is it possible to hide the href or crypt it?
No this is not possible.
You can encrypt the name, but an encryption always has a decryption.
Also if you look at search result of Google you will find:
How to prevent downloading images and video files from my website?
No, it's not possible.
You can make it hard for users. But you can't stop it.