tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

video_recorder.py (338B)


      1 #!/usr/bin/env vpython3
      2 # Copyright 2015 The Chromium Authors
      3 # Use of this source code is governed by a BSD-style license that can be
      4 # found in the LICENSE file.
      5 
      6 import sys
      7 
      8 import devil_chromium
      9 from devil.android.tools import video_recorder
     10 
     11 if __name__ == '__main__':
     12  devil_chromium.Initialize()
     13  sys.exit(video_recorder.main())