ass_parser is a crate to parse .ass (Advanced SubStation Alpha) files. which is a subtitle file for creating and displaying subtitles in video files. It is widely used due to it's complex text formatting, positioning and styling. The Advanced SubStation Alpha is a successor to the SubStation Alpha .ssa file.
Add ass_parser
as a dependency to your cargo.toml:
cargo add ass_parser
AssParser is based on the principle of easy to read write and modify .ass
files. You can create, modify and edit ASS files however you want using this tool.
Creating a simple Advanced SubStation Alpha
(.ass)
file with default values!
use ass_parser::{self, AssFile, ScriptInfo, V4Format, Events, AssFileOptions};
use hex_color::HexColor;
fn main() {
let mut ass_file = AssFile::new();
let hexcolor = AssFileOptions::get_ass_color(HexColor::YELLOW);
ass_file.components.script
.set_script(ScriptInfo::default());
ass_file.components.v4
.set_v4(V4Format::default())
.set_primarycolour(&hexcolor);
ass_file.components.events
.set_events(Events::default());
AssFile::save_file(&ass_file, "new_subtitles.ass")
}
Here we create an .ass file with default values and When you open the .ass file you can see the following content.
ScriptType: v4.00+
PlayResX: 384
PlayResY: 288
ScaledBorderAndShadow: yes
YCbCr Matrix: None
[V4+ Styles]
Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding
Style: Default,Arial,16,&H00ff,&Hffffff,&H0,&H0,0,0,0,0,100,100,0,0,1,1,0,2,10,10,10,1
[Events]
Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
use ass_parser::{self, AssFile, ScriptInfo, V4Format, Events, AssFileOptions, Dialogue};
use ass_parser::IndexNotFound;
use hex_color::HexColor;
fn main() -> Result<(), IndexNotFound>{
let mut ass_file = AssFile::new();
let hexcolor = AssFileOptions::get_ass_color(HexColor::YELLOW);
let first_dialogue = Dialogue::default()
.set_text("Hello There!")
.set_start("0:00:00.10")
.set_end("0:00:00.50");
let second_dialogue = Dialogue::default()
.set_text("Hello Friend!")
.set_start("0:00:00.50")
.set_end("0:00:00.58");
let third_dialogue = Dialogue::default()
.set_text("Hello World!!")
.set_start("0:00:00.58")
.set_end("0:00:01.01");
let events = Events::new()
.add_first_dialogue(first_dialogue)?
.add_dialogue(second_dialogue)
.add_dialogue(third_dialogue)
.create();
ass_file.components.script
.set_script(ScriptInfo::default())
.set_scripttype("FFMPEG");
ass_file.components.v4
.set_v4(V4Format::default())
.set_primarycolour(&hexcolor);
ass_file.components.events
.set_events(events);
AssFile::save_file(&ass_file, "new_subtitles.ass");
Ok(())
}
ScriptType: FFMPEG
PlayResX: 384
PlayResY: 288
ScaledBorderAndShadow: yes
YCbCr Matrix: None
[V4+ Styles]
Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding
Style: Default,Arial,16,&H0ffff,&Hffffff,&H0,&H0,0,0,0,0,100,100,0,0,1,1,0,2,10,10,10,1
[Events]
Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
Dialogue: 0,0:00:00.10,0:00:00.50,Default,,0,0,0,,Hello There!
Dialogue: 0,00:00.50,00:00.58,Default,,0,0,0,,Hello Friend!
Dialogue: 0,0:00:00.58,0:00:01.01,Default,,0,0,0,,Hello World!!
let first_dialogue = Dialogue::default()
.set_start("0:00:00.10")
.set_end("0:00:00.50");
let second_dialogue = Dialogue::default()
.set_start("00:00.50")
.set_end("00:00.58");
let third_dialogue = Dialogue::default()
.set_start("0:00:00.58")
.set_end("0:00:01.01");
let events = Events::new()
.add_first_dialogue(first_dialogue)?
.add_dialogue(second_dialogue)
.add_dialogue(third_dialogue)
.create();
You can add individual colors to each subtitles using the .set_colour()
function. This
function takes HexColor. Make sure that you are using rand + std features to generate random colors via rand out of the box.
let random_color:HexColor = rand::random();
let dialogue = Dialogue::default()
.set_start(&start)
.set_end(&end)
.set_text(&text)
.set_colour(random_color);
event.add_dialogue(dialogue);
Use the from_file
function of AssFile to modify and change the contents or appearance.
use ass_parser::{AssFile, Dialogue, AssFileOptions};
use hex_color::HexColor;
fn main() -> Result<(), std::io::Error>{
let mut ass_file = AssFile::from_file("subtitles.ass")?;
let dialogue = Dialogue::default()
.set_text("Hello Friend!");
let primary_color = AssFileOptions::get_ass_color(HexColor::RED);
ass_file.components.v4
.set_primarycolour(&primary_color);
ass_file.components.events
.add_dialogue(dialogue);
AssFile::save_file(&ass_file, "new_subtitles.ass");
Ok(())
}
Now you can load .srt
files and convert them to .ass
files and even modify them on the
process too. Here is an example from the examples
directory.
In this example we load an SubRip file (RapGod.srt
) and extract each subtitle from it and
modify them by adding random colors to each subtitle. Then finally converting it to a .ass
file and saving it.
use hex_color::HexColor;
use ass_parser::{AssFile, AssFileOptions};
use ass_parser::{ScriptInfo, V4Format, Events, Dialogue};
use rand;
fn main() {
let hexcolor = AssFileOptions::get_ass_color(HexColor::YELLOW);
let srt_file = AssFile::from_srt("RapGod.srt");
let mut ass_file = AssFile::new();
let mut event = Events::default();
for srt_seg in srt_file.iter() {
let start = &srt_seg.start;
let end = &srt_seg.end;
let text = &srt_seg.text;
let random_color:HexColor = rand::random();
let dialogue = Dialogue::default()
.set_start(&start)
.set_end(&end)
.set_text(&text)
.set_colour(random_color);
event.add_dialogue(dialogue);
}
ass_file.components.script
.set_script(ScriptInfo::default());
ass_file.components.v4
.set_v4(V4Format::default())
.set_primarycolour(&hexcolor);
ass_file.components.events
.set_events(event);
AssFile::save_file(&ass_file, "new_subtitle.ass");
}
You can burn this subtitle file to a video or use any video player to select a video file along with this subtitle file.
Using FFmpeg to burn the video with the subtitles file.
You will first have to download and install FFmpeg on your system to try this. Once you have
downloaded you can use the following command to burn the video file video.avi
and the
generated subtitle file new_subtitles.ass
to a single output video file output.avi
ffmpeg -i video.avi -vf "ass=new_subtitles.ass" output.avi