Link to home
Start Free TrialLog in
Avatar of ITsolutionWizard
ITsolutionWizardFlag for United States of America

asked on

c# mp3

I have list of pictures for each product in the file folder. all are jpg

1. how can I add text eg. product name in the center of the picture and link them together like a slide show.

2. after that , I hope to create a file as mp4

is that possible written in c# ?

thanks
Avatar of David Favor
David Favor
Flag of United States of America image

What you're talking about will likely be a 2x pass process.

1) Use ImageMagick to ingest jpg images + annotate them with text.

2) Use FFmpeg to ingest annotated images + output a movie.

You can do this in c#... which will be a massive amount of work with very little benefit.

Better to just script calls to convert (ImageMagick) + ffmpeg from either BASH or PERL or some scripting language.
Tip: What you're describing is very simple to do + consider....

1) To do this, best to start with an OS like Ubuntu Bionic or OSX, where you can easily install ImageMagick + FFmpeg...

Because... building both of these from source will require a good bit of time, as building the dependencies can take a very long time.

Better to install pre-built packages than building from source.

2) Once you have convert + ffmpeg running, doing all the work is simple too... and very time consuming...

You can always hire someone to do this for you + if you're going to be doing this type of workflow repeatedly...

Don't hire someone. Do this yourself.

What you will learn may be highly useful for other projects.
Avatar of ITsolutionWizard

ASKER

please show me some resources using C# thanks
ASKER CERTIFIED SOLUTION
Avatar of David Favor
David Favor
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial