hongyi-zhao

Results 160 comments of hongyi-zhao

> Couldn't you achieve the same effect by using a naming convention for the custom scripts, with a number prefix, e.g. like this: > > * 00_begin_custom.bash > > *...

Do you mean add these codes in [app.js](https://github.com/illuspas/Node-Media-Server/blob/master/app.js) before the [auth](https://github.com/illuspas/Node-Media-Server/blob/cd36fec55ceead7b9f9ea3a9ff8fb72dbd497df3/app.js#L30) section?

Based on your notes, I tried with the following settings: ``` trans: { ffmpeg: '/usr/local/bin/ffmpeg', tasks: [ { app: 'live', // or other hls: true, hlsFlags: '[hls_time=2:hls_list_size=3:hls_flags=delete_segments]', dash: true, dashFlags:...

I already have the above configuration in app.js: ```javascript const config = { rtmp: { port: 1935, chunk_size: 60000, gop_cache: true, ping: 30, ping_timeout: 60, /* ssl: { port: 443,...

Are there some methods for further digging into the underneath causes in the packet level?

I meet the following: ```mathematica In[6]:= MaTeX["\\feyn{!{fA}p f!{glBV}k !{glSA}l a\\vertexlabel_{p+k-l} ff} ", "Preamble" -> {"\\usepackage{feyn}"}, Magnification -> 3] During evaluation of In[6]:= LinkObject::linkd: Unable to communicate with closed link LinkObject['/opt/Wolfram/Mathematica/13.3/SystemFiles/Converters/Binaries/Linux-x86-64/PDF.exe',7980,17]....

Currently, I also have the following configuration for minibuffer completion: ```emacs (use-package orderless :config (setq ;; https://github.com/oantolin/orderless#ivy ivy-re-builders-alist '((t . orderless-ivy-re-builder)) ;; Configure a custom style dispatcher (see the Consult...

I try with `C-x C-e` or `M-x company-ispell` to debug all your suggestions as follows: > ```emacs-lisp > (let ((completion-styles nil)) > (message "%s" (all-completions "iso" '("isophene" "isophenomenal"))) ; prints...

> Can you try it without `company-fuzzy` being enabled? :D Want to compare the differences. ![image](https://user-images.githubusercontent.com/11155854/229952146-a7a2171c-46bf-4bb2-9108-6d1d4110a38e.png) > I want to see what candidate is in used, can you show me...

On the other hand, if I only input `isop`, the following candidates will be triggered: ![image](https://user-images.githubusercontent.com/11155854/230041182-5b655e06-3955-423c-bf47-92b76e72032e.png) Then, if I further append a `h`, the results will be narrowed dramatically: ![image](https://user-images.githubusercontent.com/11155854/230041564-36fff43b-5616-4b0c-848f-171bdba1258b.png)