Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Typewriter effect to multiple text rows in premier pro

New Here ,
Sep 29, 2021 Sep 29, 2021

I can animate multiple lines or row of text using typewriter effect in after effect. But the effect is not available in premier pro. So how can I create a typewriter effect for premier pro. Please note that I can do it if I create separate lines of text and then I add crop or linear wipe effect on each line and animate those. But it takes more time. I don't want to do in that way. Kindly help me if there is other way to do which take less time and effective like typewriter effect in after effect..

TOPICS
Editing , Effects and Titles
9.8K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 29, 2021 Sep 29, 2021

That is the way to do it in Pro. One line at a time.

The fast way is Ae.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jan 15, 2023 Jan 15, 2023

Not possible within Premiere, in After effects, But You can add the typewriter preset from built-in presets in After Effects, and import the composition to Premiere Pro's timeline.

If you wish to add a text symbol Ex "|" "_" as a cursor to add flavor to your animation, you can try using this expression:
Paste to Source Text parameter

var sign = "|"; // change the blinking sign to "|"or "_"
var blinkInterval = 15; // edit the blinking interval in frames
// slider with text length
var i = effect("Text")("ADBE Slider Control-0001"); 
// checkbox to turn the cursor on and off 
var on = effect("On/Off")("ADBE Checkbox Control-0001"); 

var frames = timeToFrames(time);

var check = frames / blinkInterval;

if (on == 1) {
  if (i.valueAtTime(time + thisComp.frameDuration) > i) {  
    end = sign;
  } else {
    if (Math.floor(check) % 2 == 0) { 
      end = sign;
    } else {
      end = " ";
    }
  }
} else {
  end = " ";
}

text.sourceText.substr(0,parseInt(i)) + end; 

in-depth explanation here https://aejuice.com/blog/typing-text-with-cursor-after-effects
a shortcut to creating this cursor effect, is using an Essential Graphics template, Here's one that I use:
https://videohive.net/item/typewriter-custom-cursor/42859632

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 15, 2023 Jan 15, 2023
LATEST

In Ae, Apply Typewriter preset to your text, add "Source Text" property of your text layer to the "Essential Graphics" panel, then export your Ae composition as a Mogrt.

Import that Mogrt into Premiere Pro, and use it to do your typewriter animations.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines