I recently tried to use my Arduino Uno R3 to publish data on a TV.
I connected the GND cable of my RCA jack to the ground of Arduino & followed these schematic

,

Used this "TVout" LIB(R5.91 ver):-
http://code.google.com/p/arduino-tvout/& this piece of code :
--------------------//code//----------------------
#include <TVout.h>
TVout TV;
unsigned char x, y;
void setup ( )
{
TV.start_render( _NTSC );
}
void loop ( )
{
TV.clear_screen ( );
TV.print_str ( 10, 10, "TVout FTW!!!" );
TV.delay ( 60 );
}
Nothing happened when I attached the RCA cable to video in composit.
I'm not sure whether every thing here I/m doing is on the right way.
Is there any setting change that I need to do over the TV. I tried with the TV's cable service once plugged in & another time plugged out.
Also changed it in the code from NTSC to PAL as I recede in India.