Archive for juin 2008

google video

juin 26, 2008

Google Video is a free video sharing website and also a video service.

Uploaded videos were saved as a .gvi files under the « Google Videos » folder in « My Videos ».

——others

Competing services include iFilm, Metacafe, Veoh, blip.tv and Outloud.tv.

On October 9, 2006 Google agreed to buy former competitor YouTube for $1.65 billion in stock, but YouTube will remain a separate service under its own identity for the near future.

Sites searched by Google Video in addition to their own videos and YouTube include GoFish, Vimeo, MySpace, Biku, and Yahoo! Video. It appears that Google Video is moving away from an online video archive and towards a search engine for videos, similar to their web and image searches.

The basic way to watch the videos is through the Google Video website, video.google.com. Each video has a unique web address in the format of http://video.google.com/videoplay?docid=<video id>, and that page contains an embedded Falsh video file which can be viewed in any Flash enabled browser.

Permalinks to a certain point in a video are also possible, in the format of http://video.google.com/videoplay?docid=<video id>#XXhYYmZZs (that is, with a identifier containing a timestamp).

Flash Video

The browser automatically caches the flash file while it plays. There are also several tools and browser extensions to download the file. It can be then viewed in video players that can handle flash, for example Media Player Classic (with ffdshow installed), MPlayer or Wimpy.

——–player

Google Video Player was another way to view Google videos; it runs on win and mac. The Google Video Player plays back files in Google’s own Google Video File (.gvi) media format and supported playlists in « Google Video Pointer » (.gvp) format. When users downloaded to their computers, the resulting file used to be a small .gvp (pointer) file rather than a .gvi file. When run, the .gvp file would download a .gvi (movie) file to the user’s default directory.

April 2007: Google Video Player has been discontinued and is no longer available for download from Google Video website. The option to download videos in GVI format has also been removed, the only download option remaining for iPod/PSP (MP4 format).

While early versions of Google’s in-browser video player code were based on the open source VLC Media Player, the last version of Google Video Player was not based on VLC, according to its readme. However, it did include the OpenSSL cryptographic toolkit and some libraries from the Qt widget toolkit.

GVI format and conversion

Google Video Files (.gvi), and latterly its .avi files, are modified .avi files that have an extra list containing the FourCC « goog » immediately following the header. The list can be removed with a hex editor to avoid playback issues with various video players. The video is encoded in Divx4 alongside an MP3 audio stream. divx video players can render .gvi Google Video Files without format conversion (after changing the extension from .gvi to .avi, although this method of just renaming the file extension does not work with videos purchased with DRM to inhibit unauthorized copying). Among other software VirtualDub is able to read .gvi files and allows the user to convert them into different formats of choice. There are also privately developed software solutions, such as GVideo Fix, that can convert them to .avi format without recompression. MEncoder with « -oac copy -ovc copy » as parameters also suffices.

AVI and MP4

Besides GVI and FLV, Google provided its content through downloadable *.avi and *.mp4 video files. Not all formats are available through the website’s interface, however, depending on the user’s operating system.

Where available, Google’s « save as » function for Windows/Mac produced an .avi file, while the « save as » function forPSP iPod produced an .mp4 file.

The .avi file is not in standard .avi format.

Spring 2008, the option to download files in .AVI format has been removed, and files are only available as Flash video or .MP4, while the same videos when accessed through the companion YouTube.com site are available only in Flash video format.

Despite constant product development and business development churn, Google Video had never attained market leadership in the online video space at the time when Google acquired YouTube.

See also

wengophone openWengo visioconference

juin 25, 2008

http://www.wengophone.com/index.php/download

http://www.openwengo.org/

Wengo est une société française de la téléphonie sur internet qui s’est tournée ensuite vers les services de mise en relation. Elle a été acheté par neuf telecom.

Le logiciel libre WengoPhone est publié sous licence GNU GPL sur le site OpenWengo.

