forked from hummypkg/webif
22320536ee
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1420 2a923420-c742-0410-a762-8d5b09965624
24 lines
423 B
Plaintext
Executable File
24 lines
423 B
Plaintext
Executable File
#!/mod/bin/jimsh
|
|
|
|
package require cgi
|
|
source /mod/webif/lib/setup
|
|
|
|
httpheader "application/json"
|
|
|
|
set dir [cgi_get dir "/media/My Video/Children"]
|
|
|
|
puts "{"
|
|
foreach file [readdir -nocomplain $dir] {
|
|
if {![string match {*.ts} $file]} { continue }
|
|
|
|
set xfile [file rootname $file]
|
|
if {[catch {set eit [exec /mod/bin/stripts -cq "$dir/$xfile"]}]} {
|
|
continue
|
|
}
|
|
|
|
puts " \"$file\": $eit,"
|
|
}
|
|
puts " \"dummy\": 0"
|
|
puts "}"
|
|
|