qwertyegg

qwertyegg

V2EX 第 250462 号会员,加入于 2017-08-24 00:01:24 +08:00
国内可以合法参与 polymarket 吗?
问与答  •  qwertyegg  •  1 天前  •  最后回复来自 daozaihuai
1
大家帮我看看这个系统进程是干嘛的
Windows  •  qwertyegg  •  2022-11-12 08:47:47 AM  •  最后回复来自 ragnaroks
6
双人对赌赢的概率?
  •  1   
    问与答  •  qwertyegg  •  2021-09-08 14:25:57 PM  •  最后回复来自 qwertyegg
    1
    gradle 怎么变得这么慢了?
    Android  •  qwertyegg  •  2021-08-09 13:41:23 PM
    Python 容器的 Dockerfile 为什么需要这一句 "COPY requirements.txt ."
    Docker  •  qwertyegg  •  2021-04-06 00:08:14 AM  •  最后回复来自 qwertyegg
    5
    请教一个 android 生命周期的问题
    程序员  •  qwertyegg  •  2020-11-04 10:30:39 AM  •  最后回复来自 demo06
    10
    有点不理解这是什么情况
    问与答  •  qwertyegg  •  2020-05-12 03:11:52 AM  •  最后回复来自 qwertyegg
    2
    火绒全盘扫描黑屏重启?
    问与答  •  qwertyegg  •  2020-05-06 21:42:48 PM  •  最后回复来自 qwertyegg
    1
    qwertyegg 最近回复了
    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 出来的视频,不重新编码
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1711 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 20ms · UTC 16:31 · PVG 00:31 · LAX 08:31 · JFK 11:31
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.