Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - eulogy37

Pages: [1]
1
General / Re: HQ snap issue
« on: March 12, 2019, 02:39:00 PM »
If you’re on a RPi and have followed my instructions to stop the out of sync issue (http://forum.attractmode.org/index.php?topic=2786.0) and they’re no longer out of sync and instead they’re just very jerky, it’s likely they’re just too much for the pi to handle. HQ snaps from emumovies are going to be too much for the Pi. I have found success with SQ movies brought down to 24 FPS using VLC (h.264 encoder).

2
General / Re: video/audio snap out of sync [RESOLUTION]
« on: March 06, 2019, 10:11:52 PM »
I'm commenting here because I've fixed this issue on my Raspberry Pi.

The issue (as of today...hopefully it will be fixed in the future) was introduced in some version of Attract Mode and rolling back to an older version will fix it. This assumes you have already installed all the prerequisites of Attract Mode and Attract Mode itself. From there, go to a command line and enter these commands:

Code: [Select]
mkdir develop
cd develop

Note: Do not use "--depth 1" since it will only get the most recent version. We need a past version.
Code: [Select]
git clone https://github.com/mickelson/attract attract
cd attract

This will get us the most recent version that has no loss of sync. The last line should say "HEAD is now at 793c2f8... Fix 'non-blocking mode wait'" (etc)
Code: [Select]
git checkout 793c2f8

Now we compile and install.
Code: [Select]
make USE_GLES=1
sudo make install USE_GLES=1

Now you check your version of Attract Mode with this command. It should be v2.4.0-10
Code: [Select]
attract -v

If everything worked, we can get rid of our develop folder because we don't need it anymore.
Code: [Select]
cd ../..
rm -r -f develop

And you're done. Feel free to reboot or just run Attract Mode by typing "attract".

3
General / Re: video/audio snap out of sync
« on: March 04, 2019, 10:02:16 PM »
The same thing is happening to me, but no cabinet...just a naked pi.

Some helpful info:
attract -v
Code: [Select]
Attract-Mode v2.4.0 (Linux, SFML 2.4 +FontConfig +GLES +SWF +7z)
avcodec 58.22.100 / avformat 58.17.101 / swscale 5.2.100 / swresample 3.2.100

Shaders are not available.


ffmpeg -codecs | grep h264_mmal
Code: [Select]
ffmpeg version git-2018-07-31-481741e Copyright (c) 2000-2018 the FFmpeg developers
  built with gcc 6.3.0 (Raspbian 6.3.0-18+rpi1+deb9u1) 20170516
  configuration: --enable-mmal --disable-debug --enable-shared
  libavutil      56. 18.102 / 56. 18.102
  libavcodec     58. 22.100 / 58. 22.100
  libavformat    58. 17.101 / 58. 17.101
  libavdevice    58.  4.101 / 58.  4.101
  libavfilter     7. 26.100 /  7. 26.100
  libswscale      5.  2.100 /  5.  2.100
  libswresample   3.  2.100 /  3.  2.100
 DEV.LS h264                 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (decoders: h264 h264_v4l2m2m h264_mmal ) (encoders: h264_v4l2m2m )

Pages: [1]