RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login
    1. Home
    2. Tags
    3. video
    Log in to post
    • All categories
    • J

      Why is CaPriCe32 so dark?

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support caprice32 amstrad video
      2
      2 Votes
      2 Posts
      494 Views
      ClassicGMRC

      @JimmyFromTheBay This has absolutely nothing to do with me since I don't use this emulator.

      I just wanted to throw a "thank you" in here though for posting the answer to your own question after you found it. Google searches bring people here sometimes to find answers to the same problems they may be having and it's frustrating to see nothing entered or, worse, "I found it. I'm good."... then no explanation.

      Thanks from the future! 😀

    • Z

      Change the video playback time

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support retropie video preview gamelist
      7
      0 Votes
      7 Posts
      1k Views
      Z

      @mitu Thank you very much! It works!

    • M

      Splashscreen Video not playing every time

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support splashscreen video startup
      6
      0 Votes
      6 Posts
      683 Views
      mituM

      @Manukan said in Splashscreen Video not playing every time:

      @mitu It is still only playing every time, can I start this service earlier in the boot-process to make it more consistent?

      Not sure what you mean, the splashscreen service is already started pretty early during the boot sequence.

    • ?

      Volume OMX PLayer

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support volume omxplayer video splashscreen
      1
      0 Votes
      1 Posts
      411 Views
      No one has replied
    • D

      Play video snap with button press

      Watching Ignoring Scheduled Pinned Locked Moved Ideas and Development video snap menu gui interface
      1
      0 Votes
      1 Posts
      358 Views
      No one has replied
    • S

      connect to tv and monitor

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support monitor pi4 retropie video hdmi
      3
      0 Votes
      3 Posts
      711 Views
      mituM

      @Thorr69 said in connect to tv and monitor:

      Totally not what he asked about and why are you answering this really old thread?

      Spam, really.

    • G

      PiMarquee2 Problems I've never heard of before

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support retropie pimarquee video
      1
      0 Votes
      1 Posts
      364 Views
      No one has replied
    • J

      Atari Video Pinball backdrop

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support video backdrops bezels mame video pinball
      9
      0 Votes
      9 Posts
      2k Views
      J

      "I just had to keep moving it around till I got it right. Once I got it right, I locked in the numbers in the config file."

      @jamrom2 Do you mean for Video Pinball? If so, what are your config-file numbers?

    • F

      Media player that's not Kodi?

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support media video audio
      4
      0 Votes
      4 Posts
      810 Views
      UnknownU

      @sleve_mcdichael It hasn’t been added as far as I know

    • G

      omxplayer, asplashscreen and vertical/portrait displays

      Watching Ignoring Scheduled Pinned Locked Moved Ideas and Development omxplayer asplashscreen splash screen video
      1
      0 Votes
      1 Posts
      529 Views
      No one has replied
    • B

      Pi 4 Hardware acceleration

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion and Gaming hardware video acceleration
      2
      0 Votes
      2 Posts
      928 Views
      mituM

      'twas never true. All Pi models have accelerated GPU rendering for video or OpenGL(ES) support under Raspbian (Raspberry Pi OS).

    • G

      EmulationStation video preview size sometimes incorrect

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support video preview bug
      1
      1 Votes
      1 Posts
      566 Views
      No one has replied
    • C

      Issues when mounting more than just ROMs over NFS

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support mount nas nfs splashscreen video
      13
      0 Votes
      13 Posts
      2k Views
      C

      @code_dredd said in Issues when mounting more than just ROMs over NFS:

      It seems NFSv3 didn't really fix the issue and ran into others (e.g., weird user IDs on remapping). I've gone back to NFSv4 and increased the number of NFS servers/processes from the default of 4 up to 5 to see if that helps.

      It didn't help.

    • V

      Missing audio in Video Screensaver

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support audio screensaver video omxplayer
      2
      0 Votes
      2 Posts
      560 Views
      V

      In case anyone googles and finds this ... I did get to the bottom of it by looking into the source code (by source code I mean the RetroPie ES version, stable branch)

      You can see here in VideoPlayerComponent.cpp where it launches omxplayer with a bunch of args:

      VideoPlayerComponent.cpp:

      // Run the omxplayer binary execve("/usr/bin/omxplayer.bin", (char**)argv, (char**)env);

      Now if you fire up ES, launch the screensaver, and take a look in the process list while its running (in ssh session, ps -ef) you'll actually see all those args, something like this in the process list:

      pi 2143 1 7 01:16 ? 00:00:08 --layer 10010 --loop --no-osd --aspect-mode stretch --vol -3885 -o alsa --win 0,0,800,480 --orientation 0 /home/pi/RetroPie/roms/neogeo/media/videos/trally.mp4

      What I noticed is the volume is set to -3885. Now if I run that on the command line to simulate the screensaver I can play with the volume. For omxplayer, volume 0 should be 100% as it's measured in millibels according to the omxplayer help.

      So I quit es and ran this:

      omxplayer.bin --layer 10010 --loop --no-osd --aspect-mode stretch -o alsa --vol -0 --win 0,0,800,480 --orientation 0 /home/pi/RetroPie/roms/neogeo/media/videos/trally.mp4

      ok great I can hear it now! I researched %vol to db and the formula is db = 20*log(%vol) and that checks out because I had es at roughly 65% volume which equates to about -3742 millibels.

      So I went back into es and set the volume to 100%, and now I can finally hear it on a default RetroPie install. The issue is the drop off is really steep (must be some bug in omxplayer on pi, that their millibels to volume curve is off) because if you set the volume level at say, 60% you won't hear much of anything from the speakers. I think this is also compounded by the fact that when you're playing around with the audio settings in es, many times it resets the volume back to zero because it's trying to sync up the level with alsa.

      Anyway, hope this helps someone get their head around the screensaver audio.

      p.s. also, in es audio settings, make sure you set the "omx player audio device" to alsa (or whatever works on your pi, or in your command line experiments), as that drives the argument sent into omxplayer above.

    • A

      Video playback problem

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support video
      12
      0 Votes
      12 Posts
      1k Views
      A

      @avendosora ok that worked! I just copied the gamelist.xml from the .emulationstation fodlers for each system and now they all have video! thanks so much for you help in figuring this out its been driving me nuts.

    • C

      Video Screen Saver - Set Specific Directory

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support screensaver video screen saver
      2
      0 Votes
      2 Posts
      449 Views
      mituM

      No, at the moment this is not implemented in EmulationStation, the videos are always read from the gamelist.

    • G

      Which scraper would result in the items shown in this screencap?

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support scraper emulation station video screenshot
      3
      0 Votes
      3 Posts
      780 Views
      muldjordM

      @goestohollywood This is specifically Skyscraper at default settings.

    • chonglarC

      [RESOLVED!] Super Mario War in "slow motion" on new RPi400

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support supermariowar performance hdmi video samsung
      1
      0 Votes
      1 Posts
      657 Views
      No one has replied
    • F

      Video glitches/artifacts in emulationstation

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support artifacts video glitches snes encoding
      3
      0 Votes
      3 Posts
      952 Views
      F

      Switched to pictures only (cover box and screenshot). Turned OMX back on. Thanks for the explanation.
      Cheers