forked from hummypkg/webif
9d8d630b07
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1066 2a923420-c742-0410-a762-8d5b09965624
18 lines
282 B
Plaintext
Executable File
18 lines
282 B
Plaintext
Executable File
#!/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]
|
|
puts [exec /mod/webif/lib/bin/ffmpeg -i $file]
|
|
} else {
|
|
puts "Install ffmpeg package for more information..."
|
|
}
|
|
|