Search found 128 matches

by uyjulian
Mon Mar 13, 2017 1:27 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py Game Chooser sample code
Replies: 6
Views: 1192

Ren'Py Game Chooser sample code

https://gist.github.com/uyjulian/0972d73ac7e37b848991c051575278fc I wrote this script to allow you to pick a Ren'Py game and launch it. It's pretty ugly, but it works! If you want to pack multiple Ren'Py games and you want to be able to choose between them, you can use this launching method. You can...
by uyjulian
Fri Dec 09, 2016 8:04 am
Forum: Ren'Py Questions and Announcements
Topic: Linking to html5?
Replies: 3
Views: 664

Re: Linking to html5?

You can open the html file in a browser.
by uyjulian
Sun Nov 13, 2016 6:45 pm
Forum: Ren'Py Questions and Announcements
Topic: There is a way to use AdobeRGB color profile on Ren'Py?
Replies: 1
Views: 384

Re: There is a way to use AdobeRGB color profile on Ren'Py?

People usually have crappy screens that doesn't show that much color.
You might consider fixing your images to look good on sRGB.
by uyjulian
Tue Sep 13, 2016 6:29 am
Forum: Creator Discussion
Topic: WEBP Image File Type Support and YOU
Replies: 14
Views: 10797

Re: WEBP Image File Type Support and YOU

BPG should be supported in the next release (compresses even smaller!), but somebody should write an SDL wrapper for it.
by uyjulian
Sun Jul 24, 2016 7:23 pm
Forum: Ren'Py Questions and Announcements
Topic: the game weights too much?
Replies: 4
Views: 508

Re: the game weights too much?

Exact size images. Lossy file formats. It's not too hard to compress if you really want to. You didn't throw in alot of high res images and wav music files did you? theres like 8 images in total along with sprites backgrounds and shit. none of them are big(not exact but not big either). 4 mp3 songs...
by uyjulian
Sat Jun 04, 2016 11:13 am
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py's Self-Voicing option and regional letters
Replies: 7
Views: 2511

Re: Ren'Py's Self-Voicing option and regional letters

Well, shit. It doesn't seem like it can be easily fixed, or at least I can't find anything. Seems like I'll have to switch to other engines then. Does anyone know if Unity3D has easily-implementable TTS module? I assume you can't just import the standard System.Speech dll package and expect it to w...
by uyjulian
Fri Jun 03, 2016 8:55 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py's Self-Voicing option and regional letters
Replies: 7
Views: 2511

Re: Ren'Py's Self-Voicing option and regional letters

Well, shit. It doesn't seem like it can be easily fixed, or at least I can't find anything. Seems like I'll have to switch to other engines then. Does anyone know if Unity3D has easily-implementable TTS module? I assume you can't just import the standard System.Speech dll package and expect it to w...
by uyjulian
Sat May 28, 2016 1:23 am
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py's Self-Voicing option and regional letters
Replies: 7
Views: 2511

Re: Ren'Py's Self-Voicing option and regional letters

If you are on OSX, make sure you select the correct voice that support your language. If you are Linux, espeak is used, however Ren'Py does not specify any settings for you. I think espeak should be included with renpy so we have consistent TTS across all platforms, however espeak is licensed under ...
by uyjulian
Sat Feb 13, 2016 1:51 pm
Forum: Development of Ren'Py
Topic: Sound/Movie Partial Playback
Replies: 10
Views: 2992

Re: Sound/Movie Partial Playback

Is it possible to play by samples as well as by seconds?
If so, this update will be even nicer... since giant floating point numbers is annoying
by uyjulian
Fri Feb 05, 2016 11:03 pm
Forum: Development of Ren'Py
Topic: Movie Sprites
Replies: 42
Views: 18286

Re: Movie Sprites

Ooh, we get updated ffmpeg too?

Well, this will open up new possibilities.
by uyjulian
Thu Oct 29, 2015 6:14 am
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py 6.99.7 Pre-Released
Replies: 20
Views: 2791

Re: Ren'Py 6.99.7 Pre-Released

jack_norton wrote:You didn't implement IAP consumables for iOS in this version right? just asking since I'll wait to upgrade until it's officially added :)
I don't think you should use this version in production
wait a while until official release?
by uyjulian
Wed Oct 28, 2015 7:26 am
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py 6.99.7 Pre-Released
Replies: 20
Views: 2791

Re: Ren'Py 6.99.7 Pre-Released

Thanks, the pre-release fix the Mac no display overcpu problem.
by uyjulian
Fri Oct 23, 2015 10:07 pm
Forum: Ren'Py Questions and Announcements
Topic: Strange thing happening to my lines in ren'py!
Replies: 7
Views: 905

Re: Strange thing happening to my lines in ren'py!

You might want to include a font with your game to avoid font problems

Code: Select all

init -1 python hide:
    style.default.font = "/path/to/font/file"
    style.default.language = "language"
by uyjulian
Fri Oct 23, 2015 9:32 pm
Forum: Ren'Py Questions and Announcements
Topic: Best audio/video codec / container for Ren'py
Replies: 4
Views: 1512

Re: Best audio/video codec / container for Ren'py

It seems like libavcodec included with Ren'py6.99.6 is outdated. libavcodec with Ren'py is libavcodec.54; latest version is libavcodec.56 (ffmpeg release 2.8) and includes decoding opus support. The other options for lossless audio is ape (takes a lot of cpu time, has controversial license), tak (cl...
by uyjulian
Fri Oct 23, 2015 7:45 am
Forum: Ren'Py Questions and Announcements
Topic: Best audio/video codec / container for Ren'py
Replies: 4
Views: 1512

Re: Best audio/video codec / container for Ren'py

I noticed that opus does not play in Ren'py. I haven't tried VP9 yet.

So
VP8/Vorbis in webm for video
and
Vorbis in webm for lossy audio
are the best formats for Ren'py?

Are there any best practices for lossless audio? I notice flac is supported in Ren'py but will it continue to be supported?