WengoPhone, logiciel libre multiplateforme (Windows, Linux, Mac OS X) de téléphonie sur Internet et messagerie instantanée se reposant sur les protocoles standards ouverts SIP et RTP.

La première et principale implémentation du logiciel créé par OpenWengo est le WengoPhone Classic, un client VoIP utilisant SIP. D’autres projets de logiciels libres sont actuellement en cours de développement, dont WengoPhone NG (pour Next Generation), qui est une version améliorée de WengoPhone Classic.

Le support de la vidéo est implémenté.

OpenWengo a également mis au point une extension Firefox en XUL pour Windows, Mac OS X et Linux, elle est encore en développement.

YouTube Embedded Player Parameters

juin 25, 2008

YouTube Embedded Player Parameters

http://code.google.com/apis/youtube/player_parameters.html

YouTube Embedded Player Parameters

Contents

Overview

This document describes all the parameters that are available in the YouTube embedded player. Appending these parameters to the SWF URL allow you to set things like color and borders, as well as whether to enable the JavaScript API for the player.

Parameters

All of the following parameters are optional.

rel
Values: 0 or 1. Default is 1. Sets whether the player should load related videos once playback of the initial video starts. Related videos are displayed in the « genie menu » when the menu button is pressed.
autoplay
Values: 0 or 1. Default is 0. Sets whether or not the initial video will autoplay when the player loads.
loop
Values: 0 or 1. Default is 0. In the case of a single video player, a setting of 1 will cause the player to play the initial video again and again. In the case of a playlist player (or custom player), the player will play the entire playlist and then start again at the first video.
enablejsapi
Values: 0 or 1. Default is 0. Setting this to 1 will enable the Javascript API. For more information on the Javascript API and how to use it, see the JavaScript API documentation.
playerapiid
Value can be any alphanumeric string. This setting is used in conjunction with the JavaScript API. See the JavaScript API documentation for details.
disablekb
Values: 0 or 1. Default is 0. Setting to 1 will disable the player keyboard controls. Keyboard controls are as follows:
Spacebar: Play / Pause
Arrow Left: Restart current video
Arrow Right: Jump ahead 10% in the current video
Arrow Up: Volume up
Arrow Down: Volume Down
egm
Values: 0 or 1. Default is 0. Setting to 1 enables the « Enhanced Genie Menu ». This behavior causes the genie menu (if present) to appear when the user’s mouse enters the video display area, as opposed to only appearing when the menu button is pressed.
border
Values: 0 or 1. Default is 0. Setting to 1 enables a border around the entire video player. The border’s primary color can be set via the color1 parameter, and a secondary color can be set by the color2 parameter.
color1, color2
Values: Any RGB value in hexadecimal format. color1 is the primary border color, and color2 is the video control bar background color and secondary border color.

Example Usage

To use any of the parameters above, append them to the end of the YouTube video SWF URL.

The SWF URL usually looks like this:

http://www.youtube.com/v/VIDEO_ID

It can be programmatically accessed through the YouTube Data API by looking for the yt:format=5 <media:content> URL. This format will not be available if embedding has been disabled by the uploader.

<media:content url="http://www.youtube.com/v/VIDEO_ID" type="application/x-shockwave-flash" medium="video"
          isDefault="true" expression="full" duration="100" yt:format="5"/>

To change the color scheme to a nice blue theme, modify the two color parameters.

http://www.youtube.com/v/VIDEO_ID&color1=0x2b405b&color2=0x6b8ab6

Now, place the modified URL into your embed code:

<object width="425" height="355">
  <param name="movie" value="http://www.youtube.com/v/u1zgFlCw8Aw&rel=1&color1=0x2b405b&
    color2=0x6b8ab6&border=1"></param>
  <param name="wmode" value="transparent"></param>
  <embed src="http://www.youtube.com/v/u1zgFlCw8Aw&rel=1&color1=0x2b405b&color2=0x6b8ab6&border=1"
    type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed>
</object>

The rel, color1, color2, and border parameters have been modified to produce the blue, bordered player below. Pressing the « menu » button will also load related videos because the rel parameter is set to 1.

video stratégie APPLE isight quicktime ichat itunes et freeware

juin 24, 2008

video avec et sans  internet.

l’exemple d’isight, ichat, itune… et de la stratégie apple.

j’ai connu quicktime dans les 90. Ce n’est pas qu’un viewer mais c’est réelment une plateforme. Quicktime gère le temps et toutes les données numériques. C’est un chef d’orchestre.

A/video sans internet:
voir ses video, ses dvd…

B/video avec internet:

0/ téléversement de .avi, .mov .mpeg des appareils phoot/video
(youTube, dailymotion, ex-stage6)  fourniture de flv et de services
besoin de HD

1/ les streaming de contenus avec un serveur dédié
webTV
webcam fixe  (en mode photo ou video)
webcam mobile sans fil/telephone portable

2/sa propre webTV (vixy.tv and vixy.com) en P2P ou vblog
vixy broadcaster is a tiny FLV streaming server based on P2P approach. It was created for vixy.tv. Your own computer becomes simple streaming server, and you can start independent broadcast station.

3/les tchat video; social networkers
en live http://www.camfrog.com/ ichat jabber… AIM
en mode twitter petite video microblogging: http://www.seesmic.com
laisser un commentaire video

4/recherche video:
exemple1
je cherche  » chirac qui parle de l’europe en Avril 2006″, et le moteur trouve la video et l’endroit où Chirac parle de leurope.
n°2
besoin: quand on se loggue sur votre blog; une lumière s’allume et vous êtes en mode video.
N°3
quand vous chercher qqchose ou un dépannage info…, vous êtes en videoBlog avec un « comment ca marche » video offline ou online.

———-

liste freeware video isight
—————-
http://www.klieme.com/EyeSight.html
freeware
Features:
• Capture pictures periodically from 10 seconds to 999 days
• Use it as webcam, watch rooms or whatever you like to do
• Picture format: jpg, png, tiff, bmp
• Picture size: adjustable (maximum 640 x 480 pixels)
• Save pictures on disk or upload it on a FTP-Server
• Log for saved pictures (can be watched in console)
• Preview window, shutter sound
• German and French localization

iRecord
simple recording from your iSight

vixy.tv and vixy.com
peer video broadcaster
vixy.tv broadcaster is a tiny FLV streaming server based on P2P approach. It was created for vixy.tv. Your own computer becomes simple streaming server, and you can start independent broadcast station. This app runs currently on Windows. We are also developing a Mac version, and Linux version for professional use.

http://esm.cs.cmu.edu/

http://macapper.com/2008/06/02/vidnik-from-isight-to-youtube-in-2-clicks/
Vidnik makes the process a snap. The freeware application from Google Mac developer David Phillip Oster lets you record video segments using your Mac’s iSight camera and upload them directly to YouTube in just a few clicks. It’s ideal for video diaries that require little editing or for a quick video response to a popular YouTube clip.

Flikr Uploadr
Flikr UploadrFlickr is the photo website, and so many people use it to share their images. But uploading through a website is never easy, so here you have it. Flickr Uploadr an extremely simple uploader that works with both Finder and iPhoto. Why do it any other way?

Adium
AdiumAdium is the standard for the multi-network chat client on OS X. It does too many networks to count, and does them well. It is the app of choice for many MSN users, while some AIM users prefer it over iChat; and with Video chat slated to be available soon, it can only get better!

video chat
The most popular live webcam chat community
http://www.camfrog.com/

« video twitter »
http://www.seesmic.com

Joost
JoostJoost is one of the most talked about products of the year, and is one of the first products to bring IP TV to the masses. It’s still in Beta, but it’s getting better all the time! It’s very simple to use, and although the resolutions can often be fairly low, the image quality is high, and it’ll work nicely on your nice 24″ iMac!

