Click here to Skip to main content
16,004,977 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
Questionproblem with running a .net 2.0 application on vista Pin
prasadbuddhika21-Sep-09 0:04
prasadbuddhika21-Sep-09 0:04 
AnswerRe: problem with running a .net 2.0 application on vista Pin
Not Active21-Sep-09 0:47
mentorNot Active21-Sep-09 0:47 
AnswerRe: problem with running a .net 2.0 application on vista Pin
Luc Pattyn21-Sep-09 1:08
sitebuilderLuc Pattyn21-Sep-09 1:08 
GeneralRe: problem with running a .net 2.0 application on vista Pin
prasadbuddhika21-Sep-09 18:01
prasadbuddhika21-Sep-09 18:01 
GeneralRe: problem with running a .net 2.0 application on vista Pin
Luc Pattyn22-Sep-09 2:16
sitebuilderLuc Pattyn22-Sep-09 2:16 
QuestionWrite FLV video with bitmap images programmatically Pin
Raj Jayaswal20-Sep-09 19:07
Raj Jayaswal20-Sep-09 19:07 
AnswerRe: Write FLV video with bitmap images programmatically Pin
Simon P Stevens21-Sep-09 0:40
Simon P Stevens21-Sep-09 0:40 
GeneralRe: Write FLV video with bitmap images programmatically Pin
Raj Jayaswal22-Sep-09 5:17
Raj Jayaswal22-Sep-09 5:17 
hi,
thanks for the reply.

I tried using FFMPEG but there was no response. I am using following code. Please see that the my image which is passed as srcURL is generated dynamically.

Private Sub GenerateVideo(ByVal srcURL As String)
     Dim ffmpegURL As String = "ffmpeg.exe"
     Dim directoryInfo As New IO.DirectoryInfo(Path.GetDirectoryName(Application.StartupPath & "\ffmpeg.exe"))
     Dim startInfo As New ProcessStartInfo()
     startInfo.FileName = "ffmpeg.exe"


     startInfo.Arguments = "-r 10 -b 1800 -i " + srcURL + " c:\new.mp4 "
     ' -i = input file -f = file format -vframe = video frame -s = size -ss = seek to frame
     startInfo.WorkingDirectory = directoryInfo.FullName
     startInfo.UseShellExecute = True
     startInfo.RedirectStandardOutput = False
     startInfo.RedirectStandardInput = False
     startInfo.RedirectStandardError = False
     startInfo.WindowStyle = ProcessWindowStyle.Hidden
     Using process As New Process()
         process.StartInfo = startInfo
         Try
             process.Start()
         Catch ex As Exception
             MsgBox(ex.Message.ToString)
         End Try
         process.WaitForExit()
     End Using
 End Sub


Please what is going wrong here.
QuestionHow to make a uninstaller for a .net windows application Pin
Raj Jayaswal20-Sep-09 19:02
Raj Jayaswal20-Sep-09 19:02 
QuestionAutoScroll Form and height ... Pin
devboycpp19-Sep-09 9:00
devboycpp19-Sep-09 9:00 
AnswerRe: AutoScroll Form and height ... Pin
Dave Kreskowiak19-Sep-09 10:59
mveDave Kreskowiak19-Sep-09 10:59 
GeneralRe: AutoScroll Form and height ... Pin
devboycpp19-Sep-09 21:34
devboycpp19-Sep-09 21:34 
GeneralRe: AutoScroll Form and height ... Pin
Dave Kreskowiak20-Sep-09 2:05
mveDave Kreskowiak20-Sep-09 2:05 
QuestionExceptions while loading project in VB.Net?? Pin
GuillermoOso18-Sep-09 11:57
GuillermoOso18-Sep-09 11:57 
AnswerRe: Exceptions while loading project in VB.Net?? Pin
Luc Pattyn18-Sep-09 12:50
sitebuilderLuc Pattyn18-Sep-09 12:50 
GeneralRe: Exceptions while loading project in VB.Net?? Pin
GuillermoOso18-Sep-09 12:57
GuillermoOso18-Sep-09 12:57 
GeneralRe: Exceptions while loading project in VB.Net?? Pin
Luc Pattyn18-Sep-09 13:03
sitebuilderLuc Pattyn18-Sep-09 13:03 
GeneralRe: Exceptions while loading project in VB.Net?? Pin
GuillermoOso18-Sep-09 17:12
GuillermoOso18-Sep-09 17:12 
Questionadding Launch conditions Pin
Raj Jayaswal18-Sep-09 8:07
Raj Jayaswal18-Sep-09 8:07 
AnswerRe: adding Launch conditions Pin
Eddy Vluggen18-Sep-09 10:04
professionalEddy Vluggen18-Sep-09 10:04 
GeneralRe: adding Launch conditions [modified] Pin
Raj Jayaswal18-Sep-09 18:55
Raj Jayaswal18-Sep-09 18:55 
GeneralRe: adding Launch conditions Pin
Eddy Vluggen19-Sep-09 1:06
professionalEddy Vluggen19-Sep-09 1:06 
GeneralRe: adding Launch conditions Pin
Raj Jayaswal19-Sep-09 1:26
Raj Jayaswal19-Sep-09 1:26 
GeneralRe: adding Launch conditions Pin
Eddy Vluggen19-Sep-09 1:38
professionalEddy Vluggen19-Sep-09 1:38 
GeneralRe: adding Launch conditions Pin
Raj Jayaswal19-Sep-09 1:50
Raj Jayaswal19-Sep-09 1:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.