V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  qwertyegg  ›  全部回复第 1 页 / 共 22 页
回复总数  437
1  2  3  4  5  6  7  8  9  10 ... 22  
10 天前
回复了 wildlynx 创建的主题 Google Google 不再是最好的搜索引擎
大部分时候用 goog ,偶尔顺手用 brave ,表示完全不同意 lz 的说法。
20 天前
回复了 lewiet 创建的主题 Android 有没有 Android 免费没广告的多开 APP 推荐?
@penpen0404 island 创建的是 work profile ,小米没用过不清楚。三星不能创建另外三个 profile ,有个 secure folder 可以临时创建一个第三 profile 。pixel ,一加都可以 5 开
69 天前
回复了 PatrickLe 创建的主题 NAS 付费求搬运 Google Drive 电影库
现在比较靠谱的是 mega
85 天前
回复了 lewiet 创建的主题 Android 有没有 Android 免费没广告的多开 APP 推荐?
island

自带的 multi profile ,可以五开:本体+work profile(island 同款), 2 个完整 profile ,一个 guest profile

但是同时能接受消息的只能本体+work profile
290 天前
回复了 hellodage663 创建的主题 分享创造 sora 文本转视频软件,介绍与教程
什么李鬼网站
油管 premium ,或者免费的 revanced ,mxplayer 都有
2023-12-30 02:44:56 +08:00
回复了 mfsw 创建的主题 Windows windows 下,如何无损旋转 mp4 视频?
下面这段 ahk 代码,"把 ffmpeg 加到 path 里面"和"mp4 文件不要带空格“两个要求满足的时候应该就可以批量转了

#Requires AutoHotkey v2.0
#SingleInstance Force

; Get list of files matching a prefix under a folder.
; Set prefix an empty string "" if we want all, otherwise add prefix to limit selection
prefix := ""


;=============== init script ===============
targetPattern := concat3("D:\captures\", prefix, "*.mp4")
video_files := []
loop files targetPattern
video_files.Push(A_LoopFileName)
lastIndex := video_files.Length

;;;;;;;;;;; F2 to cycle through rotation jobs
#MaxThreadsPerHotkey 1
F2::{
static counter := 1
while (counter <= lastIndex){
ffmpeg_rotate(video_files[counter])
counter := counter + 1
}
; MsgBox "That was the last, exit."
ExitApp
}


ffmpeg_rotate(video_file){
SetWorkingDir "D:\captures"
Run concat4("ffmpeg -display_rotation:v:0 90 -i ", video_file, " -c copy rotated_", video_file)
}

concat3(x, y, z) {
Return x y z
}

concat4(w, x, y, z) {
Return w x y z
}
2023-12-30 00:54:46 +08:00
回复了 mfsw 创建的主题 Windows windows 下,如何无损旋转 mp4 视频?
用 ahk(v2)可以参考如下

targetPattern := concat3("c:\captures\", prefix, "*.mp4")
udp_profiles := []
loop files targetPattern
udp_profiles.Push(A_LoopFileName)
}
2023-12-30 00:35:58 +08:00
回复了 mfsw 创建的主题 Windows windows 下,如何无损旋转 mp4 视频?
ffmpeg -display_rotation:v:0 90 -i input.mp4 -c copy output.mp4

这样 stream copy/remux 出来的视频,不重新编码
2023-12-30 00:16:42 +08:00
回复了 mfsw 创建的主题 Windows windows 下,如何无损旋转 mp4 视频?
ffmpeg -i input.mp4 -vf "transpose=1" output.mp4

transpose=1 或者=2
2023-08-30 22:00:14 +08:00
回复了 justincnn 创建的主题 Android android 上除了 kiwi 外,有其他浏览器推荐么?
@yylzcom 跟 beta 无关
2023-07-31 10:25:20 +08:00
回复了 oabbo 创建的主题 Google 放出两个自用 YouTube Premium 位置,带 Google One。
@jaoyina ublock, 手机上 revanced
2023-07-09 12:05:37 +08:00
回复了 linuxgo 创建的主题 Linux Linux kde 有什么好用的下载软件
上面说的 FDM 和 jdownloader 全平台
2022-11-18 04:31:49 +08:00
回复了 movq 创建的主题 程序员 为什么 Java 父类构造函数调用被重写的方法会调用到子类的
爪哇 101:多态性
2022-11-12 02:27:16 +08:00
回复了 qwertyegg 创建的主题 Windows 大家帮我看看这个系统进程是干嘛的
@kokutou 有一定道理,怎么找呐,process manager 看到 System 进程下面有 3 个子进程
Interrupts
smss.exe
Memory Compression
2022-11-12 02:23:59 +08:00
回复了 qwertyegg 创建的主题 Windows 大家帮我看看这个系统进程是干嘛的
感谢 @ragnaroks 我禁用了 RunFullMemoryDiagnostic 计划任务,有所好转,还是会有 10%左右的 cpu 占用

有两个信息我之前忘了说了,补充一下
1. windows 11 升级 22h2 后才出现的,之前没有
2. process explorer 显示的 cpu 实用情况跟 task manager 现实不一致,见图 https://imgur.com/a/DCAYftp

有点懵逼
2022-11-10 04:18:16 +08:00
回复了 Joshuahui 创建的主题 Android 如何干掉 Google 助手的蓝牙唤醒
遇到过,不完全懂

可是第一次配置蓝牙的时候不是会问你要不要设置 GA 吗?
2022-11-06 10:47:05 +08:00
回复了 LeeReamond 创建的主题 程序员 各位男性程序员有好用的剃须刀推荐吗?
飞利浦低端的电动还行,博朗很烂,非常不推荐
2022-11-06 00:10:31 +08:00
回复了 yhm2046 创建的主题 Android google 的联系人问题
@yhm2046 同一个人被加两次,王二狗和二狗王
1  2  3  4  5  6  7  8  9  10 ... 22  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1117 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 30ms · UTC 18:27 · PVG 02:27 · LAX 10:27 · JFK 13:27
Developed with CodeLauncher
♥ Do have faith in what you're doing.