2011-06-22 23:36:30 +00:00
|
|
|
#!/mod/bin/jimsh
|
|
|
|
|
|
|
|
package require cgi
|
|
|
|
|
|
|
|
puts "Content-Type: text/html"
|
|
|
|
puts ""
|
|
|
|
|
|
|
|
cgi_input
|
|
|
|
#cgi_dump
|
|
|
|
|
|
|
|
if [file exists /mod/bin/ffmpeg] {
|
|
|
|
set file [dict get $_cgi file]
|
2012-06-15 21:34:07 +00:00
|
|
|
puts [exec /mod/webif/lib/bin/ffmpeg -i $file]
|
2011-06-22 23:36:30 +00:00
|
|
|
} else {
|
|
|
|
puts "Install ffmpeg package for more information..."
|
|
|
|
}
|
|
|
|
|