Guest User

5815492

a guest
Feb 1st, 2021
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 53.70 KB | None | 0 0
  1. Microsoft Windows [Version 10.0.17134.1304]
  2. (c) 2018 Microsoft Corporation. All rights reserved.
  3.  
  4. C:\Windows\System32>youtube-dl --help
  5. Usage: youtube-dl [OPTIONS] URL [URL...]
  6.  
  7. Options:
  8. General Options:
  9. -h, --help Print this help text and exit
  10. --version Print program version and exit
  11. -U, --update Update this program to latest version. Make sure that you have sufficient permissions (run with sudo if needed)
  12. -i, --ignore-errors Continue on download errors, for example to skip unavailable videos in a playlist
  13. --abort-on-error Abort downloading of further videos (in the playlist or the command line) if an error occurs
  14. --dump-user-agent Display the current browser identification
  15. --list-extractors List all supported extractors
  16. --extractor-descriptions Output descriptions of all supported extractors
  17. --force-generic-extractor Force extraction to use the generic extractor
  18. --default-search PREFIX Use this prefix for unqualified URLs. For example "gvsearch2:" downloads two videos from google videos for youtube-dl "large
  19. apple". Use the value "auto" to let youtube-dl guess ("auto_warning" to emit a warning when guessing). "error" just throws an
  20. error. The default value "fixup_error" repairs broken URLs, but emits an error if this is not possible instead of searching.
  21. --ignore-config Do not read configuration files. When given in the global configuration file /etc/youtube-dl.conf: Do not read the user
  22. configuration in ~/.config/youtube-dl/config (%APPDATA%/youtube-dl/config.txt on Windows)
  23. --config-location PATH Location of the configuration file; either the path to the config or its containing directory.
  24. --flat-playlist Do not extract the videos of a playlist, only list them.
  25. --mark-watched Mark videos watched (YouTube only)
  26. --no-mark-watched Do not mark videos watched (YouTube only)
  27. --no-color Do not emit color codes in output
  28.  
  29. Network Options:
  30. --proxy URL Use the specified HTTP/HTTPS/SOCKS proxy. To enable SOCKS proxy, specify a proper scheme. For example socks5://127.0.0.1:1080/.
  31. Pass in an empty string (--proxy "") for direct connection
  32. --socket-timeout SECONDS Time to wait before giving up, in seconds
  33. --source-address IP Client-side IP address to bind to
  34. -4, --force-ipv4 Make all connections via IPv4
  35. -6, --force-ipv6 Make all connections via IPv6
  36.  
  37. Geo Restriction:
  38. --geo-verification-proxy URL Use this proxy to verify the IP address for some geo-restricted sites. The default proxy specified by --proxy (or none, if the
  39. option is not present) is used for the actual downloading.
  40. --geo-bypass Bypass geographic restriction via faking X-Forwarded-For HTTP header
  41. --no-geo-bypass Do not bypass geographic restriction via faking X-Forwarded-For HTTP header
  42. --geo-bypass-country CODE Force bypass geographic restriction with explicitly provided two-letter ISO 3166-2 country code
  43. --geo-bypass-ip-block IP_BLOCK Force bypass geographic restriction with explicitly provided IP block in CIDR notation
  44.  
  45. Video Selection:
  46. --playlist-start NUMBER Playlist video to start at (default is 1)
  47. --playlist-end NUMBER Playlist video to end at (default is last)
  48. --playlist-items ITEM_SPEC Playlist video items to download. Specify indices of the videos in the playlist separated by commas like: "--playlist-items
  49. 1,2,5,8" if you want to download videos indexed 1, 2, 5, 8 in the playlist. You can specify range: "--playlist-items 1-3,7,10-13",
  50. it will download the videos at index 1, 2, 3, 7, 10, 11, 12 and 13.
  51. --match-title REGEX Download only matching titles (regex or caseless sub-string)
  52. --reject-title REGEX Skip download for matching titles (regex or caseless sub-string)
  53. --max-downloads NUMBER Abort after downloading NUMBER files
  54. --min-filesize SIZE Do not download any videos smaller than SIZE (e.g. 50k or 44.6m)
  55. --max-filesize SIZE Do not download any videos larger than SIZE (e.g. 50k or 44.6m)
  56. --date DATE Download only videos uploaded in this date
  57. --datebefore DATE Download only videos uploaded on or before this date (i.e. inclusive)
  58. --dateafter DATE Download only videos uploaded on or after this date (i.e. inclusive)
  59. --min-views COUNT Do not download any videos with less than COUNT views
  60. --max-views COUNT Do not download any videos with more than COUNT views
  61. --match-filter FILTER Generic video filter. Specify any key (see the "OUTPUT TEMPLATE" for a list of available keys) to match if the key is present, !key
  62. to check if the key is not present, key > NUMBER (like "comment_count > 12", also works with >=, <, <=, !=, =) to compare against a
  63. number, key = 'LITERAL' (like "uploader = 'Mike Smith'", also works with !=) to match against a string literal and & to require
  64. multiple matches. Values which are not known are excluded unless you put a question mark (?) after the operator. For example, to
  65. only match videos that have been liked more than 100 times and disliked less than 50 times (or the dislike functionality is not
  66. available at the given service), but who also have a description, use --match-filter "like_count > 100 & dislike_count <? 50 &
  67. description" .
  68. --no-playlist Download only the video, if the URL refers to a video and a playlist.
  69. --yes-playlist Download the playlist, if the URL refers to a video and a playlist.
  70. --age-limit YEARS Download only videos suitable for the given age
  71. --download-archive FILE Download only videos not listed in the archive file. Record the IDs of all downloaded videos in it.
  72. --include-ads Download advertisements as well (experimental)
  73.  
  74. Download Options:
  75. -r, --limit-rate RATE Maximum download rate in bytes per second (e.g. 50K or 4.2M)
  76. -R, --retries RETRIES Number of retries (default is 10), or "infinite".
  77. --fragment-retries RETRIES Number of retries for a fragment (default is 10), or "infinite" (DASH, hlsnative and ISM)
  78. --skip-unavailable-fragments Skip unavailable fragments (DASH, hlsnative and ISM)
  79. --abort-on-unavailable-fragment Abort downloading when some fragment is not available
  80. --keep-fragments Keep downloaded fragments on disk after downloading is finished; fragments are erased by default
  81. --buffer-size SIZE Size of download buffer (e.g. 1024 or 16K) (default is 1024)
  82. --no-resize-buffer Do not automatically adjust the buffer size. By default, the buffer size is automatically resized from an initial value of SIZE.
  83. --http-chunk-size SIZE Size of a chunk for chunk-based HTTP downloading (e.g. 10485760 or 10M) (default is disabled). May be useful for bypassing
  84. bandwidth throttling imposed by a webserver (experimental)
  85. --playlist-reverse Download playlist videos in reverse order
  86. --playlist-random Download playlist videos in random order
  87. --xattr-set-filesize Set file xattribute ytdl.filesize with expected file size
  88. --hls-prefer-native Use the native HLS downloader instead of ffmpeg
  89. --hls-prefer-ffmpeg Use ffmpeg instead of the native HLS downloader
  90. --hls-use-mpegts Use the mpegts container for HLS videos, allowing to play the video while downloading (some players may not be able to play it)
  91. --external-downloader COMMAND Use the specified external downloader. Currently supports aria2c,avconv,axel,curl,ffmpeg,httpie,wget
  92. --external-downloader-args ARGS Give these arguments to the external downloader
  93.  
  94. Filesystem Options:
  95. -a, --batch-file FILE File containing URLs to download ('-' for stdin), one URL per line. Lines starting with '#', ';' or ']' are considered as comments
  96. and ignored.
  97. --id Use only video ID in file name
  98. -o, --output TEMPLATE Output filename template, see the "OUTPUT TEMPLATE" for all the info
  99. --autonumber-start NUMBER Specify the start value for %(autonumber)s (default is 1)
  100. --restrict-filenames Restrict filenames to only ASCII characters, and avoid "&" and spaces in filenames
  101. -w, --no-overwrites Do not overwrite files
  102. -c, --continue Force resume of partially downloaded files. By default, youtube-dl will resume downloads if possible.
  103. --no-continue Do not resume partially downloaded files (restart from beginning)
  104. --no-part Do not use .part files - write directly into output file
  105. --no-mtime Do not use the Last-modified header to set the file modification time
  106. --write-description Write video description to a .description file
  107. --write-info-json Write video metadata to a .info.json file
  108. --write-annotations Write video annotations to a .annotations.xml file
  109. --load-info-json FILE JSON file containing the video information (created with the "--write-info-json" option)
  110. --cookies FILE File to read cookies from and dump cookie jar in
  111. --cache-dir DIR Location in the filesystem where youtube-dl can store some downloaded information permanently. By default $XDG_CACHE_HOME/youtube-
  112. dl or ~/.cache/youtube-dl . At the moment, only YouTube player files (for videos with obfuscated signatures) are cached, but that
  113. may change.
  114. --no-cache-dir Disable filesystem caching
  115. --rm-cache-dir Delete all filesystem cache files
  116.  
  117. Thumbnail images:
  118. --write-thumbnail Write thumbnail image to disk
  119. --write-all-thumbnails Write all thumbnail image formats to disk
  120. --list-thumbnails Simulate and list all available thumbnail formats
  121.  
  122. Verbosity / Simulation Options:
  123. -q, --quiet Activate quiet mode
  124. --no-warnings Ignore warnings
  125. -s, --simulate Do not download the video and do not write anything to disk
  126. --skip-download Do not download the video
  127. -g, --get-url Simulate, quiet but print URL
  128. -e, --get-title Simulate, quiet but print title
  129. --get-id Simulate, quiet but print id
  130. --get-thumbnail Simulate, quiet but print thumbnail URL
  131. --get-description Simulate, quiet but print video description
  132. --get-duration Simulate, quiet but print video length
  133. --get-filename Simulate, quiet but print output filename
  134. --get-format Simulate, quiet but print output format
  135. -j, --dump-json Simulate, quiet but print JSON information. See the "OUTPUT TEMPLATE" for a description of available keys.
  136. -J, --dump-single-json Simulate, quiet but print JSON information for each command-line argument. If the URL refers to a playlist, dump the whole playlist
  137. information in a single line.
  138. --print-json Be quiet and print the video information as JSON (video is still being downloaded).
  139. --newline Output progress bar as new lines
  140. --no-progress Do not print progress bar
  141. --console-title Display progress in console titlebar
  142. -v, --verbose Print various debugging information
  143. --dump-pages Print downloaded pages encoded using base64 to debug problems (very verbose)
  144. --write-pages Write downloaded intermediary pages to files in the current directory to debug problems
  145. --print-traffic Display sent and read HTTP traffic
  146. -C, --call-home Contact the youtube-dl server for debugging
  147. --no-call-home Do NOT contact the youtube-dl server for debugging
  148.  
  149. Workarounds:
  150. --encoding ENCODING Force the specified encoding (experimental)
  151. --no-check-certificate Suppress HTTPS certificate validation
  152. --prefer-insecure Use an unencrypted connection to retrieve information about the video. (Currently supported only for YouTube)
  153. --user-agent UA Specify a custom user agent
  154. --referer URL Specify a custom referer, use if the video access is restricted to one domain
  155. --add-header FIELD:VALUE Specify a custom HTTP header and its value, separated by a colon ':'. You can use this option multiple times
  156. --bidi-workaround Work around terminals that lack bidirectional text support. Requires bidiv or fribidi executable in PATH
  157. --sleep-interval SECONDS Number of seconds to sleep before each download when used alone or a lower bound of a range for randomized sleep before each
  158. download (minimum possible number of seconds to sleep) when used along with --max-sleep-interval.
  159. --max-sleep-interval SECONDS Upper bound of a range for randomized sleep before each download (maximum possible number of seconds to sleep). Must only be used
  160. along with --min-sleep-interval.
  161.  
  162. Video Format Options:
  163. -f, --format FORMAT Video format code, see the "FORMAT SELECTION" for all the info
  164. --all-formats Download all available video formats
  165. --prefer-free-formats Prefer free video formats unless a specific one is requested
  166. -F, --list-formats List all available formats of requested videos
  167. --youtube-skip-dash-manifest Do not download the DASH manifests and related data on YouTube videos
  168. --merge-output-format FORMAT If a merge is required (e.g. bestvideo+bestaudio), output to given container format. One of mkv, mp4, ogg, webm, flv. Ignored if no
  169. merge is required
  170.  
  171. Subtitle Options:
  172. --write-sub Write subtitle file
  173. --write-auto-sub Write automatically generated subtitle file (YouTube only)
  174. --all-subs Download all the available subtitles of the video
  175. --list-subs List all available subtitles for the video
  176. --sub-format FORMAT Subtitle format, accepts formats preference, for example: "srt" or "ass/srt/best"
  177. --sub-lang LANGS Languages of the subtitles to download (optional) separated by commas, use --list-subs for available language tags
  178.  
  179. Authentication Options:
  180. -u, --username USERNAME Login with this account ID
  181. -p, --password PASSWORD Account password. If this option is left out, youtube-dl will ask interactively.
  182. -2, --twofactor TWOFACTOR Two-factor authentication code
  183. -n, --netrc Use .netrc authentication data
  184. --video-password PASSWORD Video password (vimeo, smotri, youku)
  185.  
  186. Adobe Pass Options:
  187. --ap-mso MSO Adobe Pass multiple-system operator (TV provider) identifier, use --ap-list-mso for a list of available MSOs
  188. --ap-username USERNAME Multiple-system operator account login
  189. --ap-password PASSWORD Multiple-system operator account password. If this option is left out, youtube-dl will ask interactively.
  190. --ap-list-mso List all supported multiple-system operators
  191.  
  192. Post-processing Options:
  193. -x, --extract-audio Convert video files to audio-only files (requires ffmpeg or avconv and ffprobe or avprobe)
  194. --audio-format FORMAT Specify audio format: "best", "aac", "flac", "mp3", "m4a", "opus", "vorbis", or "wav"; "best" by default; No effect without -x
  195. --audio-quality QUALITY Specify ffmpeg/avconv audio quality, insert a value between 0 (better) and 9 (worse) for VBR or a specific bitrate like 128K
  196. (default 5)
  197. --recode-video FORMAT Encode the video to another format if necessary (currently supported: mp4|flv|ogg|webm|mkv|avi)
  198. --postprocessor-args ARGS Give these arguments to the postprocessor
  199. -k, --keep-video Keep the video file on disk after the post-processing; the video is erased by default
  200. --no-post-overwrites Do not overwrite post-processed files; the post-processed files are overwritten by default
  201. --embed-subs Embed subtitles in the video (only for mp4, webm and mkv videos)
  202. --embed-thumbnail Embed thumbnail in the audio as cover art
  203. --add-metadata Write metadata to the video file
  204. --metadata-from-title FORMAT Parse additional metadata like song title / artist from the video title. The format syntax is the same as --output. Regular
  205. expression with named capture groups may also be used. The parsed parameters replace existing values. Example: --metadata-from-
  206. title "%(artist)s - %(title)s" matches a title like "Coldplay - Paradise". Example (regex): --metadata-from-title "(?P<artist>.+?)
  207. - (?P<title>.+)"
  208. --xattrs Write metadata to the video file's xattrs (using dublin core and xdg standards)
  209. --fixup POLICY Automatically correct known faults of the file. One of never (do nothing), warn (only emit a warning), detect_or_warn (the default;
  210. fix file if we can, warn otherwise)
  211. --prefer-avconv Prefer avconv over ffmpeg for running the postprocessors
  212. --prefer-ffmpeg Prefer ffmpeg over avconv for running the postprocessors (default)
  213. --ffmpeg-location PATH Location of the ffmpeg/avconv binary; either the path to the binary or its containing directory.
  214. --exec CMD Execute a command on the file after downloading and post-processing, similar to find's -exec syntax. Example: --exec 'adb push {}
  215. /sdcard/Music/ && rm {}'
  216. --convert-subs FORMAT Convert the subtitles to other format (currently supported: srt|ass|vtt|lrc)
  217.  
  218. [...]
  219. E:\cs>dir
  220. Volume in drive E has no label.
  221. Volume Serial Number is 6330-3030
  222.  
  223. Directory of E:\cs
  224.  
  225. 01/04/2020 07:32 PM <DIR> .
  226. 01/04/2020 07:32 PM <DIR> ..
  227. 01/04/2020 07:32 PM <DIR> Node.js
  228. 0 File(s) 0 bytes
  229. 3 Dir(s) 427,294,720 bytes free
  230.  
  231. E:\cs>youtube-dl --abort-on-unavailable-fragment https://archive.org/download/beastars-season-1-1080p/%5BHCS%5D%20Beastars%20-%2003%20%5B1080p%5D.mkv
  232. [generic] [HCS] Beastars - 03 [1080p]: Requesting header
  233. [redirect] Following redirect to https://ia601504.us.archive.org/14/items/beastars-season-1-1080p/%5BHCS%5D%20Beastars%20-%2003%20%5B1080p%5D.mkv
  234. [generic] [HCS] Beastars - 03 [1080p]: Requesting header
  235. WARNING: Falling back on generic information extractor.
  236. [generic] [HCS] Beastars - 03 [1080p]: Downloading webpage
  237. WARNING: URL could be a direct video link, returning it as such.
  238. [download] Destination: [HCS] Beastars - 03 [1080p]-[HCS] Beastars - 03 [1080p].mkv
  239. [download] 2.3% of 513.77MiB at 839.68KiB/s ETA 10:12
  240. ERROR: Interrupted by user
  241.  
  242. E:\cs>ren "[HCS] Beastars - 03 [1080p]-[HCS] Beastars - 03 [1080p].mkv.part" "[HCS] Beastars - 03 [1080p]-[HCS] Beastars - 03 [1080p].mkv"
  243.  
  244. E:\cs>ffmpeg -i "[HCS] Beastars - 03 [1080p]-[HCS] Beastars - 03 [1080p].mkv" "[HCS] Beastars - 03 [1080p].mp4"
  245. ffmpeg version N-91990-g49c67e79ca Copyright (c) 2000-2018 the FFmpeg developers
  246. built with gcc 8.2.1 (GCC) 20180813
  247. configuration: --enable-gpl --enable-version3 --enable-sdl2 --enable-fontconfig --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libtheora --enable-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma --enable-zlib --enable-gmp --enable-libvidstab --enable-libvorbis --enable-libvo-amrwbenc --enable-libmysofa --enable-libspeex --enable-libxvid --enable-libaom --enable-libmfx --enable-amf --enable-ffnvcodec --enable-cuvid --enable-d3d11va --enable-nvenc --enable-nvdec --enable-dxva2 --enable-avisynth
  248. libavutil 56. 19.101 / 56. 19.101
  249. libavcodec 58. 30.100 / 58. 30.100
  250. libavformat 58. 18.101 / 58. 18.101
  251. libavdevice 58. 4.103 / 58. 4.103
  252. libavfilter 7. 32.100 / 7. 32.100
  253. libswscale 5. 2.100 / 5. 2.100
  254. libswresample 3. 2.100 / 3. 2.100
  255. libpostproc 55. 2.100 / 55. 2.100
  256. Guessed Channel Layout for Input Stream #0.1 : stereo
  257. Input #0, matroska,webm, from '[HCS] Beastars - 03 [1080p]-[HCS] Beastars - 03 [1080p].mkv':
  258. Metadata:
  259. encoder : libebml v1.3.9 + libmatroska v1.5.2
  260. creation_time : 2019-11-01T03:17:23.000000Z
  261. Duration: 00:22:57.18, start: 0.000000, bitrate: 72 kb/s
  262. Stream #0:0(jpn): Video: h264 (Main), yuv420p(progressive), 1920x1080 [SAR 1:1 DAR 16:9], 23.98 fps, 23.98 tbr, 1k tbn, 47.95 tbc (default)
  263. Stream #0:1(jpn): Audio: eac3, 48000 Hz, stereo, fltp (default)
  264. Stream #0:2: Subtitle: ass (default)
  265. Stream mapping:
  266. Stream #0:0 -> #0:0 (h264 (native) -> h264 (libx264))
  267. Stream #0:1 -> #0:1 (eac3 (native) -> aac (native))
  268. Press [q] to stop, [?] for help
  269. [libx264 @ 0000020c8f3423c0] using SAR=1/1
  270. [libx264 @ 0000020c8f3423c0] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX XOP FMA3 BMI2 AVX2
  271. [libx264 @ 0000020c8f3423c0] profile High, level 4.0, 4:2:0, 8-bit
  272. [libx264 @ 0000020c8f3423c0] 264 - core 157 r2932 303c484 - H.264/MPEG-4 AVC codec - Copyleft 2003-2018 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=3 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=23 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00
  273. Output #0, mp4, to '[HCS] Beastars - 03 [1080p].mp4':
  274. Metadata:
  275. encoder : Lavf58.18.101
  276. Stream #0:0(jpn): Video: h264 (libx264) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=-1--1, 23.98 fps, 24k tbn, 23.98 tbc (default)
  277. Metadata:
  278. encoder : Lavc58.30.100 libx264
  279. Side data:
  280. cpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: -1
  281. Stream #0:1(jpn): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 128 kb/s (default)
  282. Metadata:
  283. encoder : Lavc58.30.100 aac
  284. [matroska,webm @ 0000020c8f28a2c0] Read errorme=00:00:33.96 bitrate=2099.5kbits/s speed=0.0185x
  285. frame= 823 fps=0.3 q=-1.0 Lsize= 9677kB time=00:00:34.56 bitrate=2293.8kbits/s speed=0.0147x
  286. video:9134kB audio:519kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.248960%
  287. [libx264 @ 0000020c8f3423c0] frame I:25 Avg QP:14.71 size: 56865
  288. [libx264 @ 0000020c8f3423c0] frame P:262 Avg QP:19.79 size: 21632
  289. [libx264 @ 0000020c8f3423c0] frame B:536 Avg QP:20.30 size: 4223
  290. [libx264 @ 0000020c8f3423c0] consecutive B-frames: 7.8% 9.5% 20.0% 62.7%
  291. [libx264 @ 0000020c8f3423c0] mb I I16..4: 42.0% 45.1% 12.9%
  292. [libx264 @ 0000020c8f3423c0] mb P I16..4: 5.8% 14.2% 1.9% P16..4: 24.3% 4.3% 2.2% 0.0% 0.0% skip:47.3%
  293. [libx264 @ 0000020c8f3423c0] mb B I16..4: 0.4% 0.6% 0.1% B16..8: 21.1% 0.9% 0.1% direct: 1.1% skip:75.6% L0:44.7% L1:54.2% BI: 1.0%
  294. [libx264 @ 0000020c8f3423c0] 8x8 transform intra:58.5% inter:82.8%
  295. [libx264 @ 0000020c8f3423c0] coded y,uvDC,uvAC intra: 30.9% 45.9% 17.2% inter: 3.7% 7.2% 0.3%
  296. [libx264 @ 0000020c8f3423c0] i16 v,h,dc,p: 47% 22% 9% 22%
  297. [libx264 @ 0000020c8f3423c0] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 31% 14% 33% 3% 4% 4% 4% 3% 3%
  298. [libx264 @ 0000020c8f3423c0] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 24% 16% 17% 7% 9% 8% 7% 6% 5%
  299. [libx264 @ 0000020c8f3423c0] i8c dc,h,v,p: 53% 20% 19% 8%
  300. [libx264 @ 0000020c8f3423c0] Weighted P-Frames: Y:3.1% UV:3.1%
  301. [libx264 @ 0000020c8f3423c0] ref P L0: 65.9% 6.4% 17.8% 9.4% 0.5%
  302. [libx264 @ 0000020c8f3423c0] ref B L0: 81.2% 15.3% 3.4%
  303. [libx264 @ 0000020c8f3423c0] ref B L1: 96.1% 3.9%
  304. [libx264 @ 0000020c8f3423c0] kb/s:2179.70
  305. [aac @ 0000020c8f352d80] Qavg: 3983.690
  306.  
  307. E:\cs>youtube-dl -v
  308. [debug] System config: []
  309. [debug] User config: []
  310. [debug] Custom config: []
  311. [debug] Command-line args: ['-v']
  312. [debug] Encodings: locale cp1252, fs mbcs, out cp437, pref cp1252
  313. [debug] youtube-dl version 2020.11.17
  314. [debug] Python version 3.4.4 (CPython) - Windows-10-10.0.17134
  315. [debug] exe versions: ffmpeg 3.4, ffprobe N-91990-g49c67e79ca
  316. [debug] Proxy map: {}
  317. Usage: youtube-dl [OPTIONS] URL [URL...]
  318.  
  319. youtube-dl: error: You must provide at least one URL.
  320. Type youtube-dl --help to see a list of all options.
  321.  
  322. E:\cs>
  323.  
  324.  
  325.  
  326.  
  327.  
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334.  
  335.  
  336.  
  337.  
  338.  
  339.  
  340.  
  341.  
  342.  
  343.  
  344.  
  345.  
  346.  
  347.  
  348.  
  349.  
  350.  
  351.  
  352.  
  353.  
  354.  
  355.  
  356.  
  357.  
  358.  
  359.  
  360.  
  361.  
  362.  
  363.  
  364.  
  365.  
  366.  
  367.  
  368.  
  369.  
  370.  
  371.  
  372.  
  373.  
  374.  
  375.  
  376.  
  377.  
  378.  
  379. investorshangout.com
  380. m.investorshangout.com
  381. view-source:https://m.investorshangout.com/post/view?id=5815492
  382. <<<
  383.  
  384. <!DOCTYPE html>
  385. <html lang="en"><head>
  386. <title>That makes little sense to my wee - SFOR Strikeforce Technologies, Inc. #5815492 - Investors Hangout</title>
  387. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  388. <meta name="viewport" content="width=device-width, initial-scale=1">
  389. <meta name="google-site-verification" content="EoR36pJ1xwoQCCldJu8nEfc30AUiQ0NhZGrPsifbCkg" />
  390. <meta name="msvalidate.01" content="7CCAB6AB7869067105A9C6609D0A4B19" />
  391. <meta name="theme-color" content="#476f97" />
  392. <meta name="description" content="SFOR Strikeforce Technologies, Inc.: That makes little sense to my wee brain. - #5815492" />
  393. <meta property="og:title" content="That makes little sense to my wee - SFOR Strikeforce Technologies, Inc. #5815492 - Investors Hangout" />
  394. <meta property="og:description" content="SFOR Strikeforce Technologies, Inc.: That makes little sense to my wee brain. - #5815492" />
  395. <meta property="og:type" content="article" />
  396. <meta property="og:url" content="https://investorshangout.com/post/view?id=5815492" />
  397. <meta property="og:site_name" content="Investors Hangout" />
  398. <meta property="og:image" content="https://investorshangout.com/images/Stock-Message-Boards-Investors-Hangout-2017-.png">
  399. <meta property="og:image:type" content="image/png">
  400. <meta property="og:image:width" content="400">
  401. <meta property="og:image:height" content="400">
  402. <link rel="canonical" href="https://investorshangout.com/post/view?id=5815492" />
  403. <!--<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="https://investorshangout.com/board/boardfeeds?id=66604"/>-->
  404. <link rel="image_src" href="/images/Investors-Hangout-Stock-Message-Boards-thumbnail-2015.png" alt="Stock Message Boards - Investors Hangout"/>
  405. <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
  406. <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
  407. <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
  408. <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#1d3452">
  409. <meta name="msapplication-TileColor" content="#1d3452">
  410. <meta name="theme-color" content="#ffffff">
  411. <link href="/css/style.css" type="text/css" rel="stylesheet" />
  412. <link href="/css/font-awesome.css" type="text/css" rel="stylesheet" />
  413. <link href="/css/font-awesome.min.css" type="text/css" rel="stylesheet" />
  414. <link href="/css/bootstrap.min.css" type="text/css" rel="stylesheet" />
  415. <link href="/css/investors.css" type="text/css" rel="stylesheet" />
  416. <!-- Push Monkey code -->
  417. <link id="pm-manifest" rel="manifest" href="https://getpushmonkey.com/manifest-72P0BXLHZ3R1S965K.json"><script type="text/javascript" id="pm-sdk" src="https://getpushmonkey.com/sdk/config-72P0BXLHZ3R1S965K.js"></script>
  418. <!-- Native Units -->
  419. <script type="text/javascript" src="//s.ntv.io/serve/load.js" async></script>
  420. <script type="text/javascript" src="/js/jquery.1.4.2.min.js"></script>
  421. <script type="text/javascript" src="/js/jquery.min.js"></script>
  422. <script type="text/javascript" src="/js/customwork.js"></script>
  423. <script type="text/javascript" src="/js/investors.js"></script>
  424. <!--<script type="text/javascript" src="/js/jquery.1.9.1.min.js"></script> -->
  425. <script type="text/javascript">
  426. function show(a,f,e,h) {
  427. var a = document.getElementById(a);
  428. var b=a.selectionStart;
  429. var g=a.selectionEnd;
  430. if(typeof(b)==="undefined"&&document.selection)
  431. {
  432. a.focus();
  433. var c=document.selection.createRange();
  434. if(c.parentElement()===a)
  435. {
  436. if(c.text)
  437. {
  438. c.text=f+c.text.replace(/http:\/\//i,"")+e;
  439. c.select()
  440. }
  441. else
  442. {
  443. if(h==="+")
  444. {
  445. h="";
  446. }
  447. c.text=f+h+e;
  448. c.moveStart("character",-h.length-e.length);
  449. c.moveEnd("character",-h.length-e.length);
  450. c.select()
  451. }
  452. }
  453. }
  454. else
  455. {
  456. var j;
  457. if(b===g)
  458. {
  459. if(h==="+")
  460. {
  461. h="";
  462. }
  463. j=a.scrollTop;
  464. a.value=a.value.substring(0,b)+f+h+e+a.value.substring(g,a.value.length);
  465. a.focus();
  466. a.setSelectionRange(g+f.length+h.length,g+f.length+h.length);
  467. a.scrollTop=j;
  468. }
  469. else
  470. {
  471. var d=a.value.substring(b,g);
  472. d=d.replace(/http:\/\//i,"");
  473. var i=d.length-(g-b);
  474. j=a.scrollTop;
  475. a.value=a.value.substring(0,b)+f+d+e+a.value.substring(g,a.value.length);
  476. a.focus();
  477. a.setSelectionRange(g+f.length+e.length+i,g+f.length+e.length+i);
  478. a.scrollTop=j
  479. }
  480. }return false
  481. }
  482. </script>
  483. <script type="text/javascript">var site_url = ''; </script>
  484.  
  485. <!-- IMS DFP Tags -->
  486. <script type="text/javascript">
  487. (function() {
  488. window.advBidxc = window.advBidxc || {};
  489. window.advBidxc.startTime = new Date().getTime();
  490. function loadScript(tagSrc) {
  491. var scriptTag = document.createElement('script'),
  492. placeTag = document.getElementsByTagName("script")[0];
  493. scriptTag.type = 'text/javascript';
  494. scriptTag.async = true;
  495. scriptTag.src = tagSrc;
  496. placeTag.parentNode.insertBefore(scriptTag, placeTag);
  497. }
  498. var mnSrc = '//hbx.media.net/bidexchange.js?cid=8CU2C156D&version=5.1' + '&dn=' +
  499. window.location.hostname;
  500. loadScript(mnSrc);
  501. })();
  502. </script>
  503. <!-- IMS DFP Tags -->
  504.  
  505.  
  506.  
  507. </head>
  508.  
  509.  
  510. <body lang="en" dir="ltr">
  511.  
  512. <!--<div align="center"><a style="color:#036; font-weight:bold; font-size:18px; padding-top:10px; padding-bottom:10px;" href="https://twitter.com/InvestorHangout" target="_new">Follow Us On Twitter!! (Click Here)</a><br></div>-->
  513.  
  514. <!--<div align="center" style="background-color:#FFF; padding-top:10px; padding-bottom:10px;"><a style="color:#006; font-weight:bold; text-decoration:underline; font-size:16px; background-color:#FFF;" href="https://m.investorshangout.com/Coronavirus-COVID-19-93660/">Discuss COVID-19 and share your opinions, information and stories. (Click Here)</a></div>-->
  515.  
  516.  
  517.  
  518.  
  519. <div id="super_wrapper">
  520. <div id="wrapper">
  521. <div id="header">
  522. <div class="mm_bg">
  523. <div class="head_content">
  524. <div class="col-xs-9 col-md-9 col-sm-9 col-lg-9 logo-section">
  525. <div id="logo">
  526. <!--<a itemprop="url" href="https://m.investorshangout.com/">-->
  527. <a href="https://m.investorshangout.com/">
  528. <img src="/images/Investors-Hangout-Stock-Message-Boards-Logo-1-2017.png" alt="Investors Hangout Stock Message Boards Logo"/>
  529. </a>
  530.  
  531. </div>
  532. </div>
  533. <!-- toggle left -->
  534. <div class="col-xs-3 col-md-3 col-sm-3 col-lg-3 right-toggle">
  535. <div class="toggle-right toggle-r">
  536. <span> </span>
  537. <span></span>
  538. <span></span>
  539. </div>
  540. </div>
  541. <!-- toggle left end -->
  542. <!--<div class="col-xs-2 col-md-2 col-sm-2 col-lg-2 right-toggle">
  543. <div class="toggle-right toggle-r">
  544. <span> </span>
  545. <span></span>
  546. <span></span>
  547. </div>
  548. </div>-->
  549. <div class="menu-toggle-overlay"></div>
  550. <div id="menu">
  551. <ul id="yw0">
  552. <li><a href="/"><i class="fa fa-home"></i>Home</a></li>
  553. <li><a href="/mailbox"><i class="fa fa-envelope"></i>Mailbox</a></li>
  554. <li><a href="/board"><i class="fa fa-group"></i>Boards</a></li>
  555. <li><a href="/board/favorite"><i class="fa fa-star"></i>Favorites</a></li>
  556. <li><a href="/whatshot/activeboard"><i class="fa fa-question-circle"></i>Whats Hot!</a></li>
  557. <li><a href="/login"><i class="fa fa-unlock-alt"></i>Login - Join Now!</a></li>
  558. </ul> </div>
  559. <div class="clear_all" id="Guest"></div>
  560. </div>
  561. </div>
  562. </div>
  563.  
  564.  
  565.  
  566. <div id="main" class="in-no-padding container">
  567. <!-- commenting on 10-06 -->
  568. <!-- <div id="left_advertise"> -->
  569. <!-- <div class="board_add" align="center"> --> <!-- </div> -->
  570. <!-- </div> -->
  571. <!-- till here 173 -->
  572. <div style="" class="col-md-8">
  573. <div style="float:left">
  574. <div id="google_translate_element"></div>
  575. </div>
  576.  
  577. </div>
  578. <style>
  579. #search_box .portlet{
  580. float:left;
  581. margin-right:5px;
  582. width: 301px;
  583. }
  584. </style>
  585. <!-- Search box -->
  586.  
  587. <div id="search_box" >
  588. <div class="row">
  589. <div class="col-sm-12 col-xs-12">
  590. <div class="portlet" id="yw1">
  591. <div class="portlet-content">
  592. <script type="text/javascript">
  593. function SearchContent() {
  594. var url = '/search';
  595. var search_txt = document.getElementById('searchs').value;
  596. if(search_txt=='') {
  597. alert('Please enter search keyword');
  598. return;
  599. }
  600. var search_type = document.getElementById("stype").value;
  601. url = url+'?q='+search_txt+'&type='+search_type+'&yt0=Go!';
  602.  
  603. window.location=url;
  604.  
  605. }
  606.  
  607. function enterpress(e, input){
  608. var code = (e.keyCode ? e.keyCode : e.which);
  609. if(code == 13) { //Enter keycode
  610. SearchContent();
  611. }
  612. }
  613. </script>
  614. <input id="searchs" class="txt" type="text" name="q" value="Search" onblur="if(this.value == '') { this.value = 'Search'; }" onfocus="if(this.value == 'Search') { this.value = ''; }" onkeypress="enterpress(event, this);" style="width: 180px; height: 18px; float: left;" placeholder="">
  615. <select id="stype" name="type" style="height:22.5px; float: left; padding:2px 0;">
  616. <option value="1">Board</option>
  617. <option value="2">Post</option>
  618. <option value="3">Member</option>
  619. </select>
  620. <input type="submit" value="Go!" name="yt0" style="width:31px; padding:0 2px; height:22px; background-color:#476F97; color:#FFFFFF;" onclick="SearchContent();">
  621. </div>
  622. </div>
  623. </div> </div>
  624. </div>
  625.  
  626. <script type="application/ld+json">
  627. {
  628. "@context": "https://schema.org",
  629. "@type": "WebSite",
  630. "url": "https://investorshangout.com/",
  631. "potentialAction": {
  632. "@type": "SearchAction",
  633. "target": "https://m.investorshangout.com/search?q={search_term_string}&type=2&yt0=Go!",
  634. "query-input": "required name=search_term_string"
  635. }
  636. }
  637. </script>
  638. <script type="application/ld+json">
  639. {
  640. "@context": "http://schema.org",
  641. "@type": "Corporation",
  642. "name": "Investors Hangout",
  643. "url": "https://investorshangout.com/",
  644. "logo": "https://investorshangout.com/images/Investors-Hangout-Stock-Message-Boards-Logo-1-2017.png",
  645. "contactPoint": [{
  646. "@type": "ContactPoint",
  647. "telephone": "+17024183767",
  648. "contactType": "customer service",
  649. "areaServed": ["US","CA","GB"],
  650. "availableLanguage": "English"
  651. },{
  652. "@type": "ContactPoint",
  653. "telephone": "+17024183767",
  654. "contactType": "technical support",
  655. "areaServed": ["US","CA","GB"],
  656. "availableLanguage": "English"
  657. }],
  658. "sameAs": [
  659. "https://www.facebook.com/InvestorsHangout",
  660. "https://twitter.com/InvestorHangout",
  661. "https://plus.google.com/104027170639895450527",
  662. "https://www.youtube.com/user/InvestorsHangout"
  663. ]
  664. }
  665. </script>
  666.  
  667.  
  668.  
  669. <!-- begin unit -->
  670. <div align="center" style="padding-top:5px;">
  671.  
  672.  
  673.  
  674. <div style="min-height:0px;">
  675.  
  676.  
  677. <!-- IMS InvestorsHangout_ROS_RightRail_1 -->
  678. <div id="InvestorsHangout_ROS_RightRail_1"></div>
  679.  
  680. </div>
  681.  
  682. </div>
  683.  
  684. <!-- end unit -->
  685.  
  686.  
  687. <div style="clear:both"></div>
  688.  
  689. <div id="content">
  690. <!-- begin unit -->
  691.  
  692.  
  693.  
  694.  
  695.  
  696.  
  697. <div class="subscribe">
  698.  
  699.  
  700.  
  701.  
  702. <!-- Structured Data Posts -->
  703. <script type="application/ld+json">
  704. {
  705. "@context": "https://schema.org",
  706. "@type": "BlogPosting",
  707. "mainEntityOfPage": {
  708. "@type": "WebPage",
  709. "@id": "https://m.investorshangout.com/post/view?id=5815492"
  710. },
  711. "headline": "That makes little sense to my wee - SFOR Strikeforce Technologies, Inc. #5815492 - Investors Hangout",
  712. "image": [
  713. "https://investorshangout.com/images/Investors-Hangout-Stock-Message-Boards-thumbnail-2015.png"
  714. ],
  715. "datePublished": "2020-07-04T22:44:32-04:00",
  716. "dateModified": "2020-07-04T22:44:32-04:00",
  717. "author": {
  718. "@type": "Person",
  719. "name": "Caruso"
  720. },
  721. "publisher": {
  722. "@type": "Organization",
  723. "name": "Investors Hangout",
  724. "logo": {
  725. "@type": "ImageObject",
  726. "url": "https://investorshangout.com/images/Investors-Hangout-Stock-Message-Boards-Logo-1-2017.png"
  727. }
  728. },
  729. "description": "That makes little sense to my wee brain."
  730. }
  731. </script>
  732. <!-- Structured Data Posts -->
  733.  
  734.  
  735.  
  736.  
  737.  
  738. <script type="text/javascript">
  739. function SearchPost(id){
  740. var board=id;
  741. var txt = document.getElementById('myText').value;
  742. if(txt=='') {
  743. return;
  744. }
  745. window.location="/post/goview?id="+board+"&post_no="+txt
  746. }
  747. </script>
  748.  
  749. <div class="title_report" style="background-color: white; padding:10px; border-width: 4px;border-style: solid;border-color: #d7dce6;margin-top: 6px;margin-bottom: 25px;-moz-border-radius:10px; ">
  750.  
  751. <div class="title in-title post_title" style="color:#426E92 ; text-align:center; font-size: 17px; font-weight: bold;">
  752. <a href="/Strikeforce-Technologies-Inc-SFOR-66604/">Strikeforce Technologies, SFOR</a> </div>
  753. <script type="text/javascript">
  754. var addthis_share = addthis_share || {}
  755. addthis_share = {
  756. passthrough : {
  757. twitter: {
  758. text: "That makes little sense to my wee - SFOR Strikeforce Technologies, Inc. #5815492 - Investors Hangout @investorhangout"
  759. }
  760. }
  761. }
  762. </script>
  763.  
  764. <div align="center" style="padding-bottom:5px;">
  765.  
  766. <div style="font-weight:bold; font-size:12px; color:#060;">(Total Views: 285)</div></div>
  767.  
  768.  
  769. <div style="float:right; width:105px;">
  770. <!-- Go to www.addthis.com/dashboard to customize your tools -->
  771. <div class="addthis_inline_share_toolbox_1go5"></div>
  772. </div>
  773.  
  774. <div class="pub_date" style="font-size:12px;"> <b>Posted On: 07/04/2020 10:44:32 PM</b> </div>
  775. <div class="in-post-search">
  776. Post# <input size='5' type='text' id='myText' name='myText' value=69951> of 76891 <input type="button" class="row" name="GO" value="GO" onclick="SearchPost('66604')">
  777.  
  778. </div>
  779. <div class="prfoilepic">
  780. <div style="font-size:12px; float:left;"><div class="avatar in-post-image"><img src="/assets/46931549/no_avatar_available_thumb.jpg" alt="" /></div><!-- avatar --></div>
  781. <div style="font-size:12px; float:left; margin-left:10px;">
  782.  
  783. <div class="in-replies">
  784. </div>
  785.  
  786.  
  787.  
  788. <div class="author" style="font-size:12px; float:left; "> <b>Posted By:
  789. <a class="in-no-purple" href="/profile/view?id=47519">Caruso</a> </b> </div>
  790.  
  791.  
  792.  
  793.  
  794. <div style="clear:left"></div>
  795. <div style="font-size:12px; float:left; margin-top:-3px;"> <b>Re:<a class="in-no-purple" href="/profile/view?id=14580" rel="nofollow"> undervaluedstocks</a><a href="/post/view?id=5815491"> #69950</a></b> </div>
  796. </div>
  797. </div>
  798. <div style="clear:both"></div>
  799.  
  800. <!-- Mobile Ad Unit Here -->
  801.  
  802.  
  803. <div class="in-post-desc">
  804. That makes little sense to my wee brain.
  805. </div>
  806.  
  807. <br />
  808.  
  809. <div align="center">
  810.  
  811. <br />
  812.  
  813. <!--Smartad # 4800: Investors Hangout - 300x50 Text - Desktop-->
  814. <iframe WIDTH="300" HEIGHT="50" SCROLLING="NO" src="//www.dianomi.com/smartads.epl?id=4800" style="width: 100%; height: 50px; border: none; overflow: hidden;"></iframe>
  815. <br />
  816. <br />
  817. <div align="center"><div id="sponsored_ims"></div></div>
  818. <br />
  819.  
  820.  
  821.  
  822. <br />
  823. <br />
  824.  
  825. <!--Smartad # 3623: Investors Hangout 4 ad text - right rail - 300x250-->
  826. <iframe width="300" height="250" scrolling="NO" src="//www.dianomi.com/smartads.epl?id=3623" style="width: 300px; border: none; overflow: hidden;"></iframe></div>
  827. <br />
  828.  
  829. <div class="like in-inline" style="display:inline-block; padding-top:50px; padding-bottom:30px;">
  830. <img style="padding-left:10px;" src="/images/thumb-up.png"/><span style="color:#475472; padding-left:2px;">(0)</span></div>
  831. <div class="unlike in-inline" style="display:inline-block;">
  832. <img style="padding-left:10px; position:relative; top:8px;" src="/images/thumb-down.png"/><span style="color:#475472; padding-left:2px;">(0)</span></div>
  833.  
  834. <!-- Post Ad -->
  835. <div style="clear:both;"></div>
  836. <div align="right" style="padding-left:90px; height:auto; width:750px;">
  837. <!--<script src='http://ads.investingchannel.com/cp/InvestorsHangout/50/750.js' type='text/javascript' charset='utf-8'></script>-->
  838. </div>
  839. <div style="float:right; padding-top:10px; padding-left:10px; padding-bottom:10px; height:auto; min-height:250px; min-width:300px;">
  840. <!--<script src='http://ads.investingchannel.com/adtags/InvestorsHangout/equities/300x250.js' type='text/javascript' charset='utf-8'></script>-->
  841.  
  842.  
  843. <!--<a href="https://goo.gl/KAxCd4" target="_new" rel="nofollow"><img src="http://investorshangout.com/adfpage/Investors-Hangout-YouTube-Channel-8-22-2016.png" alt="Investors Hangout YouTube Channel" width="300" height="250" longdesc="http://investorshangout.com/adfpage/Investors-Hangout-YouTube-Channel-8-22-2016.png"></a>-->
  844.  
  845. </br></br>
  846.  
  847.  
  848.  
  849. </div>
  850. <div style="clear:both;"></div>
  851. <!-- Post Ad -->
  852.  
  853. <div class="in-hr">
  854.  
  855. <hr / color="#CCCCCC" style="padding:0px; height:0.5px; margin:0px; padding:0px; border-width:thin;">
  856. </div>
  857. <div style="margin-top:10px;">
  858.  
  859.  
  860.  
  861.  
  862.  
  863. <style type="text/css">
  864. #post_signature_images{
  865. text-align:center;
  866. margin:20px auto;
  867. }
  868. #post_signature_images a{
  869. margin:0px 5px;
  870. display:inline-block;
  871. text-decoration:none;
  872. color:black;
  873. font-size:8px;
  874. } </style>
  875.  
  876.  
  877.  
  878. <!--companyinfo-->
  879.  
  880. <!--endsignature-->
  881. </div>
  882. </div>
  883. </div>
  884. <div style="clear:both"></div> <!-- comments -->
  885. <script type="text/javascript">
  886.  
  887. function timedCount()
  888. {
  889. document.getElementById('editmsg').innerHTML =parseInt(c);
  890. //alert(c);
  891. c=c-1;
  892. if(c>0) { setTimeout(timedCount,60000); }
  893. }
  894. timedCount();
  895.  
  896. </script>
  897. <div class="row in-margin-lt-rt in-pinned-image" style="padding-bottom:45px;">
  898.  
  899.  
  900. <div class="next_post col-sm-6 col-xs-6 text-left in-pad-left">
  901. <a href="/post/view?id=5815495"><img height="50px" width="60px" src="/images/newer.png"</a>
  902. </div>
  903. <div class="previous_post col-sm-6 col-xs-6 text-right in-pad-right">
  904. <a href="/post/view?id=5815491"><img height="50px" width="60px" src="/images/older.png"</a>
  905. </div>
  906.  
  907. </div>
  908.  
  909.  
  910.  
  911. </div><!-- content -->
  912.  
  913.  
  914. <div style="clear:both"></div>
  915.  
  916.  
  917. </div>
  918.  
  919.  
  920.  
  921. <div align="center" class="mobile-footer">
  922.  
  923.  
  924. <!--Footer Ad -->
  925.  
  926.  
  927.  
  928. <style>
  929. .footerad2 {
  930. width: 100%;
  931. background-color: #FFF;
  932. color: white;
  933. text-align: center;
  934.  
  935. }
  936. </style>
  937.  
  938.  
  939. <div class="footerad2">
  940. <!-- dianomi -->
  941. <iframe WIDTH="300" HEIGHT="50" SCROLLING="NO" src="//www.dianomi.com/smartads.epl?id=4025" style="width: 100%; height: 50px; border: none; overflow: hidden; margin-bottom:-6px;"></iframe>
  942. </div>
  943.  
  944. <!--Footer Ad-->
  945.  
  946.  
  947.  
  948.  
  949.  
  950.  
  951.  
  952. <div align="left" style="mpadding-top:10px; max-width:992px;">
  953.  
  954. <div class="bottom_footer" style="">
  955. <!-- <p style="font-weight:bold; color:#FFF">Investors Hangout</p> -->
  956. <ul>
  957. <li class="m_home_foot">
  958. <p><a href="https://m.investorshangout.com/post/newpost/66604" title="Investors Hangout - Home"><img src="/images/new_post_menu.png"/><span>New Post</span></a></p>
  959. </li>
  960. <li class="m_mailbox_foot">
  961. <p><a href="https://m.investorshangout.com/post/newpost/66604?replyto=5815492" title="Investors Hangout - Public Reply"><img src="/images/public_reply_menu.png"/><span>Public Reply</span></a></p>
  962. </li>
  963. <li class="m_board_foot">
  964. <p><a href="/composemailprivate?to=47519&replyto=5815492"><img src="/images/private_reply_menu.png"/><span>Private Reply</span></a></p>
  965. </li>
  966. <li class="m_favorite_foot">
  967. <p><a href="https://m.investorshangout.com/66604" title="Investors Hangout - Boards"><img src="/images/board_menu.png"/><span>Board</span></a></p>
  968. </li>
  969. <li class="m_more_foot">
  970. <p>
  971. <a href="javascript:;" title="option-more"><img src="/images/menu_ver.png"/><span>More</span>
  972.  
  973. </a>
  974. </p>
  975. </li>
  976. <div style="clear:both;"></div>
  977. </ul>
  978. </div>
  979.  
  980. <div class="in-more-wrapper">
  981. <div id="in-more-options" style="display: none">
  982.  
  983. <ul>
  984.  
  985. <li>
  986. <a href="https://m.investorshangout.com/post/keep?id=5815492" title="Investors Hangout - Home"><img src="/images/keep_post_menu.png"/><span>Keep Post</span></a>
  987. </li>
  988. <li >
  989. <a href="https://m.investorshangout.com/post/report?id=5815492" title="Investors Hangout - Mailbox"><img src="/images/report_post_menu.png"/><span>Report Post</span></a>
  990. </li>
  991. <!-- <li > -->
  992. <!-- <a href="/board" title="Investors Hangout - Boards"><img src="/images/share_board_menu.png"/><span>Share Post</span></a> -->
  993. <!-- </li> -->
  994.  
  995. <li>
  996. <a href="https://m.investorshangout.com/" title="Investors Hangout - Home"><img src="/images/home_menu.png"/><span>Home</span></a>
  997. </li>
  998. <li >
  999. <a href="https://m.investorshangout.com/mailbox" title="Investors Hangout - Mailbox"><img src="/images/mailbox_menu.png"/><span>Mailbox</span></a>
  1000. </li>
  1001. <li >
  1002. <a href="https://m.investorshangout.com/board" title="Investors Hangout - Boards"><img src="/images/board_menu.png"/><span>Boards</span></a>
  1003. </li>
  1004. <li >
  1005. <a href="https://m.investorshangout.com/board/favorite" title="Investors Hangout - Favorites"><img src="/images/favorites_menu.png"/><span>Favorites</span></a>
  1006. </li>
  1007. <li >
  1008. <a href="https://m.investorshangout.com/whatshot/activeboard" title="Investors Hangout - Most Active Stock Message Boards"><img src="/images/whats_hot_menu.png"/><span>Whats Hot</span></a>
  1009. </li>
  1010. <li>
  1011. <a href="https://m.investorshangout.com/setting" title="Investors Hangout - Home"><img src="/images/settings_menu.png"/><span>Settings</span></a>
  1012. </li>
  1013.  
  1014. <li>
  1015. <a href="https://m.investorshangout.com/login" title="Investors Hangout - Home"><img src="/images/login-logout_menu.png"/><span>Login</span></a>
  1016. </li>
  1017.  
  1018. <li id="live_site">
  1019. <a href="https://investorshangout.com/post/view?id=5815492"><img src="/images/live_site_menu.png"/><span>Live Site</span></a>
  1020. </li>
  1021.  
  1022. </ul>
  1023.  
  1024. <div class="in-triangle">
  1025.  
  1026. </div>
  1027.  
  1028. </div>
  1029. </div>
  1030.  
  1031. <div class="clear_all"></div>
  1032.  
  1033. </div>
  1034. </div>
  1035.  
  1036. </div></div></div></div>
  1037.  
  1038. <!-- pop register div -->
  1039.  
  1040. <!-- pop register div end -->
  1041.  
  1042. <script>
  1043.  
  1044. $(function() {
  1045. $('#more').click(function(){
  1046. var $yourUl = $("#more");
  1047. $yourUl.css("display", $yourUl.css("display") === 'none' ? 'block' : 'none');
  1048. $("#more").toggle();
  1049. });
  1050. });
  1051. $(function() {
  1052.  
  1053. // $('.popup_form_box .form-control').focus(function() {
  1054. // var ele = $(this);
  1055. // console.log('top',ele.offset().top);
  1056. // $('#TB_window').animate({
  1057. // scrollTop: ele.offset().top - 80
  1058. // }, 800);
  1059. // });
  1060.  
  1061. $('.popup_form_box #YumPopupregisterForm_username').focus(function() {
  1062. var ele = $(this);
  1063. $('#TB_window').animate({
  1064. scrollTop: ele.offset().top
  1065. }, 800);
  1066. });
  1067. $('.popup_form_box #YumProfile_email').focus(function() {
  1068. var ele = $(this);
  1069. $('#TB_window').animate({
  1070. scrollTop: ele.offset().top
  1071. }, 800);
  1072. });
  1073. $('.popup_form_box #YumPopupregisterForm_password').focus(function() {
  1074. var ele = $(this);
  1075. $('#TB_window').animate({
  1076. scrollTop: ele.offset().top + 50
  1077. }, 800);
  1078. });
  1079. $('.popup_form_box #YumUserLogin_username').focus(function() {
  1080. var ele = $(this);
  1081. $('#TB_window').animate({
  1082. scrollTop: ele.offset().top + 120
  1083. }, 800);
  1084. });
  1085. $('.popup_form_box #YumUserLogin_password').focus(function() {
  1086. var ele = $(this);
  1087. $('#TB_window').animate({
  1088. scrollTop: ele.offset().top + 140
  1089. }, 800);
  1090. });
  1091.  
  1092. });
  1093. </script>
  1094.  
  1095.  
  1096. <style type="text/css">
  1097. .popupLogin {
  1098. padding: 0px !important;
  1099. }
  1100. body.popup-scroll {
  1101. overflow: hidden;
  1102. }
  1103. .popup-scroll #TB_window {
  1104. overflow-y: scroll;
  1105. }
  1106. #TB_ajaxContent {
  1107. margin-bottom: 25px;
  1108. }
  1109. </style>
  1110.  
  1111. <!-- GA -->
  1112. <script>
  1113. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  1114. (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  1115. m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  1116. })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  1117.  
  1118. ga('create', 'UA-51599320-1', 'auto');
  1119. ga('send', 'pageview');
  1120.  
  1121. </script>
  1122.  
  1123. <script type="text/javascript">
  1124. var _gaq = _gaq || [];
  1125. _gaq.push(['_setAccount', 'UA-37395047-1']);
  1126. _gaq.push(['_trackPageview']);
  1127. (function() {
  1128. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  1129. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  1130. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  1131. })();
  1132. </script>
  1133. <!-- GA -->
  1134.  
  1135. <!-- Begin comScore Tag -->
  1136. <script>
  1137. var _comscore = _comscore || [];
  1138. _comscore.push({ c1: "2", c2: "16807273" });
  1139. (function() {
  1140. var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;
  1141. s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
  1142. el.parentNode.insertBefore(s, el);
  1143. })();
  1144. </script>
  1145. <noscript>
  1146. <img src="http://b.scorecardresearch.com/p?c1=2&c2=16807273&cv=2.0&cj=1" />
  1147. </noscript>
  1148. <!-- End comScore Tag -->
  1149.  
  1150.  
  1151.  
  1152. <!-- Start Alexa Certify Javascript -->
  1153. <script type="text/javascript">
  1154. _atrk_opts = { atrk_acct:"bxypf1aUOO00Wz", domain:"investorshangout.com",dynamic: true};
  1155. (function() { var as = document.createElement('script'); as.type = 'text/javascript'; as.async = true; as.src = "https://d31qbv1cthcecs.cloudfront.net/atrk.js"; var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(as, s); })();
  1156. </script>
  1157. <noscript><img src="https://d5nxst8fruw4z.cloudfront.net/atrk.gif?account=bxypf1aUOO00Wz" style="display:none" height="1" width="1" alt="" /></noscript>
  1158. <!-- End Alexa Certify Javascript -->
  1159.  
  1160.  
  1161.  
  1162. <!-- tynt -->
  1163. <script>
  1164. var Tynt=Tynt||[];Tynt.push('du8SD6J_8r4RR6acwqm_6r');
  1165. (function(){var h,s=document.createElement('script');
  1166. s.src=(window.location.protocol==='https:'?
  1167. 'https':'http')+'://cdn.tynt.com/ti.js';
  1168. h=document.getElementsByTagName('script')[0];
  1169. h.parentNode.insertBefore(s,h);})();
  1170. </script>
  1171. <!-- tynt -->
  1172.  
  1173. <!-- Addthis -->
  1174. <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-4fb83d7e14ac1736"></script>
  1175. <!-- Addthis -->
  1176.  
  1177. <!-- IMS Popup -->
  1178. <div id="InvestorsHangout_ROS_Popup"></div>
  1179. <div id="InvestorsHangout_ROS_Interstitial"></div>
  1180. <!-- IMS Popup -->
  1181.  
  1182. </body>
  1183. </html>
  1184.  
  1185. <script type="text/javascript">
  1186. var delay=1000 * 2;
  1187. setTimeout(function(){
  1188. $(document).ready(function(){
  1189. $(this).scrollTop(0);
  1190. });
  1191. },delay);
  1192. </script>
  1193.  
  1194. >>>
Add Comment
Please, Sign In to add comment