ChanServ changed the topic of #ffmpeg to: Welcome to the FFmpeg USER support channel | Development channel: #ffmpeg-devel | Bug reports: https://ffmpeg.org/bugreports.html | Wiki: https://trac.ffmpeg.org/ | This channel is publically logged | FFmpeg 7.1.1 is released
dxh has quit [Ping timeout: 260 seconds]
danielxhogan has quit [Ping timeout: 260 seconds]
danielxhogan has joined #ffmpeg
iive has quit [Quit: They came for me...]
Shine_ has joined #ffmpeg
Corroddity has quit [Quit: WeeChat 4.3.4]
Corroddity has joined #ffmpeg
pastelowl has quit [Quit: WeeChat 4.6.3]
HarshK23 has quit [Quit: Connection closed for inactivity]
maxim_d33 has quit [Ping timeout: 248 seconds]
Shine_ has quit [Read error: Connection reset by peer]
pastelowl has joined #ffmpeg
maxim_d33 has joined #ffmpeg
jarthur has joined #ffmpeg
jiffy__ has quit [Remote host closed the connection]
beneth has quit [Ping timeout: 252 seconds]
FlorianBad has joined #ffmpeg
phantomics has joined #ffmpeg
foul_owl has quit [Quit: WeeChat 3.8]
foul_owl has joined #ffmpeg
Vonter has joined #ffmpeg
Dagger has quit [Ping timeout: 245 seconds]
foul_owl has quit [Client Quit]
danielxhogan has quit [Read error: Connection reset by peer]
danielxhogan has joined #ffmpeg
Dagger has joined #ffmpeg
dxh has joined #ffmpeg
Richardcavell_ has joined #ffmpeg
Shine_ has joined #ffmpeg
System_Error has quit [Remote host closed the connection]
System_Error has joined #ffmpeg
jmcantrell has quit [Ping timeout: 276 seconds]
cantelope has quit [Quit: Connection closed for inactivity]
faxm0dem has joined #ffmpeg
faxmodem has quit [Ping timeout: 260 seconds]
dxh has quit [Ping timeout: 276 seconds]
danielxhogan has quit [Ping timeout: 276 seconds]
danielxhogan has joined #ffmpeg
emmanuelux has quit [Quit: Leaving]
HarshK23 has joined #ffmpeg
Shine_ has quit [Read error: Connection reset by peer]
nitrix has quit [Remote host closed the connection]
nitrix has joined #ffmpeg
dreamon has joined #ffmpeg
jarthur has quit [Quit: jarthur]
K900 has quit [Remote host closed the connection]
K900 has joined #ffmpeg
lavaball has joined #ffmpeg
danielxhogan has quit [Ping timeout: 260 seconds]
danielxhogan has joined #ffmpeg
luva9 has quit [Ping timeout: 260 seconds]
pastelowl has quit [Ping timeout: 248 seconds]
Marth64[m] has quit [Remote host closed the connection]
MisterMinister has quit [Remote host closed the connection]
Marth64[m] has joined #ffmpeg
pastelowl has joined #ffmpeg
MisterMinister has joined #ffmpeg
dreamon has quit [Ping timeout: 248 seconds]
Blacker47 has joined #ffmpeg
acryo has quit [Ping timeout: 252 seconds]
acryo has joined #ffmpeg
acryo has joined #ffmpeg
acryo has quit [Changing host]
aqnm has quit [Quit: aqnm]
SuicideShow has quit [Ping timeout: 260 seconds]
SuicideShow has joined #ffmpeg
lavaball has quit [Remote host closed the connection]
Sketch has quit [Remote host closed the connection]
danielxhogan has quit [Read error: Connection reset by peer]
Sketch has joined #ffmpeg
danielxhogan has joined #ffmpeg
derpydoo has joined #ffmpeg
dxh has joined #ffmpeg
Shine_ has joined #ffmpeg
derpydoo has quit [Remote host closed the connection]
dyscope has joined #ffmpeg
j45 has quit [Ping timeout: 248 seconds]
j45_ has joined #ffmpeg
j45_ is now known as j45
j45 has quit [Changing host]
j45 has joined #ffmpeg
dxh has quit [Ping timeout: 260 seconds]
JanC has quit [Ping timeout: 260 seconds]
j45_ has joined #ffmpeg
j45 has quit [Ping timeout: 276 seconds]
j45_ is now known as j45
j45 has quit [Changing host]
j45 has joined #ffmpeg
j45_ has joined #ffmpeg
j45 has quit [Ping timeout: 248 seconds]
j45_ is now known as j45
j45 has quit [Changing host]
j45 has joined #ffmpeg
derpydoo has joined #ffmpeg
JanC has joined #ffmpeg
rsx has joined #ffmpeg
derpydoo has quit [Quit: derpydoo]
dyscope has quit [Remote host closed the connection]
dyscope has joined #ffmpeg
dyscope has quit [Quit: Leaving]
Blacker47 has quit [Ping timeout: 248 seconds]
frojnd has quit [Quit: WeeChat 3.3]
dreamon has joined #ffmpeg
Blacker47 has joined #ffmpeg
ffsteve has joined #ffmpeg
<ffsteve> hey guys. ffmpeg compile from source on windows problem. getting C compiler test failed. have compiled previously but new system. removed msys2 link. unsure why its failing. correct cl & link in my path
<ffsteve> unmodified  7.1.1 source
<ffsteve> isn't it about time this project moved to meson/ninja :)
lavaball has joined #ffmpeg
Shine_ has quit [Read error: Connection reset by peer]
microlappy has joined #ffmpeg
<BtbN> The moment anyone manages to come up with a solution that's regression free
<BtbN> which is virtually impossible
<BtbN> the current solution works fine and is not dependent on the mercy of some other project
<BtbN> Building with msvc works fine for me, though I don't know why you'd ever bother with that. It's a lot of pain for no gain
<ffsteve> its worked for me previously too. I need better diagnostics out of the compile script to see what's wrong.
<ffsteve> building with msvc - you mean vs project files instead of configure/make ?
<ffsteve> I've had it working fine before too, so there's something minor messing up
<ffsteve> configure script voodoo here :
<ffsteve> test_exec <<EOF
<ffsteve> int main(void){ return 0; }
<ffsteve> EOF
<ffsteve> if test "$?" != 0; then
<ffsteve>     echo "$cc is unable to create an executable file."
<ffsteve>     if test -z "$cross_prefix" && ! enabled cross_compile ; then
<ffsteve>         echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
<ffsteve>         echo "Only do this if you know what cross compiling means."
<ffsteve>     fi
<ffsteve>     die "C compiler test failed."
<ffsteve> fi
<ffsteve> I don't even understand what that means
<JEEB> do note that FATE is being constantly run with MSVC
<ffsteve> yeah, sure it changes all the time. lets put that to the side. what is that test even doing. can I rework it verbose to see what's going on ?
<ffsteve> it's compiling "int main(void){ return 0; }" somehow using bash magic
<JEEB> yes, test_exec is the actual thing being run
<JEEB> it's a function most likely
<JEEB> and ffbuild/config.log will contain the actual error(s)
<ffsteve> BEGIN ./ffconf.a88EaoWF/test.c
<ffsteve>     1    int main(void){ return 0; }
<ffsteve> END ./ffconf.a88EaoWF/test.c
<ffsteve> cl.exe -I/Z/dev_public/openssl/include -nologo -DFFPLAY_HW=1 -DINF_PATCH=1 -DNDEBUG=1 -c -Fo./ffconf.a88EaoWF/test.o ./ffconf.a88EaoWF/test.c
<ffsteve> test.c
<ffsteve> ./compat/windows/mslink -LIBPATH:/Z/dev_public/openssl -LIBPATH:Z:\dev_public\openssl -nologo -out:./ffconf.a88EaoWF/test.exe ./ffconf.a88EaoWF/test.o
<ffsteve> LINK : fatal error LNK1104: cannot open file 'kernel32.lib'
<ffsteve> C compiler test failed.
<ffsteve> so I need vstudio libs in my library path as they're not apparently for some reason.
<ffsteve> its the LIB path in my vstudio command prompt is wrong. user error.
<ffsteve> messed with some stuff for another project a while ago. likely a one-off my system.
five618480339176 has quit [Ping timeout: 260 seconds]
<ffsteve> looks like if you install visual studio with some sdk version, that ends up in the LIB then if you roll back to a previous it doesnt change it for the command line.or something. fixing it manually.
microlappy has quit [Quit: Konversation terminated!]
five618480339176 has joined #ffmpeg
cantelope has joined #ffmpeg
<ffsteve> fixed. thanks for the pointers. fix was to set LIB in windows batch file to where my actual system libs are replacing version in vsvars which was wrong due to system changes.
YuGiOhJCJ has quit [Quit: YuGiOhJCJ]
rsx has quit [Quit: rsx]
System_Error has quit [Remote host closed the connection]
System_Error has joined #ffmpeg
ffsteve has quit [Quit: Client closed]
Shine_ has joined #ffmpeg
<BtbN> You need to build ffmpeg from the msvc terminal
<BtbN> i.e. launch the MSVC Shell, launch bash from it, and build
<BtbN> msys by default will clear the environment when launched, so you need to fiddle with it to get it to work
<BtbN> I usually just use WSL these days
fling has quit [Ping timeout: 244 seconds]
tronexte has quit [Ping timeout: 268 seconds]
tronexte has joined #ffmpeg
turlando has quit [Quit: No Ping reply in 180 seconds.]
turlando has joined #ffmpeg
flotwig has quit [Read error: Connection reset by peer]
flotwig has joined #ffmpeg
flotwig has quit [Changing host]
flotwig has joined #ffmpeg
Guest847 has joined #ffmpeg
beneth has joined #ffmpeg
technomancy has quit [Ping timeout: 252 seconds]
jensen1 has joined #ffmpeg
Vonter has quit [Ping timeout: 276 seconds]
System_Error has quit [Remote host closed the connection]
jensen1 is now known as aza
aza is now known as awht
Vonter has joined #ffmpeg
System_Error has joined #ffmpeg
minimal has joined #ffmpeg
jmcantrell has joined #ffmpeg
Guest847 has quit [Quit: Client closed]
EmleyMoor has quit [Ping timeout: 276 seconds]
EmleyMoor has joined #ffmpeg
lemourin3 has joined #ffmpeg
lemourin is now known as Guest3722
Guest3722 has quit [Killed (molybdenum.libera.chat (Nickname regained by services))]
lemourin3 is now known as lemourin
Guest3722 has joined #ffmpeg
lemourin has quit [Killed (platinum.libera.chat (Nickname regained by services))]
Guest3722 is now known as lemourin
Guest5219 has joined #ffmpeg
lemourin has quit [Killed (tantalum.libera.chat (Nickname regained by services))]
Guest5219 is now known as lemourin
Guest2783 has joined #ffmpeg
lemourin has quit [Killed (lithium.libera.chat (Nickname regained by services))]
Guest2783 is now known as lemourin
Guest5015 has joined #ffmpeg
lemourin is now known as Guest6262
Guest6262 has quit [Killed (molybdenum.libera.chat (Nickname regained by services))]
Guest5015 is now known as lemourin
Guest6262 has joined #ffmpeg
lemourin has quit [Killed (osmium.libera.chat (Nickname regained by services))]
Guest6262 is now known as lemourin
Guest3925 has joined #ffmpeg
lemourin is now known as Guest5460
Guest3925 is now known as lemourin
lemourin has quit [Client Quit]
<Richardcavell_> Hi. I can't remember who I was talking to about a command line for ffmpeg. I'm using acrusher=bits=6 to try to get it to clip the lower 2 bits of an 8-bit unsigned PCM sample, but it's not working
<Richardcavell_> I examine the output with hexdump and it's keeping all 8 bits
dxh has joined #ffmpeg
jmcantrell has quit [Ping timeout: 272 seconds]
Vonter has quit [Ping timeout: 276 seconds]
Juest has quit [Ping timeout: 252 seconds]
microlappy has joined #ffmpeg
microlappy has quit [Client Quit]
dreamon has quit [Ping timeout: 260 seconds]
dxh has quit [Remote host closed the connection]
Juest has joined #ffmpeg
lusciouslover has quit [Quit: \]
lusciouslover has joined #ffmpeg
dreamon has joined #ffmpeg
Shine_ has quit [Read error: Connection reset by peer]
technomancy has joined #ffmpeg
mtoy has quit []
microchip_ has quit [Quit: There is no spoon!]
microchip_ has joined #ffmpeg
dreamon has quit [Remote host closed the connection]
dxh has joined #ffmpeg
intrac has quit [Ping timeout: 260 seconds]
intrac has joined #ffmpeg
klaxa has quit [Ping timeout: 245 seconds]
klaxa has joined #ffmpeg
YuGiOhJCJ has joined #ffmpeg
Blacker47 has quit [Quit: Life is short. Get a V.90 modem fast!]
ishan has quit [Ping timeout: 252 seconds]
Richardcavell_ has quit [Ping timeout: 248 seconds]
ishan has joined #ffmpeg
wyatt8740 has quit [Ping timeout: 268 seconds]
wyatt8740 has joined #ffmpeg
lolok has quit [Quit: lolok]
pastelowl has quit [Quit: WeeChat 4.6.3]
tdsperle^ has quit [Remote host closed the connection]
lavaball has quit [Remote host closed the connection]
jmcantrell has joined #ffmpeg
lolok has joined #ffmpeg
lockywolf_ has quit [Remote host closed the connection]
lockywolf has joined #ffmpeg
danielxhogan is now known as dxh-
dxh- has quit [Remote host closed the connection]
dxh_ has joined #ffmpeg
YuGiOhJCJ has quit [Ping timeout: 244 seconds]
YuGiOhJCJ has joined #ffmpeg
odrling has quit [Remote host closed the connection]
odrling has joined #ffmpeg
pastelowl has joined #ffmpeg
pastelowl has quit [Quit: WeeChat 4.6.3]
dxh has quit [Ping timeout: 268 seconds]
dxh_ has quit [Ping timeout: 248 seconds]
dxh_ has joined #ffmpeg
pastelowl has joined #ffmpeg