Générer un livre avec After Effects

Add subtitles to a text layer with an SRT file into an After Effect project.

If you would to create a srt file you can use the software VisualSubSync.

For Greg

var t = text.sourceText;
t = t.split("!!!").join(":");
t;

Script for ExtendScript Toolkit

/*
  SRT subtitle import for AE CS5
  By August Bering

  Usage: 
  Create a text layer in AE and select that layer. 
  Select File -> Script -> Run script... from the menu and run this script.
  In the dialog, select a .SRT subtitle file to import.
 */

function makeSubs()
{
  function getframe(timeInString)
  {
    var t = timeInString.split(":");
    var timeS = parseInt(t) * 3600 + parseInt( t[1] ) * 60 + parseFloat( t[2].replace(",", ".") );
    var frame = timeS * 25;
    return timeS;
  }

  var pb = progressBar("Creating keyframes", );
  var layer = app.project.activeItem.selectedLayers[0];

  if (layer.property("sourceText") != null)
  {
    var textFile = File.openDialog("Select a text file to open.", "SRT subtitles:*.srt");
    if (textFile != null)
    {
      var textLines = new Array();
      textFile.open("r", "TEXT", "????");

      var sourceText = layer.property("sourceText");
      var subnr=0;
      var nrSubs=0;
      while (!textFile.eof)
      {
        if (""==textFile.readln())
        nrSubs++;
      }
      textFile.seek(0);

      //begin with empty text
      sourceText.setValueAtTime(0,"");
      while (!textFile.eof)
      {
        pb.setValue(subnr/nrSubs);

        pb.p.update();
        if (pb.isCanceled ())
        {
          //for some reason this doesn't work at all, the window is unresponsive...
          pb.close();
          return;
        }

        subnr++;
        var line = textFile.readln();
        line = textFile.readln();
        var times=line.split('-->');
        var starttime=getframe(times[0]);
        var stoptime=getframe(times[1]);

        var text=""
        while ((line= textFile.readln())!="")
        {
          text+=line+"\r\n";
        }
        sourceText.setValueAtTime(starttime,text);
        sourceText.setValueAtTime(stoptime,"");
      }

      textFile.close();
      pb.close();
    }
  }
}


/*
  Easy to use progress bar for ExtendScript.
  Written by poly@omino.com, 2007
  Enjoy, but this credit must remain intact.

  >usage:

  > var pb = progressBar("main title","subtitle");
  pb.setValue(valueFrom0to1);
  pb.setTitle2("new subtitle display!")
  if(pb.isCanceled())
  pb.close();
*/

function progressBar(title1)
{
  var result = new Object();
  result.running = true;
  result.p = new Window("palette");
  result.p.orientation = "column";
  result.p.alignChildren = "left";

  result.t1 = result.p.add("statictext",undefined,title1);
  result.b = result.p.add("progressbar");

  result.c = result.p.add("button",undefined,"Cancel");
  result.c.onClick = function()
  {
    this.running = false;
  }

  result.isRunning = function() { return this.running; }
  result.isCanceled = function() { return !this.isRunning(); }
  result.setValue = function(x) { this.b.value = x * 100; }
  result.setTitle1 = function(t1) { this.t1.text = t1; }
  result.close = function() { this.p.close(); }

  result.p.show();
  return result;
} 
makeSubs();

Script for position property

/*
  PARAMETERS
*/

var decal = 30;
var lineHeight = 55;

/*
  FUNCTIONS
*/

var pos = [];
pos[0] = transform.position[0];
pos[1] = transform.position[1];
pos[1] = thisComp.height + decal - (text.sourceText.split("\r").length * lineHeight);
pos;




/*
  PARAMETERS
*/

var marg = 40;
var accuracy = 40;

/*
  FUNCTIONS
*/

var pos = [];
pos[0] = transform.position[0];
pos[1] = transform.position[1];
pos[1] = pos[1] + thisComp.height - (getTRBL( this, accuracy )[2] + marg );
pos;

function getTRBL( L, accuracy )
{
  step = 1.0; // higher values speed things up (2 means two times faster) but reduce precision

  w = thisComp.width;
  h = thisComp.height;
  halfW = w / 2;
  halfH = h / 2;
  halfStep = step / 2;

  left = w;
  right = 0;
  top = h;
  bottom = 0;

  // find left
  /*found = false;
  for (x = 0; !found && x < w; x+=step)
  {
    if (L.sampleImage([x,halfH], [halfStep,halfH], true)[3] > 0)
    {
      found = true;
      if (x < left) 
        left = x;
    }
  }
  // find right
  found = false;
  for (x = w; !found && x >= 0; x-=step)
  {
    if (L.sampleImage([x,halfH], [halfStep,halfH], true)[3] > 0)
    {
      found = true;
      if (x > right) 
        right = x;
    }
  }
  // find top
  found = false;
  for (y = 0; !found && y < h; y+=step)
  {
    if (L.sampleImage([halfW,y], [halfW,halfStep], true)[3] > 0)
    {
      found = true;
      if (y < top) 
        top = y;
    }
  }
  // find bottom
  found = false;
  for (y = h; !found && y >= 0; y-=step)
  {
    if (L.sampleImage([halfW,y], [halfW,halfStep], true)[3] > 0)
    {
      found = true;
      if (y > bottom) 
        bottom = y;
    }
  }

  return [ top, right, bottom, left ];*/


  // find bottom
  found = false;
  for (y = h; !found && y >= 0; y-=step)
  {
    var yR = Math.round( random(y - accuracy, y) );
    if (L.sampleImage([halfW,yR], [halfW,halfStep], true)[3] == 0)
    {
      y = yR;
    }
    else if (L.sampleImage([halfW,y], [halfW,halfStep], true)[3] > 0)
    {
      found = true;
      if (y > bottom) 
        bottom = y;
    }
  }

  return [ 0, 0, bottom, 0 ];
}