Hi, with regards to the google video, I too can not get this working. My google video is at
http://video.google.com/videoplay?do...25124823019531, and having a look around the code made me use the following media tag as it didn't recognise the google url as a video...
PHP Code:
[media=400,326,true,ggv]http://video.google.com/videoplay?docid=-4329325124823019531[/media]
This didn't work, but having thought about it it's not surprising really! On the google video page is a "Put on site" section which gives you the html code needed to embed the video in a web site. I took just the part within the src="" tag and put that into the player instead. It still didn't work due to the URL being encoded, so I then used
http://www.us-webmasters.com/Decode-URLs/ to decode the URL and ended up with...
PHP Code:
[media=400,326,true,ggv]http://video.google.com/googleplayer.swf?videoUrl=http://vp.video.google.com/videodownload?version=0&secureurl=mwAAAG43hxnCm2hXrse2hjyuqYx3aARf7aOVUlQ51SMLUbU1Wyr7Ld2xvoqmw7_vjrfbnREph9FeB-mk8IqTz8TeR_MYu6BcsAaps-IQE-6MrVrWVuSpsB166j0f4AJOB9_x5DvATtWsXSCRBa625yt3nmz4YnYlgdlopfhVmcvHR7giUCav4-O0X-V2sJZOIfdwGoCGW7uUhWtwRRon61nzoMc&sigh=xsuFWW10GbWGHuXPtzoblb8R_08&begin=0&len=98397&docid=4965397551823343996&thumbnailUrl=http://video.google.com/ThumbnailServer?contentid=d4cc92d2f8162f40&second=5&itag=w320&urlcreated=1143017597&sigh=G3fkssZqUCxZJ6PpcH80FmzLfTQ&playerId=4965397551823343996[/media]
Now this almost works. The video player is happy that it knows the type, but if you click the play button it pops up a message saying "Buffering" and goes no further.
I'm kind of just using trail and error here to get it working but hoped the above might point someone who knows what they are doing in the right direction of getting this working properly.
Would it be easier to add the google video embed tags to the anymedia.js script and display them that way? For reference, the google embed tag is as follows...
PHP Code:
<embed style="width:400px; height:326px;" id="VideoPlayback" align="middle" type="application/x-shockwave-flash" src=" " allowScriptAccess="sameDomain" quality="best" bgcolor="#ffffff" scale="noScale" wmode="window" salign="TL" FlashVars="playerMode=embedded"> </embed>
(Note that I have left the src="" parameter blank for ease of reading, but it would be the same as that between the [media] tags in the above example.