2011-06-22 23:36:30 +00:00
|
|
|
#!/mod/bin/jimsh
|
|
|
|
|
|
|
|
package require cgi
|
2013-02-09 22:46:15 +00:00
|
|
|
source /mod/webif/lib/setup
|
2011-06-22 23:36:30 +00:00
|
|
|
|
2013-02-09 22:46:15 +00:00
|
|
|
httpheader
|
2011-06-22 23:36:30 +00:00
|
|
|
|
|
|
|
if [file exists /mod/bin/ffmpeg] {
|
2013-02-09 22:46:15 +00:00
|
|
|
set file [cgi_get 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..."
|
|
|
|
}
|
|
|
|
|