2022-10-09
Video Generation/Modification (Vfx) From Text

Sora is the new SOTA video generation model from OpenAI.

Following up projects:


达摩院放出了文本生成视频模型,支持英文输入

huggingface space

model weights:

weight path weight size model name author
text-to-video-ms-1.7b unknown unknown damo-vilab
modelscope-damo-text-to-video-synthesis unknown unknown damo-vilab
text-to-video-ms-1.7b-legacy unknown unknown damo-vilab

can also use from modelscope:

1
2
3
4
from modelscope.pipelines import pipeline
from modelscope.utils.constant import Tasks
p = pipeline('text-to-video-synthesis', 'damo/text-to-video-synthesis')


PAIR now releases Text2Video-Zero which leverages existing stable diffusion models to generate video. also released a bunch of controlnet dreambooth weights.


lucidrains is a workaholic on transformer implementations. we should scrape all the repos and index them. there are faster language models to train.


Phenaki Video, which uses Mask GIT to produce text guided videos of up to 2 minutes in length, in Pytorch

dreamix (not open-source)

instruct-pix2pix requires 16GB+ VRAM

text2live modify video by text prompt (such as add fire in mouth)

recurrent-interface-network-pytorch using diffusion to generate images and video

high quality! imagegen-video code with demo and paper

抄视频 视频的时间要讲究 看看是抄一年前的好还是抄刚刚发布的好

在发布的一个视频当中 最多抄某个作者的两三个符合要求的片段

use editly smooth/slick transitions and subtitles to beat the copy-detection algorithm, also consider color change in ffmpeg

动态 专栏也可以抄

make-a-video

谷歌AI歌手震撼来袭!AudioLM简单听几秒,便能谱曲写歌 https://www.kuxai.com/article/398

Read More

2022-08-08
Macos Mount Ntfs Volumes

macos mount ntfs read-only by default.

code from mounty.app

mounty is somehow not working so manual remount is needed.

one needs to click the remount button to mount it again under /Users/jamesbrown/.mounty/Toshiba3000

1
2
3
sudo umount /Volumes/Toshiba3000
sudo mkdir /Volumes/Toshiba3000; sudo mount -t ntfs -o rw,auto,nobrowse /dev/<diskIdentifier> /Volumes/Toshiba3000

Read More

2022-08-07
Macos Locate Fix And Alternative

the fix

to enable the service:

1
2
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.locate.plist

to update locate db:

1
2
sudo /usr/libexec/locate.updatedb

or, more conveniently:

1
2
3
sudo ln -s /usr/libexec/locate.updatedb /usr/local/sbin/updatedb
sudo updatedb

alternative

use mdfind

Read More

2022-07-27
Macos Window Click-Through

use cmd-click to operate the inactive window without activating it.

linux/windows not having this feature. might need custom hot key for this.

Read More

2022-07-24
Vim Custom Color Scheme

[documentation[(http://vimdoc.sourceforge.net/htmldoc/syntax.html#:highlight)

vim terminal color codes

keyword for vertical spliters:

VertSplit

keyword for bottom line:

Read More

2022-07-07
Nautilus Hangs When Searching

delete ~/.cache/tracker

Read More

2022-06-27
SpeedUp Tujia Scraping

Find which request sets the cookie, then do all other requests using DIRECT, route only that request to GLOBAL.

Read More

2022-06-19
Playwright Intercept Request Header Cookie

cookie not found on request event handler.

cookie can be obtained via context.cookies()

router

Read More

2022-05-14
动漫剪辑过审

剪的时候不要超过4分钟 可以用spleeter切出语音 加入自己的背景音乐

这个属于anti nsfw anti censorship 反内容审查 反视频审查 对抗机制 可以在github上面搜索

二创某种意义也是反审查

审查的 nsfw 微信小程序 可以解包 然后调用别人的接口 可能不稳定

https://github.com/superdashu/frida_with_wechat_applet

https://github.com/superdashu/pc_wxapkg_decrypt_python

Read More

2022-03-30
Vscode Extension Create Publisher

medialang

vsce token:

xt2s4ohfn57ri5vfcxvwmb7yzddfnqmd2a37tfaidwhy3uaqwzlq

Read More