Tuesday 3 February 2015

Hi everyone,
First off this post is a little late but there have been some interesting developments! Here it goes....

Well the DVD project wasn't working out very well so my mentor asked me to work on something else while we figured out what to do next about it.
So I worked on adding some enhanced features to the WebVTT subtitles encoder for a while. 

Currently I am working on  ASS subtitles and I've added a new option to the subtitles video filter.This option basically allows a user to customize the hard-subbed subtitles in a video. 
For e.g:
  • If I wish to change the font size of the subtitles (make them 22), I can use:
./ffmpeg -i test.avi -vf "subtitles=testing.srt:force_style='FontSize=22'"  out.avi

  • Now, if I want to change the Type of font,font size,font color(Red) and style(italicize) the subtitles,I can do something like:

./ffmpeg -i test.avi -vf "subtitles=testing.srt:force_style='FontName=Arial,FontSize=22,PrimaryColour=255,Italic=-1'"  out.avi

  •  If the user wants to add Outline to the font or Change the Alignment then it can be achieved using :
./ffmpeg -i test.avi -vf "subtitles=testing.srt:force_style='Outline=2,Alignment=3'"  out.avi
 
There are many other formatting styles that can be implemented. A more detailed list of the available styles is provided below:


Monday 19 January 2015

I'll be sharing what I've been trying with the DVD protocol these days:
I tried to remux/transmux the test ISO files into different video file formats. I tried working on mkv,mpg,avi etc. Well, there were some issue with timestamps while converting into the mkv file format and so it failed. Transmuxing into avi and mpg worked but they would keep looping over a few seconds of video throughout. Thanks to my mentor's help I was able to fix that problem...the dvd_seek function was not working properly. I had also added some menu functionality in hopes of making the remuxing work properly but it didnt turn out so useful. So,currently I am cleaning up the protocol code and also trying to learn git the right way (I always try to evade learning git and end up messing things up :-/). Thats all for now :-)

Saturday 3 January 2015

Happy New Year everyone! Here are a few updates on the project :
Well it was finally decided that an input device might not be the correct choice for DVD support since the libdvd* libraries do not provide sufficient abstraction to convert the DVD data into separate packets and then send them as individual streams. Sooo...I am back to working on the original DVD protocol patch. Now as far as I understand the protocols in FFmpeg are basically used to read data from the given file (in this case dvd) and then pass it on to a demuxer. I've been working with the protocol and one major problem that has surfaced is that the MPEG streams that are finally demuxed by the mpeg demuxer do not show any subtitles stream (I know, it breaks my heart too :-/ ) . Apart from that the code seems to be in need of a few tweaks the patch being quite an old one (2009 :O ). Currently I'm testing it with the changes my mentor has suggested to keep the whole thing to a bare minimum while achieving the desired functionality. That's all for the time being. I'll keep updating :)