Package Details: lives 3.2.0-2

Git Clone URL: https://aur.archlinux.org/lives.git (read-only, click to copy)
Package Base: lives
Description: A Video Editing System
Upstream URL: http://lives-video.com
Licenses: GPL
Submitter: encelo
Maintainer: encelo
Last Packager: encelo
Votes: 202
Popularity: 0.000005
First Submitted: 2005-07-31 22:25 (UTC)
Last Updated: 2020-11-12 10:58 (UTC)

Latest Comments

1 2 3 4 5 6 .. 16 Next › Last »

luuuciano commented on 2022-10-04 20:05 (UTC)

It would be possible to compile 4.0 git version? https://github.com/salsaman/LiVES Or... at least, use the LiVES/lives-3.2.0-pre.tar.bz2 that is available there (and maybe doing another AUR package for 4.0?)

df8oe commented on 2022-07-10 08:19 (UTC)

The upstrteam url is dead...

smey commented on 2022-04-22 16:18 (UTC)

Is there a workaround to the problem with ffmpeg5 and the "'AVStream' has no member named 'codec'" error?

encelo commented on 2022-04-08 10:57 (UTC)

I get those errors:

libav_stream.c:465:10: error: ‘AVStream’ has no member named ‘codec’
  465 |   ost->st->codec = ost->enc = c;
      |          ^~
libav_stream.c: In function ‘init_screen’:
libav_stream.c:588:30: error: ‘AVStream’ has no member named ‘codec’
  588 |   ostv.enc = encctx = vStream->codec;
      |                              ^~
libav_stream.c:610:10: error: ‘AVStream’ has no member named ‘codec’
  610 |   vStream->codec->time_base = vStream->time_base;
      |          ^~
libav_stream.c:612:10: error: ‘AVStream’ has no member named ‘codec’
  612 |   vStream->codec->width = width;
      |          ^~
libav_stream.c:613:10: error: ‘AVStream’ has no member named ‘codec’
  613 |   vStream->codec->height = height;
      |          ^~
libav_stream.c:614:10: error: ‘AVStream’ has no member named ‘codec’
  614 |   vStream->codec->pix_fmt = avpalette;
      |          ^~
libav_stream.c:619:10: error: ‘AVStream’ has no member named ‘codec’
  619 |   vStream->codec->bit_rate = maxvbitrate;
      |          ^~
libav_stream.c:631:14: error: ‘AVStream’ has no member named ‘codec’
  631 |       vStream->codec->qmin = 10;
      |              ^~
libav_stream.c:632:14: error: ‘AVStream’ has no member named ‘codec’
  632 |       vStream->codec->qmax = 51;
      |              ^~
libav_stream.c:652:12: error: ‘AVStream’ has no member named ‘codec’
  652 |     vStream->codec->max_b_frames = 2;
      |            ^~
libav_stream.c:658:12: error: ‘AVStream’ has no member named ‘codec’
  658 |     vStream->codec->mb_decision = 2;
      |            ^~
libav_stream.c:681:33: error: ‘AVStream’ has no member named ‘codec’
  681 |     osta.enc = aencctx = aStream->codec;
      |                                 ^~
libav_stream.c: In function ‘render_audio_frame_float’:
libav_stream.c:875:11: warning: implicit declaration of function ‘avcodec_encode_audio2’; did you mean ‘avcodec_encode_subtitle’? [-Wimplicit-function-declaration]
  875 |     ret = avcodec_encode_audio2(c, &pkt, NULL, &got_packet);
      |           ^~~~~~~~~~~~~~~~~~~~~
      |           avcodec_encode_subtitle
libav_stream.c: In function ‘render_frame_yuv420’:
libav_stream.c:988:11: warning: implicit declaration of function ‘avcodec_encode_video2’; did you mean ‘avcodec_encode_subtitle’? [-Wimplicit-function-declaration]
  988 |     ret = avcodec_encode_video2(c, &pkt, ostv.frame, &got_packet);
      |           ^~~~~~~~~~~~~~~~~~~~~
      |           avcodec_encode_subtitle
libav_stream.c: In function ‘exit_screen’:
libav_stream.c:1090:26: error: ‘AVStream’ has no member named ‘codec’
 1090 |     avcodec_close(vStream->codec);
      |                          ^~
libav_stream.c:1095:26: error: ‘AVStream’ has no member named ‘codec’
 1095 |     avcodec_close(aStream->codec);

Maybe we should wait for a fix upstream?

wolfyrion commented on 2022-04-02 10:58 (UTC)

I get an error

make: *** [Makefile:647: all-recursive] Error 1 ==> ERROR: A failure occurred in build(). Aborting...

df8oe commented on 2020-11-12 15:19 (UTC)

Many thanks for your very fast reaction - that was the problem!

Stay healthy - best regards

encelo commented on 2020-11-12 11:00 (UTC)

I replaced the jack dependency with jack2. It was something I wrote in the changelog but then forgot to apply to the PKGBUILD file. :) The package should now compile correctly.

df8oe commented on 2020-11-12 08:43 (UTC) (edited on 2020-11-12 08:48 (UTC) by df8oe)

Does not build here...
jack.c: In Funktion »lives_jack_init«:
jack.c:124:10: Warnung: Implizite Deklaration der Funktion »jackctl_server_open«; meinten Sie »jackctl_server_stop«? [-Wimplicit-function-declaration]
124 | if (!jackctl_server_open(jackserver, driver)) {
| ^~~~~~~~~~~~~~~~~~~
| jackctl_server_stop
jack.c:129:10: Fehler: Zu wenige Argumente für Funktion »jackctl_server_start«
129 | if (!jackctl_server_start(jackserver)) {
| ^~~~~~~~~~~~~~~~~~~~
In Datei, eingebunden von jack.h:17,
von main.h:1116,
von jack.c:7:
/usr/include/jack/control.h:144:1: Anmerkung: hier deklariert
144 | jackctl_server_start(
| ^~~~~~~~~~~~~~~~~~~~
make[1]: [Makefile:1175: jack.o] Fehler 1
make[1]: Verzeichnis „/home/andreas/.cache/yay/lives/src/lives-3.2.0/src“ wird verlassen
make:
[Makefile:647: all-recursive] Fehler 1
==> FEHLER: Ein Fehler geschah in build().
Breche ab...

City-busz commented on 2020-07-09 17:31 (UTC) (edited on 2020-07-09 17:31 (UTC) by City-busz)

You have to add '-fcommon to CFLAGS to fix the build:

CFLAGS+=" -fcommon"

NiceMicro commented on 2020-07-07 11:55 (UTC) (edited on 2020-07-07 11:58 (UTC) by NiceMicro)

I tried to install this software, but I get a bunch of errors like this:

/usr/bin/ld: giw/giwtimeline.o:(.bss+0x2a0): multiple definition of `LIVES_STOCK_LABEL_REFRESH'; widget-helper.o:(.bss+0x2a0): first defined here

And then fails to build:

collect2: error: ld returned 1 exit status
make[1]: *** [Makefile:931: lives-exe] Error 1
make[1]: Leaving directory '/home/nicemicro/.cache/aurutils/sync/lives/src/lives-3.0.2/src'
make: *** [Makefile:647: all-recursive] Error 1
==> ERROR: A failure occurred in build().
    Aborting...