FLV MediaPlayer

juin 22, 2008

Pour utiliser  FLV MediaPlayer en toute simplicité, c’est-à-dire une vidéo et une simple page HTML, voici la démarche (voir aussi Maxi Player, en français, et libre).

A placer sur le FTP

  • mediaplayer.swf

Code à insérer

Code : HTML – FLV MediaPlayer

1
2
3
4
<object type="application/x-shockwave-flash" width="400" height="220" data="mediaplayer.swf">
	<param name="movie" value="mediaplayer.swf" />
	<param name="flashvars" value="file=votrefichierflv.flv" />
</object>

Essayez de ne pas mettre d’URL absolue pour le .flv sinon Flash demandera, lors du chargement de l’animation, s’il peut aller chercher le fichier, car il en déduit que le .flv se trouve sur un autre serveur, ce qui peut constituer une menace (c’est ce que Flash croit).

Vous pouvez aussi afficher plusieurs vidéos à l’aide d’une playlist. Pour cela, il suffit de remplacer votrefichierflv.flv par votrefichierxml.xml (ici, playlist.xml) qui contiendra les paramètres pour charger les vidéos. Image utilisateur Exemple.

A placer sur le FTP

  • mediaplayer.swf (se trouve dans l’archive)
  • playlist.xml (vous devez le créer)

Le fichier playlist

FLV MediaPlayer supporte le format XSPF pour créer des playlists. En fait, c’est juste du XML, mais des gens se sont mis d’accord pour utiliser les mêmes noms de balises.

http://www.siteduzero.com/tuto-3-7930-1-des-videos-flv-sur-son-site-web.html#ss_part_4

convert FLV

juin 22, 2008

Lire avec FLV MediaPlayer

FLV MediaPlayer est une animation SWF toute faite. Pour ceux qui connaissent, c’est un peu comme DewPlayer, qui est un lecteur de .mp3. FLV MediaPlayer est un lecteur de .flv. Le site du créateur ce Player se trouve ici.  Je vous invite à télécharger la dernière version du lecteur ici.

Convertir avec un free :

Un gratuit et est un convertisseur universel, qui permet de convertir quasiment tous les formats. Pas seulement en .flv. Allez télécharger « SUPER »:  ici, sur Clubic…

Convertir : en console, avec ffmpeg

Cette petite partie est dédiée aux amateurs de la console, et à ceux qui ne peuvent pas faire autrement, comme les macOSX et linuxiens ) : ffmpeg. ffmpeg est en fait un ensemble de codes qui permettent le traitement de flux numériques.  « SUPER » utilise en réalité ffmpeg, pour les Windows. ffmpeg est Open Source.
Remarque ffmpeg est aussi utilisé, avec PHP, sur les serveurs, pour convertir les vidéos envoyées.

Code : Console

ffmpeg -i video.wmv -ar 22050 -ab 32 -f flv -s 400x300 video.fl

Voici la liste de quelques paramètres :

