Sunday, January 29, 2017

Create DVD from the command line

Convert the source to an NTSC compatible DVD video format
ffmpeg  -i saltbae.mp4  -target ntsc-dvd  -aspect 16:9  saltbae.mpg

Author the DVD compatible video into the DVD container format with chapters every 5 minutes
dvdauthor  -o DVD/ -t -c 0,5:00,10:00,15:00,20:00,25:00,30:00,35:00,40:00 saltbae.mpg

Create the table of contents files VIDEO_TS.IFO
dvdauthor -T -o DVD

Done

Saturday, January 28, 2017

How to set time restrictions in Windows 10 from the command line



net user /time:,

User1 allowed to use the computer weekdays from 1-11pm

net user user1 /time:M-F,1pm-11pm

User2 allowed to use the computer Saturday from 8am-4pm, and  weekdays from 9am-9pm

net user user2 /time:Sa,8am-4pm;M-F,9am-9pm

Reset to defaults
net user user1 /time:all  


Show stats net user user1