qwertyegg

qwertyegg

V2EX 第 250462 号会员,加入于 2017-08-24 00:01:24 +08:00
大家帮我看看这个系统进程是干嘛的
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  •  2019-10-17 03:27:27 AM
    qwertyegg 最近回复了
    4 天前
    回复了 hellodage663 创建的主题 分享创造 sora 文本转视频软件,介绍与教程
    什么李鬼网站
    油管 premium ,或者免费的 revanced ,mxplayer 都有
    80 天前
    回复了 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
    }
    80 天前
    回复了 mfsw 创建的主题 Windows windows 下,如何无损旋转 mp4 视频?
    用 ahk(v2)可以参考如下

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

    这样 stream copy/remux 出来的视频,不重新编码
    80 天前
    回复了 mfsw 创建的主题 Windows windows 下,如何无损旋转 mp4 视频?
    ffmpeg -i input.mp4 -vf "transpose=1" output.mp4

    transpose=1 或者=2
    @yylzcom 跟 beta 无关
    232 天前
    回复了 oabbo 创建的主题 Google 放出两个自用 YouTube Premium 位置,带 Google One。
    @jaoyina ublock, 手机上 revanced
    254 天前
    回复了 linuxgo 创建的主题 Linux Linux kde 有什么好用的下载软件
    上面说的 FDM 和 jdownloader 全平台
    2022-11-18 04:31:49 +08:00
    回复了 movq 创建的主题 程序员 为什么 Java 父类构造函数调用被重写的方法会调用到子类的
    爪哇 101:多态性
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   3811 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 72ms · UTC 04:21 · PVG 12:21 · LAX 21:21 · JFK 00:21
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.