Paramètres d’encodage
Param Description
-i Fichier à convertir
-ar Taux d’échantillonage du son
-an Pas de son (-ar est donc inutile)
-ab Audio bitrate en kbit / seconde
-f Format de sortie
-s Taille (Largeur x Hauteur)
-ss Temps à partir duquel on commence à convertir : -ss 00:00:30 (à la 30ième seconde
-t durée à convertir : -ss 00:01:30 (à la 1 minute 30 secondes)

HD TV, thanks to the H.264 codec in the latest Flash player

juin 22, 2008

New H.264/HE-AAC options

Flash Player 9 Update 3 (9.0.115.0) includes H.264 video and High Efficiency AAC (HE-AAC) audio codec support that opens up a broad ecosystem and selection of standards-based video — up to HD quality — that developers can leverage in their applications. Supporting a subset of MPEG-4 Part 12 (container) and Part 14 (H.264), including baseline, main and high profiles, Flash Player can play back existing MP4, M4A, MOV, MP4V, 3GP and 3G2 content.

Press Release.

Dailymotion began offering a smattering of videos in HD.

Dailymotion now joins Hulu, Veoh, and others in demonstrating what’s technically possible. But for most people, if they want to watch HD video, they still are going to have to buy a Blu-Ray DVD player.

—–

H.264 is a standard for video compression. It is also known as MPEG-4 Part 10, or MPEG-4 AVC (for Advanced Video Coding). It is one of the latest block-oriented motion-estimation-based codecs developed by the ITU-T Video Coding Experts Group (VCEG) together with the ISO/IEC Moving Picture Experts Group (MPEG) as the product of a partnership effort known as the Joint Video Team (JVT). The ITU-T H.264 standard and the ISO/IEC MPEG-4 Part 10 standard (formally, ISO/IEC 14496-10) are jointly maintained so that they have identical technical content.

H.264, ou MPEG-4 AVC (Advanced Video Coding), est une norme de codage video développée conjointement par l’UIT-T Q.6/SG16 Video Coding Experts Group (VCEG) ainsi que l’ISO/CEI Moving Picture Experts Group (MPEG) et est le produit d’un effort de partenariat connu sous le nom Joint Video Team (JVT). La norme UIT-T H.264 et la norme ISO/CEI MPEG-4 Part 10 (ISO/CEI 14496-10) sont techniquement identiques, et la technologie employée est aussi connue sous le nom AVC, pour Advanced Video Coding. La  version de la norme  la plus récente date de début 2005.

seesmic video micro-blogging

juin 22, 2008

Seesmic, the online video conversation platform:

http://www.seesmic.com/

une interview:

http://www.lexpress.fr/actualite/high-tech/loic-le-meur-on-ne-peut-pas-controler-internet_511151.html

un blog:

http://seesmic.typepad.com/en/

FLV JW Media Player open source streaming embedded

juin 22, 2008

http://www.jeroenwijering.com/?about=JW_FLV_Media_Player

The easiest way to get going with the FLV Media Player is by using the setup wizard. Select an example, set the file you want to play and copy-paste the embed code to your site! If you want to learn more, here’s the complete documentation of the FLV Media Player:

  1. All supported flashvars (variables) you can set to customize the player.
  2. All supported playlist formats you can use, plus some implementation info.
  3. A large list of all third-party plugins for the FLV Media Player.
  4. A tutorial on embedding the player in your site.
  5. A tutorial with all functions of the javascript API.
  6. A tutorial on adding captions and an audiodescription (accessibility).
  7. A tutorial on FLV encoding and video formats.

HISTORY

  1. mediaplayer 3.16 (04.04.2008): Added YouTube support, searchbar, midroll advertisements, hardware scaling and playlist advertisements. Fixed overstretching,rightside-playlist fullscreen issue, javascript loading of captions, image setting in config.xml.
  2. mediaplayer 3.15 (17.02.2008): Added RTMP livestream support (no progressbar and no crash when pausing), DFXP ‘dur’ tag support, MTASC compliancy and shownavigation flashvar. Fixed hardcoded prefix, RTMP ending too soon and occasional stop-after-buffering bug.
  3. mediaplayer 3.14 (15.01.2008): Added ASX playlists, fallback to FLV, recommendations, config XML, Lighttpd MP4 and stop button. Reverted from preroll/postroll/overlay album tag to just commercial.
  4. mediaplayer 3.12 (25.09.2007): Added Google Analytics and H264 support and screencolor flashvar.
  5. mediaplayer 3.10 (30.07.2007): Added bandwidth check, preroll, postroll & overlay advertisements. Renamed from Flash Media Player to JW Media Player.

native resolution google video youtube dailymotion splashcast vimeo

juin 21, 2008

« Native » resolution of Google Video:

Google Video seems to offer 400 x 326px, maybe less to allow the
buttons. If you upload a 16:9 the video should be ‘letterboxed’ to
maintain aspect ratio.

UPDATE: 080406 Posted by a Google Advisor
Streaming Quality
Video: 320×240 resolution at 450 Kbps
Audio: 64Kbps Mono
Download Quality
Video: 480×360 resolution at 800 Kbps
Audio: 128Kbps Stereo

Youtube also has its FLV stream at a native 320×240 but there player displays at an odd 450×338 with ALOT of pixilation occuring even at that small a resolution in mono. And downloads are … well there arent any! you can go to www.feelingtea.com and rip the raw 320x240FLV to your hard disk but I wont count that as a download. (YOUTUBE cant handle NON-4:3 aspect videos..

Guba (this is where she shines) Agian there is a 320×240 streamed FLV but there are almost NO compression artifacts and is in Stereo. The video plays in the window at a stretched res of 596×446 and it look beautiful. Downloads.. You get the lot. iPod/PSP MP4 downloads at Variable High Bitrates with improper aspect ratios…. and perhaps the greatest part of guba..

Vimeo now supports HD in 1280×720! To watch: click « Full » in the lower right corner of the player. To create: upload a 1280×720 video and it will automatically convert to High Definition. If you have an older computer, let the video buffer before watching. Read the FAQ at vimeo.com/help/hd.

———-

http://www.vewgle.com/showthread.php?t=419

-Google requires you have a Gmail acount to sign up to there Video Beta which can be tricky to get since you have to be invited into Gmail(last i checked). Then you must download the upload program and login to that to begin uploading.

-Youtube can be signed up for in a few minutes but also requires a valid Email for confirmation before you can upload.

-GUBA is similar to youtube in that once an account is created you must have a confirmation sent to a valid email before uploading a video

What can be sent? What are the limits on size length and copyright.

-Google has absolutely NO limits on size, length or codec used. (However Ive heard 2 gigs should be the largest) and they are very strict on copyrighted material being uploaded.

-YouTube has limits of 100MB and/or 10 minute max clip size(which sucks) and will not allow SOME (family guy,Porn) copyrighted material on.

-Guba had no length limit on videos but restricts the video to 200MB. And as far as copyright I will quote from there Submission Guidelines

Sending:

Google video can use a separate upload program to send your videos to there servers.. This is benificial because uploads can be resumed. ahd multiple files can be queued to uploaded. Some filenames are not accepted and you must figure out whats wrong before sneding. then Titling and description is added after the video has been uploaded at your google control panel (Speed is great with 225KB/s sustained upload) NEW you can now upload through the browser like the other two up to 100MB with pre-titling and description. But can still use the upload program to do larger or multiple files.

Youtube does its uploading through your browser one file at a time and has you title and describe your video before you send it. A cute little java progress bar shows the status of your upload If your browser crashes.. your sh|t out of luck. (Speed is good with up to 225KB/s sustained upload on certain servers but a lower ~150KB/s on there random upload server selection)

Guba also uploads through your browser but does not offer any progress bar and is not resumable and makes you title and describe before uploading. (Meek upload speed of 85KB/s up are to be expected)

Verification:
(converting to flash and other formats or checking copyright)

Google takes time to verify, anywhere between 12 hours and several days(no weekend verification). Every video is checked by a human being which takes the time and checks the copyrights. The Web upload however is instant conversion and allows linking, However your video will not be indexed until verified

-Youtube takes anywhere from 45 seconds to an hour to verify. Length restrictions help keep this number consistant.

-Guba SO FAR has been rediculously fast. a 100 meg 17 minute video took 8 minutes and a 5 minute music video took 2. (varies greatly now, can be previewed in 10 minutes and goes live in ~6-8 hours)

Searching: (for only your videos/ others)

-Google has no real way to find ALL of YOUR videos.. you must use a Unique production company name and search that.. However if someone wants to they may copy YOUR name at there will. And any description that has YOUR name or a similar name will pop up in the results.. Searching for specific videos yeilds MANY results (its google people!) however they can be corrupted by a user copying common phrases over and over to increase the relevance of their video to many common searches. Searches can be sorted by Relevance, Date, and Title.

-Youtube can search a user by there username to find all of YOUR videos.. which is nice. and searching for topics is similar to the google problem but usually reveals what your looking for. PLUS youtube can sort by RelevanceDate AddedTitleView CountRating.

-Gubu is where this gets tricky to search for YOUR videos you can’t use your user ID Number « 1000003219 », you can’t use your Nickname « Topgeardog » all Ive found is when signed into your upload account you can have the search results page of YOUR videos popup and you must keep that Hyperlink to get to it.. (See my sig). worse then that search results for topics are spartan. Although I know there are dozens of family guy eps on there.. A search reveals.(checking)… 8 results, and although I uploaded a top gear clip and titled it « Top Gear – 300 vs Jag vs GTO » searching « Top Gear » gives..(checking)… 1 result.. of 1 full episode and nothing else. so wheres my clip? Ill update this guide as I find things out. UPDATE, Guba search is out of beta and you can find your videos by searching your username.. However it still pops up as an account number in the search bar. ?Weird?

Quality: (Video quality of online streams and of downloads)

-Google has lowered there FLV streaming quality at least once to cope with bandwith concerns but the quality has not been lowered enough to make pixilaton visible. There native streams are still 320×240 stretchable to fit your desktop resolution in mono. Downloads are GVI- 480xVariable Divx, and MP4 iPod/psp @ 320×240.

UPDATE: 080406 Posted by a Google Advisor
Streaming Quality
Video: 320×240 resolution at 450 Kbps
Audio: 64Kbps Mono

Download Quality
Video: 480×360 resolution at 800 Kbps
Audio: 128Kbps Stereo

-Youtube also has its FLV stream at a native 320×240 but there player displays at an odd 450×338 with ALOT of pixilation occuring even at that small a resolution in mono. And downloads are … well there arent any! you can go to www.feelingtea.com and rip the raw 320x240FLV to your hard disk but I wont count that as a download. (YOUTUBE cant handle NON-4:3 aspect videos.. any non standard video res Is stretched to 4:3 so additional recoding to 4:3 is necessary to maintain correct aspect)

-Guba (this is where she shines) Agian there is a 320×240 streamed FLV but there are almost NO compression artifacts and is in Stereo. The video plays in the window at a stretched res of 596×446 and it look beautiful. Downloads.. You get the lot. iPod/PSP MP4 downloads at Variable High Bitrates with improper aspect ratios…. and perhaps the greatest part of guba.. you can download the ACTUAL file that was uploaded by YOU. so whatever you uploaded you can have back with no loss or res change as long as you login. Sweet! And indexed Usenet files can be downloaded original as well.

Features:
(comments, contact, players, etc)

all services have Embedded video, volume controls, Progress Bars and counters

-Google has Playlists to play multiple search results, Play size variable with your monitors resolution, had a 10 second thumbnail previews in search results 15 per page. Email link to friend. The player has the ability to stream immediately from any point of the video without buffering the whole video and the various video downloads. No hit counter, NEW comments, no contact uploader.

-YouTube has makable playlists, 3 static screen previews per video, 20 results per page, full comment/rating implementation on videos and in user profiles. Email link to friend. No vari-size video window(except full screen). Hit Counter, and ability to flag video and contact uploader. NO downloads and no video scanning till its full loaded.

-Guba has downloads, the ability to flag, multiple GIF-like video preview, 20-100 results per page, email link to friend, and a similar video list .. but thats it. NO playlists, Cant scan through videos (but loads faster then youtube)

Embeding: (what this forums is all about)