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 最近回复了
    17 天前
    回复了 PatrickLe 创建的主题 NAS 付费求搬运 Google Drive 电影库
    现在比较靠谱的是 mega
    33 天前
    回复了 lewiet 创建的主题 Android 有没有 Android 免费没广告的多开 APP 推荐?
    island

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

    但是同时能接受消息的只能本体+work profile
    238 天前
    回复了 hellodage663 创建的主题 分享创造 sora 文本转视频软件,介绍与教程
    什么李鬼网站
    油管 premium ,或者免费的 revanced ,mxplayer 都有
    314 天前
    回复了 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
    }
    314 天前
    回复了 mfsw 创建的主题 Windows windows 下,如何无损旋转 mp4 视频?
    用 ahk(v2)可以参考如下

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

    这样 stream copy/remux 出来的视频,不重新编码
    314 天前
    回复了 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 无关
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   3757 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 31ms · UTC 10:18 · PVG 18:18 · LAX 02:18 · JFK 05:18
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.