Author Topic: PCL: Blink module  (Read 71300 times)

Offline Juan Conejero

  • PTeam Member
  • PixInsight Jedi Grand Master
  • ********
  • Posts: 7111
    • http://pixinsight.com/
Re: PCL: Blink module
« Reply #120 on: 2014 January 28 03:52:38 »
You are great Nikolay!

This is a wonderful feature. I'm going to see if we can distribute ffmpeg with PixInsight on FreeBSD, Linux, Mac OS X and Windows. The problem is not with ffmpeg (which is LGPLed). I am concerned about legal issues with some codecs such as MPEG-4 and H256. If someone can help with this, any information or ideas will be very welcome.

In the worst scenario, the end user would have to install ffmpeg on his or her machine...
Juan Conejero
PixInsight Development Team
http://pixinsight.com/

Offline NKV

  • PTeam Member
  • PixInsight Guru
  • ****
  • Posts: 677
Re: PCL: Blink module
« Reply #121 on: 2014 January 28 10:00:50 »
I am concerned about legal issues with some codecs such as MPEG-4 and H256.
Juan, the Blink module independent from any legal issues, because user can use any processing software which installed in system. So, legal issues is problem of user.
You can distribute the Blink module without ffmpeg and user can choose coder which convenient for him.

Offline NKV

  • PTeam Member
  • PixInsight Guru
  • ****
  • Posts: 677
Re: PCL: Blink module
« Reply #122 on: 2014 January 30 02:53:07 »
solar eclipse 2008
The video made in Blink module.

Offline FunTomas

  • PixInsight Addict
  • ***
  • Posts: 135
    • Astrofoto.sk
Re: PCL: Blink module
« Reply #123 on: 2014 January 30 05:15:11 »
Hi Nikolay. Maybe offtopic question, but how are you registered Moon disc?

Offline NKV

  • PTeam Member
  • PixInsight Guru
  • ****
  • Posts: 677
Re: PCL: Blink module
« Reply #124 on: 2014 January 30 21:07:42 »
Hi Nikolay. Maybe offtopic question, but how are you registered Moon disc?
See that topic http://pixinsight.com/forum/index.php?topic=6662.0

Offline Alejandro Tombolini

  • PTeam Member
  • PixInsight Jedi
  • *****
  • Posts: 1267
    • Próxima Sur
Re: PCL: Blink module
« Reply #125 on: 2014 February 17 19:10:23 »
Hi Nikolay, thank you for the improvement!. Blink is a great module.

I wonder if it is possible to generate a video that reproduce indefinitely

Saludos, Alejandro.

Offline NKV

  • PTeam Member
  • PixInsight Guru
  • ****
  • Posts: 677
Re: PCL: Blink module
« Reply #126 on: 2014 February 17 21:52:14 »
I wonder if it is possible to generate a video that reproduce indefinitely
Are you mean loop gif ?
The module just run external codec. So, if yours codec can, Blink module can too.

Try this:
Program: convert
Arguments: -delay 5 -loop 0 Blink*.png Blink.gif

or this:
Program: ffmpeg
Arguments: -y -r 5 -i Blink%05d.png -pix_fmt rgb24 Blink.gif

PS: convert it's Command-line Tools
my result via convert in attachment.
« Last Edit: 2014 February 18 01:00:43 by NKV »

Offline Alejandro Tombolini

  • PTeam Member
  • PixInsight Jedi
  • *****
  • Posts: 1267
    • Próxima Sur
Re: PCL: Blink module
« Reply #127 on: 2014 February 18 19:20:43 »
Hi Nikolay, Thank you!, that is what I need. I will make a try

Offline NKV

  • PTeam Member
  • PixInsight Guru
  • ****
  • Posts: 677
Re: PCL: Blink module
« Reply #128 on: 2014 March 04 00:55:11 »
Hi Nikolay, Thank you!, that is what I need. I will make a try
Welcome!

Offline Alejandro Tombolini

  • PTeam Member
  • PixInsight Jedi
  • *****
  • Posts: 1267
    • Próxima Sur
Re: PCL: Blink module
« Reply #129 on: 2015 May 01 15:59:43 »
Hi, I need some help with Blink again. :angel:

I am trying to make a video with 360 images. It worked perfectly with the following command for .avi extension using ffmpeg

-y -r 18 -i Blink%05d.png -qscale 1 Blink.avi 

But I need the video in .mp4 and webm. Then use the following command

-y -r 18 -i Blink%05d.png -qscale 1 Blink.mp4

and beside the quality is lower than .avi, it is good enough for what I need. The problem here is that it seems that some frames disappear, at least the latest are not present. Am I using the correct command for mp4?

For .webm, If use:

-y -r 18 -i Blink%05d.png -qscale 1 Blink.webm

the result is very low in quality. I changed -qscale values and also delete it, but the result is allways the same. Any help in which command line should I use?

Thanks,
Alejandro.

Offline Alejandro Tombolini

  • PTeam Member
  • PixInsight Jedi
  • *****
  • Posts: 1267
    • Próxima Sur
Re: PCL: Blink module
« Reply #130 on: 2015 May 03 11:36:54 »
Solved. I used -y -r 18 -i Blink%05d.png -vcodec mpeg4 -b:v 9600k Blink.mp4 and then converted to .webm

Saludos, Alejandro.

Offline pfile

  • PTeam Member
  • PixInsight Jedi Grand Master
  • ********
  • Posts: 4729
Re: PCL: Blink module
« Reply #131 on: 2015 May 20 20:49:55 »
Nikolay,

is there any way to load files into blink except for the "file open" dialog? i was hoping that i could create an xpsm for blink, but there's no way to save a process icon for blink.

thanks

rob

Offline Alejandro Tombolini

  • PTeam Member
  • PixInsight Jedi
  • *****
  • Posts: 1267
    • Próxima Sur
Re: PCL: Blink module
« Reply #132 on: 2015 August 09 16:11:02 »
Hi Nikolay, I have another wish to your fantastic tool. Could be possible to have a drop down menu in "Program" and "Arguments" that remember the latest commands used?
Thank you!
Alejandro.

Offline NKV

  • PTeam Member
  • PixInsight Guru
  • ****
  • Posts: 677
Re: PCL: Blink module
« Reply #133 on: 2016 March 31 00:07:23 »
Added new mode into AutoHT: Link/UnLink RGB channels.

PS Juan, see GitHub ;)

Offline msmythers

  • PTeam Member
  • PixInsight Jedi
  • *****
  • Posts: 1178
    • astrobin
Re: PCL: Blink module
« Reply #134 on: 2016 April 10 20:17:15 »
Just thought I'd link a thread that is going on in the General section about an issue with the move files function in the latest Blink module. This should probably be in the Bug Reports section.

http://pixinsight.com/forum/index.php?topic=9773.0


Mike