开发者

Looking for software: frame a TV feed with other information [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.

We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.

开发者_Go百科

Closed 8 years ago.

Improve this question

note: I looked on the other Stack sites and didn't see one where this question would be more appropriate -- please, no snipes

I'm looking for software that frames a TV feed (via coax cable) with still images, tickers, etc. Below is an example of a potential layout I'm interested in (care of Bloomberg).

Looking for software: frame a TV feed with other information [closed]


This could be implemented very easy in processing

here is an example programm that integrates a live videostream, an infographic and some text

import processing.video.*;

Capture video;
PImage cat;

void setup() {
  size(400,400);
  video = new Capture(this, 160, 120);
  textFont( createFont("helvetica", 15 ));
  cat = loadImage( "Buttered_cat.png");
}

void draw() {   
    if (video.available()) {
      background(0);
      video.read();
      text( "live videofeed", 20, 10 );
      image( video, 20, 20 );
      text( "Infographics", 270, 10 ); 
      image( cat, 270, 20 );
      text("long text with serious informations ...", 10, 200);
    }
}

to generate an window that looks similar to this one

Looking for software: frame a TV feed with other information [closed]

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