Re: [FFmpeg-user] exponential decay, is it possible?

2018-08-05 Thread Michael Koch




Every time when the input becomes brighter than the last output frame,
the output is set to the input value. If input is below the last output
value, then exponential decay.
I have a timelapse video of the night sky with meteors. Each meteor is
visible only in one frame. I'd like to make them visible a little
longer, decaying over several frames.

Example:
Input   Output
0 0
1 1// set to input value
0 0.95  // exponential decay begins
0 0.90
0.50 0.86
0.50 0.81 // until here
0.90 0.90 // now set again to input value, because input is
brighter
0.90 0.90 // keep at the same level
0.60 0.86 // exponential decay begins
0.60 0.81
0.60 0.77

If it is calculating global luma instead of local one, it can be added
to deflicker filter.
Otherwise you will need to write new video filter.


I need it local for all pixels.

Michael
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] exponential decay, is it possible?

2018-08-05 Thread Michael Koch

Am 05.08.2018 um 15:42 schrieb Gyan Doshi:



On 05-08-2018 06:41 PM, Michael Koch wrote:
I'd like to ask if it's possible to make an exponential decay effect 
with FFmpeg.
Let's assume a pixel is fashing to luminance = 1 in just one frame. 
Then in the output video I'd like to have the pixel flashing to 1 
immediately, followed by an exponential decay with a time constant of 
a few seconds.


The mathematics would be something like this:

luminance = 0.95 * luminance_in_last_frame;     // exponential decay
if (luminance_in_new_frame > luminance)
   luminance = luminance_in_new_frame;


So,

frame 0    --> luminance 0
frame 1    --> luminance 1
frame 2    --> as per exprs above
...
frame 2+T  -->   "
frame NEXT  --> source luminance
...
frame LAST -->   "

?

Or would the exponential decay restart each time a pixel of lum 1 is 
encountered?




Every time when the input becomes brighter than the last output frame, 
the output is set to the input value. If input is below the last output 
value, then exponential decay.
I have a timelapse video of the night sky with meteors. Each meteor is 
visible only in one frame. I'd like to make them visible a little 
longer, decaying over several frames.


Example:
Input   Output
0 0
1 1        // set to input value
0 0.95      // exponential decay begins
0 0.90
0.50     0.86
0.50 0.81 // until here
0.90     0.90 // now set again to input value, because input is 
brighter

0.90 0.90 // keep at the same level
0.60     0.86 // exponential decay begins
0.60 0.81
0.60 0.77

Michael

--
**
  ASTRO ELECTRONIC   Dipl.-Ing. Michael Koch
   Raabestr. 43   37412 Herzberg
  www.astro-electronic.de
  Tel. +49 5521 854265   Fax +49 5521 854266
**

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-user] exponential decay, is it possible?

2018-08-05 Thread Michael Koch
I'd like to ask if it's possible to make an exponential decay effect 
with FFmpeg.
Let's assume a pixel is fashing to luminance = 1 in just one frame. Then 
in the output video I'd like to have the pixel flashing to 1 
immediately, followed by an exponential decay with a time constant of a 
few seconds.


The mathematics would be something like this:

luminance = 0.95 * luminance_in_last_frame;     // exponential decay
if (luminance_in_new_frame > luminance)
  luminance = luminance_in_new_frame;

Is there any trick to do this with already existing video filters?

Thanks,
Michael


___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] repeat first and last frame of a video

2018-08-01 Thread Michael Koch





Repeat the first frame of a video 100 times (with the same framerate as
the video), then copy the video, then repeat the last frame 100 times?
If you mean to copy video without generally losing quality than 
answer is no.

Otherwise you can use loop video filter.


The loop video filter requires the number of the first frame of the 
loop. For the first frame that's 0, that's easy. But is there a way 
for find out the number of the last frame in a video? I mean 
automatically, because I want to run the command for several videos of 
different length.




Related question:
Is it possible to give ffmpeg a video as input, and get the last frame 
of this video as output?


Thanks,
Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] repeat first and last frame of a video

2018-08-01 Thread Michael Koch





Repeat the first frame of a video 100 times (with the same framerate as
the video), then copy the video, then repeat the last frame 100 times?

If you mean to copy video without generally losing quality than answer is no.
Otherwise you can use loop video filter.


The loop video filter requires the number of the first frame of the 
loop. For the first frame that's 0, that's easy. But is there a way for 
find out the number of the last frame in a video? I mean automatically, 
because I want to run the command for several videos of different length.


Thanks,
Michael
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-user] repeat first and last frame of a video

2018-08-01 Thread Michael Koch

Hi,

is it possible to do the following with ffmpeg?

Repeat the first frame of a video 100 times (with the same framerate as 
the video), then copy the video, then repeat the last frame 100 times?


Thanks,
Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] Bulge warp using ffmpeg

2018-07-28 Thread Michael Koch

Am 28.07.2018 um 21:11 schrieb Anmol Mishra:

Is there a plugin for ffmpeg that allows for a bulge warp in y-axis only ?


yes, please have a look at the remap filter.

Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [vz-users] VZ-Frontend Auth - Anmelden mit Zugangsberechtigungen - Hilfestellungen und Wiki-Artikel

2018-03-20 Thread Michael Koch
Hallo,

kann ich nicht nachvollziehen.

Du schreibst also den Code des VZ und willst jetzt ernstahft nicht
erklären, wie dieser anzuwenden und zu konfigurieren ist?

Willst du das jetzt also echt einfach abtun und 3 Sätz ohne Inhalt so
hinterlassen?

Ich habe schon angeboten die Doku zu erstellen - aber habe keine Infos!
Wie soll ich das machen?

Sorry leute aber so macht mir das hier keinen Spass mehr - sehe keine
Grundlage für mich hier zu helfen ...

Dann tu mir dochz bitte den gefallen und lösche den PR endgültig damit
wir dieser endlosen Diskussion aus dem weg gehen!

Scheinbar bis du ja selbst nicht von diesem PR überzeugt - sonst würdest
du die nötigen Infos erklären und erläutern!

Lächerlich - sorry! Bin echt entsetzt!

Bye,

Michael



*From:* Andreas Goetz [mailto:cpui...@gmail.com]
*Sent:* Tuesday, Mar 20, 2018 19:59 GMT+0100
*To:* Michael Koch <princemi...@gmail.com>
*Subject:* [vz-users] VZ-Frontend Auth - Anmelden mit
Zugangsberechtigungen - Hilfestellungen und Wiki-Artikel

> Hi Michael,
>
> Auch wenn Du mich gar nicht angesprochen hast….
>
> Problem verstanden, aber ich werde es nicht lösen (können). Ich hab in
> VZ schon ein paar tausend Stunden reingesteckt (ohne Gegenleistung).
>
> Auf Doku hab ich schlicht keine Lust und keine Zeit- wenn ich das
> machen wollte würde ich’s direkt im Wiki selber tun.
>
> Ansonsten helfe ich auf vz-dev bei konkreten und punktuellen Fragen
> immer gerne aus.
>
> Viele Grüße, Andreas
>
> PS.: über vz-users hab ich mich selber oft geärgert wenn da Leute mit
> Ansprüchen reinkommen die nur gefordert haben- deshalb bin ich nur
> noch auf dev unterwegs.
>
> PPS.: und natürlich sind wir dankbar für jeden der hilft!
>
>> On 20. Mar 2018, at 19:09, Michael Koch <princemi...@gmail.com
>> <mailto:princemi...@gmail.com>> wrote:
>>
>> 
>> *From:* Frank Richter [mailto:frank.richte...@gmail.com]
>> *Sent:* Monday, Mar 19, 2018 22:50 GMT+0100
>> *To:* volkszaehler.org <http://volkszaehler.org> - users
>> <volkszaehler-users@demo.volkszaehler.org>
>> *Subject:* [vz-users] VZ-Frontend Auth - Anmelden mit
>> Zugangsberechtigungen - Hilfestellungen und Wiki-Artikel
>>
>> Hallo Michael,
>>
>> das war in keiner Weise harsch gemeint, sorry. Aber wenn du was
>> wissen willst, solltest du halt möglichst konkret fragen (wie du ja
>> jetzt gemacht hast).
>>
>> Der Hinweis auf vz-dev hat einen ganz pragmatischen Grund: soweit ich
>> weiß, liest Andreas, der das ganze ja gecodet hat und vermutlich der
>> einzige ist, der alle Fragen beantworten kann, bei vz-users nicht
>> mehr mit.
>>
>> Grüße
>> Frank
>>
>> Michael Koch <princemi...@gmail.com <mailto:princemi...@gmail.com>>
>> schrieb am Mo., 19. März 2018 22:44:
>>
>> Hallo Frank,
>>
>> 1.finde ich die Art und Weise wie hier diskutiert wird in letzter
>> Zeit etwas harsch.
>> 2. Habe ich absichtlich die Users-Mailingliste gewählt - weil ich
>> besonders die Erläuterungen direkt in diesem Kreise diskutieren
>> möchte.
>> 3. Ja - es gehört zur MW - habe ich nicht gewusst aber jetzt wo
>> Ihr es sagt macht es auch für mich Sinn.
>> Genau dieses meinige fehlende Verständnis möchte ich mit diesem
>> Thema aufklären.
>> Ich biete gerne meine Hilfe an - aber nur wenn wir es schaffen
>> hier ordentlich miteinander um zu gehen (Daniel, Andreas sorry)!
>>
>> Ich erhoffe mir, das die Urheber der Auth-Funktionen alle
>> Parameter in der Config einmalig odentlich beschreiben:
>> a) Erläuterungen Firewall: Was ist ips, methods, action und wie
>> wirken diese zusammen.
>> b) Was muss ich einstellen, wenn ich z.B. einem bestimmten Client
>> zulassen möchte ... z.B. erläutert durch verständliche
>> Anwendungsfälle.
>> c) Was kann ich mit $config['proxies'] einstellen? 1x auf Deutsch
>> bitte ...
>> d) Was bewirkt $config['authorization'] ?? Auch hier benötigt man
>> ein mal eine Erläuterung für das Wiki. Die Kommentare in der
>> Config sind sehr "knapp".
>> e) Ausschließlich $config['users']['plain'] ist für mich
>> selbsterklärend.
>> f) $config['users']['constraints'] ist für mich auch noch ein
>> Buch mit 7 Siegeln...
>>
>> Gerne auch mal einige Ausführungen zum konzeptionellen Aufbau und
>> Funktionsweise insbesondere der Firewall Settings.
>>
>>
>> Danke,
>>
>> Michael

Re: [vz-dev] Beschriftung Frontend

2018-03-20 Thread Michael Koch
Hallo Andreas,

habe die neue htdocs/js/entity.js

gepullt und habe in meinem Frontend noch die gleiche Darstellung mit [*].

Habe ich da etwas falsch gemacht?

Gruß,

Michael



*From:* Andreas Goetz [mailto:cpui...@gmail.com]
*Sent:* Tuesday, Mar 20, 2018 19:53 GMT+0100
*To:* volkszaehler.org 
*Subject:* [vz-dev] Beschriftung Frontend

> Hallo Jan, Zusammen,
>
> Lösung sollte hier
> sein: https://github.com/volkszaehler/volkszaehler.org/pull/678
>
> Viele Grüße, Andreas
>
>
>> On 20. Mar 2018, at 18:08, Jan Strecker > > wrote:
>>
>> Am 20.03.2018 um 17:30 schrieb Frank Richter:
>>> Hi Jan,
>>>
>>> von 10 Frontends redet ja auch niemand ;-)
>>> Ein paar passend zusammengestellte Gruppen, die man via Checkbox
>>> aktiviert/deaktiviert, reichen doch schon (PV weg > kleine Leistungen
>>> sichtbar).
>>
>> Davon redet tatsächlich niemand.
>>
>> Es dreht sich bei mir tatsächlich darum ein ganzes Mieterwohnhaus zu
>> "überwachen". Obwohl hier "überwachen" eigentlich zu stark ausgedrückt
>> ist. Es dreht sich in der Tat darum, meinen eifgenen Stromverbrauch und
>> auch mehr zu überwachen. Die Mieter sind Datenabfall, der nicht
>> ausgewertet wird. Ich möchte z.B. Ergründen ob eine weitere Solaranlage
>> an einer anderen Stelle des Hauses sinnvoill wäre. Ich habe auch vor
>> meinen Mietern eine Solarstromnutzung zu ermölichen.
>>
>> Als
>> Llink:https://www.google.de/url?sa=t=j==s=web=1=0ahUKEwj0rfansPvZAhUHKewKHQgcDkEQFghAMAA=https%3A%2F%2Fwww.bmwi.de%2FRedaktion%2FDE%2FDownloads%2FE%2Feckpunkte-mieterstrom.pdf%3F__blob%3DpublicationFile%26v%3D8=AOvVaw1xPDQiGCnMm6k4bT-UpkSi
>>
>> Insofern ist ein Gesamtübersicht vielleicht gar nicht so verkehrt (auch
>> mit zwei, drei oder vier W Graphen)
>>
>> Gruß
>>
>> Jan
>>
>



Re: [vz-dev] Beschriftung Frontend

2018-03-20 Thread Michael Koch
Moin,

bei mir das gleiche nach einem git pull am Sonntag!

Auch ich habe nur git pull ausgeführt.

Es handelt sich bei mir um C°, W, m³, l/h, % Achsen.




*From:* Andreas Goetz [mailto:cpui...@gmail.com]
*Sent:* Tuesday, Mar 20, 2018 12:54 GMT+0100
*To:* volkszaehler.org 
*Subject:* [vz-dev] Beschriftung Frontend

> Sehr lustig- ich sehe es aber kann es nicht erklären. Wenn Du mir SSH
> geben kannst kann ich dran rumbasteln.
>
> vg
> Andreas
>
> 2018-03-20 12:48 GMT+01:00 Jan Strecker  >:
>
> Am 20.03.2018 um 12:41 schrieb Frank Richter:
> > Hi Jan,
> >
> > warum hast du den gezeigten Kanal auf Achse 3 gelegt? Standardmäßig
> > ist die 1. Achse für alles mit Einheit W vorgesehen.
> >
>
> Ich habe etliche kleinere Verbraucher, die sonst in der Wattzahl
> untergehen würden. In etwa so: 1. Achse 0 bis 500W zweite Achse
> bis - 8
> bis +8kW. Einmal Verbraucher und einmal Erzeugung z.B. als
> Übersicht...
>
> Gruß
>
> Jan
>
>



Re: [vz-users] VZ-Frontend Auth - Anmelden mit Zugangsberechtigungen - Hilfestellungen und Wiki-Artikel

2018-03-19 Thread Michael Koch
Hallo Frank,

1.finde ich die Art und Weise wie hier diskutiert wird in letzter Zeit
etwas harsch.
2. Habe ich absichtlich die Users-Mailingliste gewählt - weil ich
besonders die Erläuterungen direkt in diesem Kreise diskutieren möchte.
3. Ja - es gehört zur MW - habe ich nicht gewusst aber jetzt wo Ihr es
sagt macht es auch für mich Sinn.
Genau dieses meinige fehlende Verständnis möchte ich mit diesem Thema
aufklären.
Ich biete gerne meine Hilfe an - aber nur wenn wir es schaffen hier
ordentlich miteinander um zu gehen (Daniel, Andreas sorry)!

Ich erhoffe mir, das die Urheber der Auth-Funktionen alle Parameter in
der Config einmalig odentlich beschreiben:
a) Erläuterungen Firewall: Was ist ips, methods, action und wie wirken
diese zusammen.
b) Was muss ich einstellen, wenn ich z.B. einem bestimmten Client
zulassen möchte ... z.B. erläutert durch verständliche Anwendungsfälle.
c) Was kann ich mit $config['proxies'] einstellen? 1x auf Deutsch bitte ...
d) Was bewirkt $config['authorization'] ?? Auch hier benötigt man ein
mal eine Erläuterung für das Wiki. Die Kommentare in der Config sind
sehr "knapp".
e) Ausschließlich $config['users']['plain'] ist für mich selbsterklärend.
f) $config['users']['constraints'] ist für mich auch noch ein Buch mit 7
Siegeln...

Gerne auch mal einige Ausführungen zum konzeptionellen Aufbau und
Funktionsweise insbesondere der Firewall Settings.


Danke,

Michael



*From:* Frank Richter [mailto:frank.richte...@gmail.com]
*Sent:* Monday, Mar 19, 2018 13:50 GMT+0100
*To:* volkszaehler.org - users <volkszaehler-users@demo.volkszaehler.org>
*Subject:* [vz-users] VZ-Frontend Auth - Anmelden mit
Zugangsberechtigungen - Hilfestellungen und Wiki-Artikel

> Hi Michael,
>
> das ist eher was für die vz-dev Mailingliste.
>
> Was ist ist denn unklar bzgl. Firewall-Config?
>
> Ansonsten würde ich Daniel zustimmen, ein Artikel gehört thematisch
> zur Middleware.
>
> Grüße
> Frank
>
> Am 18. März 2018 um 16:37 schrieb Michael Koch <princemi...@gmail.com
> <mailto:princemi...@gmail.com>>:
>
> Hallo an Alle!
>
> Andreas hat vor geraumer Zeit einen Pull Request
> <https://github.com/volkszaehler/volkszaehler.org/pull/659>
> geschrieben, mit dem es möglich ist den Zugang zum Frontend nur
> berechtigten Usern zur Verfügung zu stellen.
> Jetzt haben wir uns darauf geeinigt diesen in den Master
> zuintegrieren, damit alle Installationen von diesem großartigen
> Feature profitieren können.
> Hierbei gibt es einige Punkte zu Berücksichtigen:
> - Die PHP Reqirements werden auf PHP 7.0 angehoben, ältere
> Webserverkonfigurationen müssen auf ältere VZ-Versionen zurückgreifen
> - Aufgrund derzeit fehlender Backend-Konfiguartion muss der neue
> Auth in den Config-Files manuall eingerichtet werden.
> Ziel dieses Threads ist es einen geeigneten Wiki-Artikel auf die
> Beine zu stellen um allen eine einfache Konfiguration zu ermöglichen.
> Ich pers. gebe zu, das ich noch einige Probleme mit der
> Firewall-Konfiguartion habe.
> Ich bitte als einmalig darum, hier die Einstellmöglichkeiten von
> euch erklärt zu bekommen, damit wir einen passenden Wikiartikel
> erstellen können.
>
> Nächste Frage: Wie soll dieser Artikel im Wiki heißen? Mein
> Vorschlag:
> https://wiki.volkszaehler.org/software/frontends/frontend/auth
> <https://wiki.volkszaehler.org/software/frontends/frontend/auth>
>
> Beste Grüße,
>
> Michael
>
>



[vz-users] VZ-Frontend Auth - Anmelden mit Zugangsberechtigungen - Hilfestellungen und Wiki-Artikel

2018-03-18 Thread Michael Koch
Hallo an Alle!

Andreas hat vor geraumer Zeit einen Pull Request
 geschrieben,
mit dem es möglich ist den Zugang zum Frontend nur berechtigten Usern
zur Verfügung zu stellen.
Jetzt haben wir uns darauf geeinigt diesen in den Master zuintegrieren,
damit alle Installationen von diesem großartigen Feature profitieren können.
Hierbei gibt es einige Punkte zu Berücksichtigen:
- Die PHP Reqirements werden auf PHP 7.0 angehoben, ältere
Webserverkonfigurationen müssen auf ältere VZ-Versionen zurückgreifen
- Aufgrund derzeit fehlender Backend-Konfiguartion muss der neue Auth in
den Config-Files manuall eingerichtet werden.
Ziel dieses Threads ist es einen geeigneten Wiki-Artikel auf die Beine
zu stellen um allen eine einfache Konfiguration zu ermöglichen.
Ich pers. gebe zu, das ich noch einige Probleme mit der
Firewall-Konfiguartion habe.
Ich bitte als einmalig darum, hier die Einstellmöglichkeiten von euch
erklärt zu bekommen, damit wir einen passenden Wikiartikel erstellen
können.

Nächste Frage: Wie soll dieser Artikel im Wiki heißen? Mein Vorschlag:
https://wiki.volkszaehler.org/software/frontends/frontend/auth

Beste Grüße,

Michael



[vz-dev] VZ WIki + HP

2018-02-16 Thread Michael Koch
Hallo Justin,

derzeit gibt es große Probleme mit der Erreichbarkeit - ca. seit Montag.

Nicht nur noch sporadisch, sondern durchgängig.

Ist das Wiki und die HP bereits zu Leitwerk umgezogen?

Vielen Dank!



Re: [vz-users] ESP8266 + DHT11 Sensor für Temperaturaufzeichnung

2018-02-09 Thread Michael Koch
Moin,

kleiner exkurs z.T. Sleep Mode:

Der GPIO16 kann für Anwendungen wie z.B. eine Briefkastenklappe
verwendet werden, wenn ein Signal in einem besonderen Moment
angetriggert werden soll.

Muss man aber nicht haben... In unserem Fall möchten wir einfach in
einem regelmäßigen Abstand Werte an den VZ senden.

Dies funktioniert mit der folgenden Konfig (GPIO16 wird m.E. nicht
benötigt):

Die 4294 sec entsprechen der maximalen "Sleep Time" von ca. 71 Minuten,
welche durch die internen Funktionen des ESP8266 begrentzt werden.

Erst wenn der Wert "Sleep Delay" auf "0" gesetzt wird, geht das NodeMCU
hin und "lauscht" am GPIO16 ob der Eingang auf 0V gezogen wird und lässt
sich manuell (etwa für eine Briefkasten-Funktion) aufwecken.

Grüße,

Michael


Am 09.02.2018 um 20:38 schrieb Klaus Reichenecker:
> Leider nicht ganz so einfach - den GPIO16 braucht es schon, der ESP
> weckt sich über diesen und den Reset-Eingang quasi selber wieder auf
>
> Wenn Du den GPIO16 nicht zur Verfügung hast, hast Du sicher den
> ESP8266-01 mit nur wenig Anschlüssen, kauf Dir am Besten einen mit
> allen Anschlüssen, z.B. eine NodeMCU, kostet auch keine 5€
>
> VIele Grüße
>
> Klaus
>
>
>
> - Original Message - From: "Daniel Lauckner" 
> To: "volkszaehler.org - users" 
> Sent: Friday, February 09, 2018 7:48 PM
> Subject: Re: [vz-users] ESP8266 + DHT11 Sensor für Temperaturaufzeichnung
>
>
> Hallo,
>
>
> am Freitag, 9. Februar 2018 um 18:47 hat Stefan Bauer geschrieben:
>> Sleep-Modus hört sich interessant an, allerdings weiß ich nicht wie
>> der notwendige GPIO-16 belegt werden kann, wenn nur GPIO-0 und GPIO-2
>> verfügbar sind...
>
> Eigentlich egal. Du willst den ESP ja in Intervallen wecken um den
> Sensor auszulesen, nicht abhängig von einem exteren Signal..
>
>
> mfg Daniel
>



Re: [vz-users] ESP8266 + DHT11 Sensor für Temperaturaufzeichnung

2018-02-09 Thread Michael Koch
Ach so - bezgl. WLAN. Die ESP8266 Module egal ob NodeMCU oder MiniD1
sind beide sehr gute und zuverlässige Module. Auch was die Reichweite
angeht! Von daher kann ich nur einen Repeater von AVM o.ä.auf der halben
Strecke empfehlen um das Problem zu beheben.

Grüße,
Michael


Am 09.02.2018 um 18:37 schrieb Michael Koch:
>
> Das Problem bezgl. ungenaue bzw. teilweise abweichende Werte im vgl.
> zum DS18B20 kann ich bestätigen! Dies ist definitiv ein Problem des
> Sensors DHT11. Mit der etwas "höherwertigeren" und genaueren Version
> dem DHT22 habe ich dann zufriedenstellende Messwerte erfassen können.
> Natürlich ist dieser etwas teurer, kann aber in China für ca. 3 Euro
> bei eBay in größeren Mengen gekauft werden.
>
> Wie Frank schon geschrieben hat ist im Wiki bisher nur die Lösung
> DHT11 (bzw. DHT22 kann genauso nur mit anderer Parametrierung genutzt
> werden) beschrieben.
> Wenn du möchtest können wir dort auch den DS18B20 beschreiben.
> Ich pers. hätte noch Interesse den BME280 auszuprobieren und zu
> dokumentieren. Dieser ist sicherlich der Ferrari unter den Sensoren
> dieser Art.
>
> Mit ESPeasy kann man auch einen sog. Sleep-Modus aktiveren
> <https://www.letscontrolit.com/wiki/index.php/SleepMode>, welcher
> besonders für deinen Batterie-Betrieb interessant sein sollte!
>
> Grüße,
> Michael
>
> 
> *From:* Frank Richter [mailto:frank.richte...@gmail.com]
> *Sent:* Thursday, Feb 8, 2018 11:35 GMT+0100
> *To:* volkszaehler.org - users <volkszaehler-users@demo.volkszaehler.org>
> *Subject:* [vz-users] ESP8266 + DHT11 Sensor für Temperaturaufzeichnung
>
>> Hallo Stefan,
>>
>> ich habe mit den DHT11 auch schlechte Erfahrungen gemacht, vor allem
>> hinsichtlich Luftfeuchte. Temperatur wird ja auch nur in ganzen Grad
>> gemessen, das ist ziemlich grob für Überwachung der Raumtemperatur.
>> Wenn du nur Temperatur messen willst, nimm lieber DS18B20, die sind
>> ziemlich genau. Wenn es auch Feuchte sein soll, z.B. SHT30, Si7021
>> oder BME280.
>> Für Temperaturmessung mit dem ESP haben wir seit kurzem eine
>> ausführliche Anleitung im Wiki (ohne Programmieren): Stichwort ESPeasy.
>>
>> Viele Grüße
>> Frank 
>>
>> Am 08.02.2018 11:24 schrieb "Stefan Bauer" <s...@stefan-bauer.net
>> <mailto:s...@stefan-bauer.net>>:
>>
>> Hallo VZ-User.
>>
>> Vermutlich ist es nicht 100%ig der richtige Adressatenkreis, aber
>> vielleicht kann ja doch einer was dazu sagen...
>>
>> Ich wollte an ein paar Stellen im Haus vorwiegend die
>> Raumtemperatur mit dem volkszähler aufzeichnen/protokollieren. Da
>> ich dort nicht mit Kabel und sowas hinkomme, muss es per WLAN
>> sein. Bei meiner Recherche bin ich auf den ESP8266 mit DHT11
>> Sensor gestoßen.
>>
>> Da man die Kombi auch gut mit einem Lipo-Akku betreiben kann und
>> ich eh noch 2 Stück mit 10Ah da hatte, die optimale Lösung.
>>
>> Nun fangen aber meine Probleme an: es gibt ja hier nichts
>> fertiges für den Volkszähler, also erst mal selber den ESP8266
>> Programmieren müssen. Das war auch nicht so das Ding, gibt ja
>> Beispiele zum Abrufen der Temperatur und Luftfeuchtigkeit, als
>> auch einfache HTTP Anfragen senden. Das hat dann gut funktioniert.
>> 1. Problem: WLAN-Reichweite ist extrem miserabel. Gibt es da
>> Möglichkeiten das zu verbessern?
>> 2. Problem (und auch das größere): die Werte die mir der DHT11
>> Sensor ausgibt sind falsch. Ich hab es mal neben einer normalen
>> Wetterstation positioniert. Temperatur ist im Schnitt etwa 7°C zu
>> hoch (statt 24° gibt das Teil 31° aus). Luftfeuchtigkeit ist etwa
>> 17% zu niedrig (statt 30% gibt es nur 13% aus)
>>
>> Hat von euch schon mal einer damit experimentiert und kann mir
>> helfen?
>> Habe im übrigen 2 Stück getestet, mit dem selben Ergebnis, würde
>> daher einen „Hardwarefehler“ ausschließen. Programmcode ist auch
>> sehr überschaubar, da sehe ich auch kein Problem. Bisher habe ich
>> im Internet auch nichts negatives dazu gefunden, dass sich mit
>> meinem Problem deckt. Das es nicht geeicht und ganz genau ist,
>> ist mir auch klar, aber so sind die Werte absolut unbrauchbar... :-(
>>
>> Gruß
>>
>> Stefan
>>
>> Von meinem iPad gesendet
>>
>



Re: [vz-users] ESP8266 + DHT11 Sensor für Temperaturaufzeichnung

2018-02-09 Thread Michael Koch
Das Problem bezgl. ungenaue bzw. teilweise abweichende Werte im vgl. zum
DS18B20 kann ich bestätigen! Dies ist definitiv ein Problem des Sensors
DHT11. Mit der etwas "höherwertigeren" und genaueren Version dem DHT22
habe ich dann zufriedenstellende Messwerte erfassen können. Natürlich
ist dieser etwas teurer, kann aber in China für ca. 3 Euro bei eBay in
größeren Mengen gekauft werden.

Wie Frank schon geschrieben hat ist im Wiki bisher nur die Lösung DHT11
(bzw. DHT22 kann genauso nur mit anderer Parametrierung genutzt werden)
beschrieben.
Wenn du möchtest können wir dort auch den DS18B20 beschreiben.
Ich pers. hätte noch Interesse den BME280 auszuprobieren und zu
dokumentieren. Dieser ist sicherlich der Ferrari unter den Sensoren
dieser Art.

Mit ESPeasy kann man auch einen sog. Sleep-Modus aktiveren
, welcher
besonders für deinen Batterie-Betrieb interessant sein sollte!

Grüße,
Michael


*From:* Frank Richter [mailto:frank.richte...@gmail.com]
*Sent:* Thursday, Feb 8, 2018 11:35 GMT+0100
*To:* volkszaehler.org - users 
*Subject:* [vz-users] ESP8266 + DHT11 Sensor für Temperaturaufzeichnung

> Hallo Stefan,
>
> ich habe mit den DHT11 auch schlechte Erfahrungen gemacht, vor allem
> hinsichtlich Luftfeuchte. Temperatur wird ja auch nur in ganzen Grad
> gemessen, das ist ziemlich grob für Überwachung der Raumtemperatur.
> Wenn du nur Temperatur messen willst, nimm lieber DS18B20, die sind
> ziemlich genau. Wenn es auch Feuchte sein soll, z.B. SHT30, Si7021
> oder BME280.
> Für Temperaturmessung mit dem ESP haben wir seit kurzem eine
> ausführliche Anleitung im Wiki (ohne Programmieren): Stichwort ESPeasy.
>
> Viele Grüße
> Frank 
>
> Am 08.02.2018 11:24 schrieb "Stefan Bauer"  >:
>
> Hallo VZ-User.
>
> Vermutlich ist es nicht 100%ig der richtige Adressatenkreis, aber
> vielleicht kann ja doch einer was dazu sagen...
>
> Ich wollte an ein paar Stellen im Haus vorwiegend die
> Raumtemperatur mit dem volkszähler aufzeichnen/protokollieren. Da
> ich dort nicht mit Kabel und sowas hinkomme, muss es per WLAN
> sein. Bei meiner Recherche bin ich auf den ESP8266 mit DHT11
> Sensor gestoßen.
>
> Da man die Kombi auch gut mit einem Lipo-Akku betreiben kann und
> ich eh noch 2 Stück mit 10Ah da hatte, die optimale Lösung.
>
> Nun fangen aber meine Probleme an: es gibt ja hier nichts fertiges
> für den Volkszähler, also erst mal selber den ESP8266
> Programmieren müssen. Das war auch nicht so das Ding, gibt ja
> Beispiele zum Abrufen der Temperatur und Luftfeuchtigkeit, als
> auch einfache HTTP Anfragen senden. Das hat dann gut funktioniert.
> 1. Problem: WLAN-Reichweite ist extrem miserabel. Gibt es da
> Möglichkeiten das zu verbessern?
> 2. Problem (und auch das größere): die Werte die mir der DHT11
> Sensor ausgibt sind falsch. Ich hab es mal neben einer normalen
> Wetterstation positioniert. Temperatur ist im Schnitt etwa 7°C zu
> hoch (statt 24° gibt das Teil 31° aus). Luftfeuchtigkeit ist etwa
> 17% zu niedrig (statt 30% gibt es nur 13% aus)
>
> Hat von euch schon mal einer damit experimentiert und kann mir helfen?
> Habe im übrigen 2 Stück getestet, mit dem selben Ergebnis, würde
> daher einen „Hardwarefehler“ ausschließen. Programmcode ist auch
> sehr überschaubar, da sehe ich auch kein Problem. Bisher habe ich
> im Internet auch nichts negatives dazu gefunden, dass sich mit
> meinem Problem deckt. Das es nicht geeicht und ganz genau ist, ist
> mir auch klar, aber so sind die Werte absolut unbrauchbar... :-(
>
> Gruß
>
> Stefan
>
> Von meinem iPad gesendet
>



Re: [vz-users] CURL Error from middleware: continue

2018-01-28 Thread Michael Koch
Das sind zwei unterschiedliche Kanäle (chn8 + chn10).

Und es ist auch egal welche! Es sind Werte welche vom vzlogger gesendet
werden, nicht mit cron!

Wo muss ich in der DB nachsehen? Oder sind das nur Werte welche temporär
vorliegen?

Ich verwende (z.B. beim eHZ über USB) aggtime 30, evtl. ist das ein
Grund, weil ja alle Werte theoretisch zur gleichen Zeit an die MW
gesendet werden?

Gruß und Danke, Michael



*From:* Jakob Hirsch [mailto:j...@plonk.de]
*Sent:* Sunday, Jan 28, 2018 13:08 GMT+0100
*To:* volkszaehler-users@demo.volkszaehler.org
*Subject:* [vz-users] CURL Error from middleware: continue

> Am 28.01.2018 um 11:08 schrieb Michael Koch:
>> Duplicate entry '30-1517131035000' for key 'data_unique'' in
>> Duplicate entry '32-1517131035000' for key 'data_unique'' in
> Zwei Einträge (für einen Kanal) mit dem gleichen timestamp sind nicht
> möglich.
> Auffällig ist, daß beides mal die Millisekunden (letzte drei Ziffern)
> auf 0 sind, das kann eigentlich nicht sein. Was sind denn das für
> Kanäle? Und was für einen Client benutzt du? Sieht so aus, als ob der
> einfach stumpf die Unixtime*1000 nehmen würde, das geht dann eben
> schief, wenn es mal mehr als einen Eintrag in einer Sekunden gibt
> (meistens S0 und hohe Verbräuche) oder wenn man versehentlich zwei
> Cronjobs für einen Kanal hat (Temperatur, Feuchtigkeit etc.)



Re: [vz-users] CURL Error from middleware: continue

2018-01-28 Thread Michael Koch
Ja Klar. Mehr als ein mal.

Es muss irgendwie an der MW auf der Empfangsseite liegen, weil mal der
eine Channel und dann mal der andere Channel nicht übertragen wird.

Nach dem Restart wird dann mal ein anderer Channel nicht gesendet
bis zum nächsten Restart.

Habe das Gefühl, das die MW irgendwie mit der Anzahl der gesendeten
Daten überfordert ist - ohne das ich es wirklich verstehe

Danke und Gruß, Michael


*From:* Frank Richter [mailto:frank.richte...@gmail.com]
*Sent:* Sunday, Jan 28, 2018 12:09 GMT+0100
*To:* volkszaehler.org - users <volkszaehler-users@demo.volkszaehler.org>
*Subject:* [vz-users] CURL Error from middleware: continue

> Hallo Michael,
>
> hast du mal versucht, vzlogger neu zu starten?
>
> Gruß
> Frank
>
> Am 28.01.2018 11:08 schrieb "Michael Koch" <princemi...@gmail.com
> <mailto:princemi...@gmail.com>>:
>
> Schönen Sonntag allen!
>
> Einer meiner Pis sendet derzeit keine Werte an meine Middleware.
>
> _*Meldung auf lokalem Pi:*_
> [Jan 28 10:50:01][chn8] CURL Error from middleware: continue
>
> [Jan 28 10:50:01][chn10]CURL Error from middleware: continue
>
> _*Meldung auf meinem Server mit MW:*_
> [Sun Jan 28 10:50:01.019076 2018] [:error] [pid 12270] [client
> xx.xx.xxx.xxx:33538] PHP Fatal error:  Uncaught exception
> 'PDOException' with message 'SQLSTATE[23000]: Integrity constraint
> violation: 1062 Duplicate entry '30-1517131035000' for key
> 'data_unique'' in
> 
> /var/www/volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:91\nStack
> 
> <http://volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:91%5CnStack>
> trace:\n#0
> 
> /var/www/volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php(91)
> 
> <http://volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php%2891%29>:
> PDOStatement->execute(Array)\n#1
> 
> /var/www/volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php(1008)
> 
> <http://volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php%281008%29>:
> Doctrine\\DBAL\\Driver\\PDOStatement->execute(Array)\n#2
> /var/www/volkszaehler.org/lib/Controller/DataController.php(134)
> <http://volkszaehler.org/lib/Controller/DataController.php%28134%29>:
> Doctrine\\DBAL\\Connection->executeUpdate('INSERT INTO dat...',
> Array)\n#3
> /var/www/volkszaehler.org/lib/Controller/Controller.php(112)
> <http://volkszaehler.org/lib/Controller/Controller.php%28112%29>:
> Volkszaehler\\Controller\\DataController->add('835c1870-1002-1...')\n#4
> /var/www/volkszaehler.org/lib/Router.php(210)
> <http://volkszaehler.org/lib/Router.php%28210%29>:
> Volkszaehler\\Controller\\Controller->run('add',
> '835c1870-1002-1...')\n#5
> /var/www/volkszaehler.org/lib/Router.php(189)
> <http://volkszaehler.org/lib/Router.php%28189%29>:
> Volkszaehler\\Router->handler(Object(Symfony\\Componen in
> 
> /var/www/volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php
> 
> <http://volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php>
> on line 66
>
> [Sun Jan 28 10:50:01.341604 2018] [:error] [pid 12617] [client
> xx.xx.xxx.xxx:33564] PHP Fatal error:  Uncaught exception
> 'PDOException' with message 'SQLSTATE[23000]: Integrity constraint
> violation: 1062 Duplicate entry '32-1517131035000' for key
> 'data_unique'' in
> 
> /var/www/volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:91\nStack
> 
> <http://volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:91%5CnStack>
> trace:\n#0
> 
> /var/www/volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php(91)
> 
> <http://volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php%2891%29>:
> PDOStatement->execute(Array)\n#1
> 
> /var/www/volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php(1008)
> 
> <http://volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php%281008%29>:
> Doctrine\\DBAL\\Driver\\PDOStatement->execute(Array)\n#2
> /var/www/volkszaehler.org/lib/Controller/DataController.php(134)
> <http://volkszaehler.org/lib/Controller/DataController.php%28134%29>:
> Doctrine\\DBAL\\Connection->executeUpdate('INSERT INTO dat...',
> Array)\n#3
> /var/www/volk

[vz-users] CURL Error from middleware: continue

2018-01-28 Thread Michael Koch
Schönen Sonntag allen!

Einer meiner Pis sendet derzeit keine Werte an meine Middleware.

_*Meldung auf lokalem Pi:*_
[Jan 28 10:50:01][chn8] CURL Error from middleware: continue

[Jan 28 10:50:01][chn10]CURL Error from middleware: continue

_*Meldung auf meinem Server mit MW:*_
[Sun Jan 28 10:50:01.019076 2018] [:error] [pid 12270] [client
xx.xx.xxx.xxx:33538] PHP Fatal error:  Uncaught exception 'PDOException'
with message 'SQLSTATE[23000]: Integrity constraint violation: 1062
Duplicate entry '30-1517131035000' for key 'data_unique'' in
/var/www/volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:91\nStack
trace:\n#0
/var/www/volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php(91):
PDOStatement->execute(Array)\n#1
/var/www/volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php(1008):
Doctrine\\DBAL\\Driver\\PDOStatement->execute(Array)\n#2
/var/www/volkszaehler.org/lib/Controller/DataController.php(134):
Doctrine\\DBAL\\Connection->executeUpdate('INSERT INTO dat...',
Array)\n#3 /var/www/volkszaehler.org/lib/Controller/Controller.php(112):
Volkszaehler\\Controller\\DataController->add('835c1870-1002-1...')\n#4
/var/www/volkszaehler.org/lib/Router.php(210):
Volkszaehler\\Controller\\Controller->run('add',
'835c1870-1002-1...')\n#5 /var/www/volkszaehler.org/lib/Router.php(189):
Volkszaehler\\Router->handler(Object(Symfony\\Componen in
/var/www/volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php
on line 66

[Sun Jan 28 10:50:01.341604 2018] [:error] [pid 12617] [client
xx.xx.xxx.xxx:33564] PHP Fatal error:  Uncaught exception 'PDOException'
with message 'SQLSTATE[23000]: Integrity constraint violation: 1062
Duplicate entry '32-1517131035000' for key 'data_unique'' in
/var/www/volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:91\nStack
trace:\n#0
/var/www/volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php(91):
PDOStatement->execute(Array)\n#1
/var/www/volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php(1008):
Doctrine\\DBAL\\Driver\\PDOStatement->execute(Array)\n#2
/var/www/volkszaehler.org/lib/Controller/DataController.php(134):
Doctrine\\DBAL\\Connection->executeUpdate('INSERT INTO dat...',
Array)\n#3 /var/www/volkszaehler.org/lib/Controller/Controller.php(112):
Volkszaehler\\Controller\\DataController->add('c72e0a60-13b6-1...')\n#4
/var/www/volkszaehler.org/lib/Router.php(210):
Volkszaehler\\Controller\\Controller->run('add',
'c72e0a60-13b6-1...')\n#5 /var/www/volkszaehler.org/lib/Router.php(189):
Volkszaehler\\Router->handler(Object(Symfony\\Componen in
/var/www/volkszaehler.org/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php
on line 66

Hat einer Idee wo das Problem liegt?
Was braucht Ihr noch für Infos?

Danke, Michael


Re: [vz-users] [vz-dev] wiki down bzw. ewig lange Antwortzeit.

2018-01-23 Thread Michael Koch
Moin.

Es gibt zwei Knackpunkte:

 1. Es ist technisch unmöglich (also als Kunde mit Zahlen belegbar), dem
Hosten eine überlastung des System durch andere virtuelle Maschinen
nachzuweisen und
 2. selbst wenn deiner virtuellen Maschine 36GB RAM 8 Cores und 2TB
zugewiesen wären - das einzige worauf du sicher zugreifen kannst ist
der Speicherplatz - vServer eben.

Ich und andere meiner Bekannten / Kollegen haben Netcup 1-2 mal
ausprobiert und schnell die Finger davon gelassen. Natürlich sind die
billig. Aber wer billig käuft, käuft zwei mal...

Daher, muss man sich jetzt m.E. entscheiden: Entweder

 1. man sagt, das die bekannten Probleme uns nicht enorm stören
 2. oder man sucht sich einen anderen Hoster aus.

Für den Preis des aktuellen Servers wirst du keinen Hosten finden, der
es mit besser Performance macht !

Meine Frage wäre: Du hast geschrieben, das ein Wechsel erfolgte, weil
der alte Server zu wenig RAM hatte. Welcher Hoster und wie hatte sich
das geäußert - Ladezeiten?

Mein Vorschlag auf den kleinsten Hetzner vServer bezog sich natürlich
auf eine gleiche Preiskategorie.

Ich kann nur meine Erfahrungen nennen: Gute Hoster sind auf jeden Fall
Hetzner und Host Europe.

Ich habe in dieses Thema rein gekrätscht, weil es für mich klar ist! Man
sollte sich jetzt entscheiden, aber bitte nicht jeden mehr jeden Sonntag
rum meckern!

Ich bin auch bereit in Zukunft dem Projekt beizutragen und eine kleine
Spende zu senden! Übrigens sollte mal ein Spendenbutton auf die Homepage!

Gruß,

Michael



*From:* Jakob Hirsch [mailto:j...@plonk.de]
*Sent:* Tuesday, Jan 23, 2018 13:05 GMT+0100
*To:* volkszaehler.org - users 
*Subject:* [vz-users] [vz-dev] wiki down bzw. ewig lange Antwortzeit.

> On 23.01.2018 00:01, Stefan Bauer wrote:
>> Also meine Erfahrungen mit netcup waren auch sehr bescheiden. War
>> zwar damals ein supergünstiges Angebot, aber taugte nichts. Ich hatte
>> das System als VPN-Server im Einsatz mit 2 IPSec-Tunnel mit kaum
>> Auslastung.
>> In 90% der Fälle konnte ich mich nicht mal per SSH auf dem Server
>> einloggen weil der ewig gebraucht hat. Wenn das Monitoring mal
>> funktioniert hat, sahen auch alle Werte gut aus, für mich ein
>> typisches Indiz für Überbuchung des Hosting-Server.
>
> Ja, im netcup-Forum liest man auch ab und zu von Leuten, die sich über
> die Performance beschweren, ist aber m.E. vergleichsweise selten. Ich
> habe dort in den letzten vier Jahren selbst schon diverse Server (aus
> der untersten Preisgruppe, aber i.A. Root-Server, nicht VPS) benutzt
> und nie Probleme gehabt, aber das ist in der Zahl natürlich nicht
> repräsentativ...
> Das Überbuchungs-Problem hat ja im Prinzip jeder Anbieter, die Frage
> ist dann nur, wie sie damit umgehen.
>


Re: [vz-users] [vz-dev] wiki down bzw. ewig lange Antwortzeit.

2018-01-22 Thread Michael Koch
Moin. Bei mir geht es gerade!

Justin, wir diskutieren hier mittlerweile länger über das thema, als wir
benötigen würden um den server umzuziehen.

ich schlage einen anderen hoster vor. netcup ist schließlich nicht für
besonders zuverlässiges hosting bekannt...

ich habe einen vServer bei hetzner für 4,64 Euro Brutto. Ist vielleicht
für euch auch eine überlegung wert - bevor hier noch die nächsten 3
Jahre jeden sonntag und montag diskutiert wird!

Gruß,

Michael



*From:* Udo1 [mailto:u...@gmx.net]
*Sent:* Monday, Jan 22, 2018 21:37 GMT+0100
*To:* volkszaehler-...@demo.volkszaehler.org
*Subject:* [vz-dev] wiki down bzw. ewig lange Antwortzeit.

> Am 22.01.2018 um 21:11 schrieb Andreas Goetz:
>> Wiki wieder tot :O
>
> hier auch.
>
> Gruß
> Udo



Re: [vz-users] Wiki-Stromzaehler sortieren

2018-01-15 Thread Michael Koch
Damit wir genau dies bewerten können, habe ich Marc vorerst darum
gebeten einen Tree vorzuschlagen!

Gruß! MK



*From:* Daniel Lauckner [mailto:v...@jahp.de]
*Sent:* Monday, Jan 15, 2018 18:04 GMT+0100
*To:* volkszaehler.org - users <volkszaehler-users@demo.volkszaehler.org>
*Subject:* [vz-users] Wiki-Stromzaehler sortieren

> Hallo,
>
>
> am Montag, 15. Januar 2018 um 17:58 hat Michael Koch geschrieben:
>>  Hier müssen dan entsprechende   Redirects gesetzt werden!
> Das gibt ein fruchtbares durcheinander...
>
>
> mfg Daniel
>



Re: [vz-users] Wiki-Stromzaehler sortieren

2018-01-15 Thread Michael Koch
Mit dem Namen in der Seite - auch eine gute Idee!

Jetzt stellt sich für mich ein großes Problem, alle ursprünglichen URLs
werden ungültig. Hier müssen dan entsprechende Redirects gesetzt werden!

Kannst du dir mal für einen Admin die Arbeit machen und einen Tree
bauen, wie es werden soll (auf Basis der vorhanden Seiten)?

z.B.:

+ power
|-- ferraris
   |-- Zähler 1
|-- edl-ehz
   |-- Zähler 2
|-- hutschiene 1Phasig
   |-- Modbus-S0-Modellname 1
   |-- Modbus-S0-Modellname 2
|-- hutschiene 3Phasig
   |-- Modbus-S0-Modellname 3
   |-- Modbus-S0-Modellname 4

Gruß,
Michael Koch



*From:* Marc Haber [mailto:mh+volkszaehler-us...@zugschlus.de]
*Sent:* Monday, Jan 15, 2018 17:48 GMT+0100
*To:* volkszaehler.org - users <volkszaehler-users@demo.volkszaehler.org>
*Subject:* [vz-users] Wiki-Stromzaehler sortieren

> On Mon, Jan 15, 2018 at 05:46:57PM +0100, Michael Koch wrote:
>> ich finde deinen Vorschlag gut, würde aber die unterste Ebene der
>> Übersichtlichkeit halber weg lassen!
> Dann sollte man die Seiten umbenennen, z.B.
>
> Modbus-S0-Modellname
>
> damit sich das von selbst sortiert und man sich nicht durch alle
> Einzelseiten durchklicken muss wenn man z.B. was besseres als S0 haben
> will.
>
> Grüße
> Marc
>


Re: [vz-users] Wiki-Stromzaehler sortieren

2018-01-15 Thread Michael Koch
Hallo Marc,

ich finde deinen Vorschlag gut, würde aber die unterste Ebene der
Übersichtlichkeit halber weg lassen!

Beste Grüße,

Michael Koch



*From:* Marc Haber [mailto:mh+volkszaehler-us...@zugschlus.de]
*Sent:* Monday, Jan 15, 2018 17:03 GMT+0100
*To:* volkszaehler.org - users <volkszaehler-users@demo.volkszaehler.org>
*Subject:* [vz-users] Wiki-Stromzaehler sortieren

> Hallo,
>
> liest zufällig jemand mit mehr Rechten fürs Wiki mit? Unter
> https://wiki.volkszaehler.org/hardware ist bei den stromzählern nur eine
> Kategorie für EHZ angelegt, alle anderen sind direkt unter "power".
>
> Wie wäre es mit etwas mehr Struktur, z.B.
>
>
> - power
>   - ferraris
>   - edl-ehz
> - D0
> - modbus
> - S0
>   - hutschiene 1Phasig
> - D0
> - modbus
> - S0
>   - hutschiene 3Phasig
> - D0
> - modbus
> - S0
>
> Wobei ein Zähler mit mehreren Schnittstellen nur in der
> "höherwertigsten" Kategorie (S0 < Modbus < D0) aufzuführen wäre...
>
> Oder kann/darf/soll man das auch ohne besondere Rechte machen dürfen?
>
> Grüße
> Marc
>



Re: [vz-dev] wiki down bzw. ewig lange Antwortzeit.

2018-01-07 Thread Michael Koch
Kann sein, das ich es überlesen habe ... aber läuft vielleicht Sonntags
irgend ein Backup / Cron ??

Gruß, Michael


Am 07.01.2018 um 20:04 schrieb Udo1:
> Moin,
>
> Am 07.01.2018 um 19:51 schrieb Justin Otherguy:
>>   habe auch den Eindruck, dass nur wiki.volkszaehler.org betroffen ist.
> nein, habe es auch mit volkszaehler.org versucht.
>
> Gruß
> Udo



Re: [vz-users] Review Neuer Stromzähler

2018-01-05 Thread Michael Koch
:-D Aber nicht mit 1% Genauigkeit ...



*From:* Frank Richter [mailto:frank.richte...@gmail.com]
*Sent:* Thursday, Jan 4, 2018 22:16 GMT+0100
*To:* volkszaehler.org - users 
*Subject:* [vz-users] Review Neuer Stromzähler

> Hallo Oliver,
>
> der misst auch einstellige Wattzahlen ziemlich genau, getestet mit
> LED-Lampen und verglichen mit ELV Energiemessgerät, welches bisher
> immer zuverlässige Werte geliefert hat.
>
> Grüße
> Frank
>
> Am 04.01.2018 22:12 schrieb "Oliver Feilner"
> >:
>
> Hallo Alexander,
>
> Vielen Dank für das Tolle Review. 
>
> Nur sehr schade dass der minimale Strom bei 0,25A liegt. Bei
> Netzspannung sind das 57,5W. Das ist schon relativ hoch und
> schränkt die Verwendungsmöglichkeiten zur Messung von einzelnen
> Stromkreisen schon stark ein. 
>
> Andere Hersteller haben schon einen Anlaufstrom von 20mA (4,6W)
> dafür zahlt Mann dann aber auch gleich das doppelte. 
>
> Viele Grüße
>
> Oliver
>
> Am 03.01.2018 um 22:46 schrieb Alexander Steingass
> >:
>
>> Moin allerseits,
>>
>> Ich habe in der Zerspanungsbude eine Review eines neuen
>> Stromzählers eingestellt. 
>>
>> Wenn hier Interesse besteht kann der gerne verlinkt oder kopiert
>> werden.
>>
>> Hier der Link
>>
>> https://forum.zerspanungsbude.net/viewtopic.php?f=15=32082
>> 
>>
>> Viele Grüße 
>>
>> Alexander 
>>



Re: [vz-users] Doku im Wiki: Wasserzähler mit Laser als S0 auslesen

2018-01-03 Thread Michael Koch
Ich bezweifle, das du Rechte fürs Wiki hast. Bitte prüfe das mal, ansonsten:
Schreibe Justin Otherguy an, damit er das berichtigen kann!

Gruß, Michael


*From:* Rupert Schöttler [mailto:rupert.schoett...@gmx.de]
*Sent:* Wednesday, Jan 3, 2018 22:01 GMT+0100
*To:* volkszaehler-users@demo.volkszaehler.org
*Subject:* [vz-users] Doku im Wiki: Wasserzähler mit Laser als S0 auslesen

> Hallo Daniel,
>
>
> Am 03.01.2018 um 21:42 schrieb Daniel Lauckner:
>>> Leider weiß ich nicht, wie man im Wiki einen neuen Eintrag anlegt.
>> Die gewünschte URL im Browser angeben, auf der neuen Seite den
>> Editierbutton rechts am Rand nutzen. Ist das Bleistiftsymbol nicht da
>> hast du noch keine Schreibrechte.
> Trickreich! Da muss man drauf kommen... Wobei: Es ist sicherlich
> irgendwo gut beschrieben, ich habe nur die Anleitung nicht gelesen (RTFM
> ;-)...
>  
>> Wobei ich denke das es schon Zweckmäßig wäre die alte Seite zu
>> erweitern. Schließlich nutzt du die selbe Hardware, der Unterschied
>> ist "nur" das du statt dem Perlscript den vzlogger nutzt.
>> Man kann das mit Überschriften ( Text ) ganz gut struktrieren,
>> ab 4 solcher Tags gibts nämlich ein Inhaltverzeichnis oben rechts.
> Ja, das ist ein guter Vorschlag: Variante 1 und Variante 2. Ich werde
> mich die nächsten Tage dran setzen.
>
> Danke & Gruß, Rupert
>



signature.asc
Description: OpenPGP digital signature


Re: [FFmpeg-user] loop over a sequence of images again and again

2017-12-05 Thread Michael Koch

Have a look at the image2 demuxer and its "-loop" option. "-loop 1"

should also work for the concat demuxer, which takes a list of input
files (instead of following a pattern).

That's exactly what I need. Thank you very much!

Michael


___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-user] loop over a sequence of images again and again

2017-12-05 Thread Michael Koch
Let's assume I have a sequence of 100 images. Is it possible to let 
ffmpeg loop over this input sequence again and again?
I mean the input should be 0, 1, 2, ... , 99, 0, 1, 2, ... , 99, 0, 1, 
2  and so on. Is this possible?


Thanks,
Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-user] Feature request: -number_range

2017-11-25 Thread Michael Koch
The option "-start_number_range" is only used when searching for the 
first image of a sequence. I propose to add a new option "-number_range" 
that specifies the number of trials if the next image in a sequence 
isn't found.
For example, when making a timelapse from hundreds of images, it may be 
necessary to exclude a few images from the sequence. But we can't simply 
delete these images, because ffmpeg will stop if the next image isn't 
found. Possible workarounds are duplicating one of the neighbor images, 
or renaming all subsequent images. With the proposed option ffmpeg would 
just skip the missing images.


Thanks,
Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] remap filter gives only black and white output

2017-11-22 Thread Michael Koch
I also tested the fisheye_grid_xmap.pgm and fisheye_grid_ymap.pgm files 
which can be downloaded from the Wiki page:

https://trac.ffmpeg.org/wiki/RemapFilter
Same problem, the output is black and white. So I think it's not a 
problem of my own map files.


Michael


F:\xxx\xxx>c:/ffmpeg/ffmpeg -i in.mp4 -i fisheye_grid_
xmap.pgm -i fisheye_grid_ymap.pgm -lavfi "remap" -c:v mpeg4 -q:v 2 -y 
out.mp4
ffmpeg version N-89127-g8f4702a93f Copyright (c) 2000-2017 the FFmpeg 
developers


  built with gcc 7.2.0 (GCC)
  configuration: --enable-gpl --enable-version3 --enable-sdl2 
--enable-bzlib --e
nable-fontconfig --enable-gnutls --enable-iconv --enable-libass 
--enable-libblur
ay --enable-libfreetype --enable-libmp3lame --enable-libopenjpeg 
--enable-libopu
s --enable-libshine --enable-libsnappy --enable-libsoxr 
--enable-libtheora --ena
ble-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp 
--enable-lib
x264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma 
--enable-z
lib --enable-gmp --enable-libvidstab --enable-libvorbis --enable-cuda 
--enable-c
uvid --enable-d3d11va --enable-nvenc --enable-dxva2 --enable-avisynth 
--enable-l

ibmfx
  libavutil  56.  0.100 / 56.  0.100
  libavcodec 58.  3.103 / 58.  3.103
  libavformat    58.  2.100 / 58.  2.100
  libavdevice    58.  0.100 / 58.  0.100
  libavfilter 7.  2.100 /  7.  2.100
  libswscale  5.  0.101 /  5.  0.101
  libswresample   3.  0.101 /  3.  0.101
  libpostproc    55.  0.100 / 55.  0.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'in.mp4':
  Metadata:
    major_brand : isom
    minor_version   : 512
    compatible_brands: isomiso2mp41
    encoder : Lavf58.0.102
  Duration: 00:00:12.02, start: 0.00, bitrate: 22472 kb/s
    Stream #0:0(und): Video: mpeg4 (Simple Profile) (mp4v / 
0x7634706D), yuv420p
, 1000x1000 [SAR 1:1 DAR 1:1], 22381 kb/s, 30 fps, 30 tbr, 15360 tbn, 30 
tbc (de

fault)
    Metadata:
  handler_name    : VideoHandler
    Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, 
stereo, flt

p, 127 kb/s (default)
    Metadata:
  handler_name    : SoundHandler
Input #1, pgm_pipe, from 'fisheye_grid_xmap.pgm':
  Duration: N/A, bitrate: N/A
    Stream #1:0: Video: pgm, gray16le, 400x400, 25 tbr, 25 tbn, 25 tbc
Input #2, pgm_pipe, from 'fisheye_grid_ymap.pgm':
  Duration: N/A, bitrate: N/A
    Stream #2:0: Video: pgm, gray16le, 400x400, 25 tbr, 25 tbn, 25 tbc
Stream mapping:
  Stream #0:0 (mpeg4) -> remap:source (graph 0)
  Stream #1:0 (pgm) -> remap:xmap (graph 0)
  Stream #2:0 (pgm) -> remap:ymap (graph 0)
  remap (graph 0) -> Stream #0:0 (mpeg4)
  Stream #0:1 -> #0:1 (aac (native) -> aac (native))
Press [q] to stop, [?] for help
Output #0, mp4, to 'out.mp4':
  Metadata:
    major_brand : isom
    minor_version   : 512
    compatible_brands: isomiso2mp41
    encoder : Lavf58.2.100
    Stream #0:0: Video: mpeg4 (mp4v / 0x7634706D), yuv420p, 400x400 
[SAR 1:1 DAR

 1:1], q=2-31, 200 kb/s, 30 fps, 15360 tbn, 30 tbc (default)
    Metadata:
  encoder : Lavc58.3.103 mpeg4
    Side data:
  cpb: bitrate max/min/avg: 0/0/20 buffer size: 0 vbv_delay: -1
    Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, 
stereo, flt

p, 128 kb/s (default)
    Metadata:
  handler_name    : SoundHandler
  encoder : Lavc58.3.103 aac
frame=   79 fps=0.0 q=2.0 size= 512kB time=00:00:02.73 
bitrate=1530.9kbits/s
frame=  164 fps=159 q=2.0 size=    1792kB time=00:00:05.57 
bitrate=2634.3kbits/s
frame=  253 fps=164 q=2.0 size=    3072kB time=00:00:08.52 
bitrate=2953.2kbits/s
frame=  347 fps=169 q=2.0 size=    4096kB time=00:00:11.65 
bitrate=2878.7kbits/s
frame=  360 fps=170 q=2.0 Lsize=    4367kB time=00:00:12.00 
bitrate=2979.8kbits/

s speed=5.66x
video:4168kB audio:188kB subtitle:0kB other streams:0kB global 
headers:0kB muxin

g overhead: 0.262168%
[aac @ 005d3040] Qavg: 206.162


___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] remap filter gives only black and white output

2017-11-22 Thread Michael Koch
> That should not be necessary, assuming you are not on aixor sparc64. 
Is something wrong with the Zeranoe builds?


The latest version from Zeranoe (downloaded today) has the same problem, black 
and white output if used without the format filter.

F:\xxx\xxx>c:/ffmpeg/ffmpeg -i in.mp4 -i xmap_1000.pgm
 -i ymap_1000.pgm -lavfi "remap" -c:v mpeg4 -q:v 2 -y out.mp4
ffmpeg version N-89127-g8f4702a93f Copyright (c) 2000-2017 the FFmpeg developers


I've uploaded the map files again, and also two smaller versions:

http://www.astro-electronic.de/xmap_1000.pgm
http://www.astro-electronic.de/ymap_1000.pgm
http://www.astro-electronic.de/xmap_500.pgm
http://www.astro-electronic.de/ymap_500.pgm


Here is my C# source code for making these files:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;

namespace ffmpeg_remap
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
button1.BackColor = Color.Red;
button1.Refresh();
int a = (int)numericUpDown1.Value;   // get the size of the 
quadratic map
int b = a/2;
double xx, yy;

TextWriter xmap = File.CreateText("xmap_" + a.ToString() + ".pgm");
xmap.Write("P2\n");
xmap.Write("# Xmap file for fulldome remap \n");
xmap.Write(a.ToString() + " " + a.ToString() + " \n");
xmap.Write("65535\n");

TextWriter ymap = File.CreateText("ymap_" + a.ToString() + ".pgm");
ymap.Write("P2\n");
ymap.Write("# Ymap file for fulldome remap \n");
ymap.Write(a.ToString() + " " + a.ToString() + " \n");
ymap.Write("65535\n");

for (int y = 0; y < a; y++)
{
for (int x = 0; x < a; x++)
{
if(y > 4*b)// 4*b means the formulas are never used, the result 
will be "identity" map
{
xx = b + b * Math.Atan((double)(x - b) / (double)(y - 
b));
yy = (double)b + Math.Sqrt((x - b) * (x - b) + (y - b) 
* (y - b));
if (xx < 0) xx = 0;
if (yy < 0) yy = 0;
if (xx > a - 1) xx = a - 1;
if (yy > a - 1) yy = a - 1;
}
else
{
xx = x;
yy = y;
}
xmap.Write((int)xx + " ");
ymap.Write((int)yy + " ");
}
xmap.Write("\n");
ymap.Write("\n");
}
xmap.Write("\n");
ymap.Write("\n");
xmap.Close();
ymap.Close();
button1.BackColor = Color.Green;
}
}
}


 



___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] remap filter gives only black and white output

2017-11-21 Thread Michael Koch

Do you see the same behaviour with current FFmpeg git head?


sorry, I can't compile ffmpeg myself, that's too difficult for me.

Michael


___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] remap filter gives only black and white output

2017-11-21 Thread Michael Koch

> Can you provide them?

"identity" maps for size 1000x1000
http://www.astro-electronic.de/xmap_1000.pgm
http://www.astro-electronic.de/ymap_1000.pgm

Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] remap filter gives only black and white output

2017-11-21 Thread Michael Koch

> Workaround is probably to use the format filter.

yes, that works.

-lavfi "format=pix_fmts=rgb24,remap"

Thanks,
Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] remap filter gives only black and white output

2017-11-21 Thread Michael Koch

Sounds like a bug: Do you have pgm files that provide "identity" output?


I did just make these files with my C# program.
The output video is a black and white copy of the input.

Michael



___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-user] remap filter gives only black and white output

2017-11-21 Thread Michael Koch
I've written a C# program to create my own xmap and ymap files for the 
remap filter.
The geometric distortion in the output video looks as expected. But why 
is the output only black and white?
I've tested two different input videos with the same result. No colors 
in the output.

The console output is attached below.

Thanks,
Michael


F:\xxx\xxx>c:/ffmpeg/ffmpeg -i in.mp4 -i xmap_1000.pgm
 -i ymap_1000.pgm -lavfi remap -c:v mpeg4 -q:v 2 -y out.mp4
ffmpeg version N-88555-g6ea7711532 Copyright (c) 2000-2017 the FFmpeg 
developers


  built with gcc 7.2.0 (GCC)
  configuration: --enable-gpl --enable-version3 --enable-sdl2 
--enable-bzlib --e
nable-fontconfig --enable-gnutls --enable-iconv --enable-libass 
--enable-libblur
ay --enable-libfreetype --enable-libmp3lame --enable-libopenjpeg 
--enable-libopu
s --enable-libshine --enable-libsnappy --enable-libsoxr 
--enable-libtheora --ena
ble-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp 
--enable-lib
x264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma 
--enable-z
lib --enable-gmp --enable-libvidstab --enable-libvorbis --enable-cuda 
--enable-c
uvid --enable-d3d11va --enable-nvenc --enable-dxva2 --enable-avisynth 
--enable-l

ibmfx
  libavutil  56.  0.100 / 56.  0.100
  libavcodec 58.  1.100 / 58.  1.100
  libavformat    58.  0.102 / 58.  0.102
  libavdevice    58.  0.100 / 58.  0.100
  libavfilter 7.  0.101 /  7.  0.101
  libswscale  5.  0.101 /  5.  0.101
  libswresample   3.  0.101 /  3.  0.101
  libpostproc    55.  0.100 / 55.  0.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'in.mp4':
  Metadata:
    major_brand : isom
    minor_version   : 512
    compatible_brands: isomiso2mp41
    encoder : Lavf58.0.102
  Duration: 00:00:12.02, start: 0.00, bitrate: 22472 kb/s
    Stream #0:0(und): Video: mpeg4 (Simple Profile) (mp4v / 
0x7634706D), yuv420p
, 1000x1000 [SAR 1:1 DAR 1:1], 22381 kb/s, 30 fps, 30 tbr, 15360 tbn, 30 
tbc (de

fault)
    Metadata:
  handler_name    : VideoHandler
    Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, 
stereo, flt

p, 127 kb/s (default)
    Metadata:
  handler_name    : SoundHandler
Input #1, pgm_pipe, from 'xmap_1000.pgm':
  Duration: N/A, bitrate: N/A
    Stream #1:0: Video: pgm, gray16le, 1000x1000, 25 tbr, 25 tbn, 25 tbc
Input #2, pgm_pipe, from 'ymap_1000.pgm':
  Duration: N/A, bitrate: N/A
    Stream #2:0: Video: pgm, gray16le, 1000x1000, 25 tbr, 25 tbn, 25 tbc
Stream mapping:
  Stream #0:0 (mpeg4) -> remap:source (graph 0)
  Stream #1:0 (pgm) -> remap:xmap (graph 0)
  Stream #2:0 (pgm) -> remap:ymap (graph 0)
  remap (graph 0) -> Stream #0:0 (mpeg4)
  Stream #0:1 -> #0:1 (aac (native) -> aac (native))
Press [q] to stop, [?] for help
Output #0, mp4, to 'out.mp4':
  Metadata:
    major_brand : isom
    minor_version   : 512
    compatible_brands: isomiso2mp41
    encoder : Lavf58.0.102
    Stream #0:0: Video: mpeg4 (mp4v / 0x7634706D), yuv420p, 1000x1000 
[SAR 1:1 D

AR 1:1], q=2-31, 200 kb/s, 30 fps, 15360 tbn, 30 tbc (default)
    Metadata:
  encoder : Lavc58.1.100 mpeg4
    Side data:
  cpb: bitrate max/min/avg: 0/0/20 buffer size: 0 vbv_delay: -1
    Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, 
stereo, flt

p, 128 kb/s (default)
    Metadata:
  handler_name    : SoundHandler
  encoder : Lavc58.1.100 aac
frame=   43 fps=0.0 q=2.0 size=    1024kB time=00:00:01.53 
bitrate=5474.0kbits/s
frame=   91 fps= 88 q=2.0 size=    3840kB time=00:00:03.11 
bitrate=10110.2kbits/
frame=  137 fps= 89 q=2.0 size=    7168kB time=00:00:04.64 
bitrate=12644.4kbits/
frame=  184 fps= 89 q=2.0 size=   10496kB time=00:00:06.19 
bitrate=13868.9kbits/
frame=  231 fps= 90 q=2.0 size=   13824kB time=00:00:07.77 
bitrate=14558.6kbits/
frame=  280 fps= 91 q=2.0 size=   17408kB time=00:00:09.42 
bitrate=15127.0kbits/
frame=  329 fps= 91 q=2.0 size=   19968kB time=00:00:11.07 
bitrate=14768.8kbits/
frame=  360 fps= 92 q=2.0 Lsize=   20827kB time=00:00:12.00 
bitrate=14212.0kbits

/s speed=3.08x
video:20628kB audio:188kB subtitle:0kB other streams:0kB global 
headers:0kB muxi

ng overhead: 0.054835%
[aac @ 005d2d80] Qavg: 206.162
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] question about displace filter

2017-11-19 Thread Michael Koch
Finally I found a solution how to make curved text for a fulldome video. 
It's awfully slow because in the geq filter the same calculations are 
made for each frame again and again. But it works. Below is the Windows 
batch file.
Most probably the remap filter would make this process much faster, but 
I haven't yet figured out how to make the Xmap and Ymap files.


Michael



REM make a video with curved text for fulldome fade-in fade-out

set "DUR=10"    : duration of video
set "FPS=30"    : framerate
set "BACK=black"    : background color
set "FONT=arial.ttf"    : font
set "TEXT=my_text.txt"  : text file
set "COLOR=orange"  : text color
set "FSIZE=15"  : font size
set "POS_X=(w-tw)/2"    : X text position, for centered text: (w-tw)/2
set "POS_Y=h*0.9"   : Y text position
set "S=2"   : start time for text
set "E=8"   : end time for text
set "FI=2"  : fade-in duration (may be small, but not zero)
set "FO=2"  : fade-out duration (may be small, but not zero)
set "SIZE=1000" : video size (quadratic)

c:/ffmpeg/ffmpeg ^
 -f lavfi ^
 -i color=c=%BACK% ^
 -r %FPS% ^
 -t %DUR% ^
 -aspect "1:1" ^
 -vf 
"scale=%SIZE%:%SIZE%,drawtext='fontfile=%FONT%:textfile=%TEXT%:fontcolor_expr=%COLOR%@%%{e\:clip(((t-%S%)/%FI%)*between(t,%S%,%S%+%FI%)+(%E%-t)/%FO%*between(t,%S%+%FI%,%E%),0,1)}:fontsize=%FSIZE%:x=%POS_X%:y=%POS_Y%',geq=p(if(gt(Y\,H*0.7)\,W/2+H/2*atan((X-W/2)/(Y-H/2))\,0)\,if(gt(Y\,H*0.7)\,H/2+hypot(X-W/2\,Y-H/2)\,0))" 
^

 -c:v mpeg4 ^
 -q:v 0 ^
 -y test.mp4

pause

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] question about displace filter

2017-11-18 Thread Michael Koch

> Yes, with geq filter. Remap filter documentation is on FFmpeg wiki.

I can't find an example how to make the Xmap and Ymap files with ffmpeg.
In the wiki the files are made with a C program which is difficult to 
understand.

https://trac.ffmpeg.org/wiki/RemapFilter

This example is from the documentation of the displace filter:

ffmpeg -i INPUT -f lavfi -i nullsrc=s=hd720,lutrgb=128:128:128 -f lavfi 
-i 
nullsrc=s=hd720,geq='r=128+30*sin(2*PI*X/400+T):g=128+30*sin(2*PI*X/400+T):b=128+30*sin(2*PI*X/400+T)' 
-lavfi '[0][1][2]displace' OUTPUT


However for the remap filter we need only one 16-bit value per pixel. 
Not three 8-bit RGB values. How can this be created with ffmpeg?


Michael


___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] question about displace filter

2017-11-18 Thread Michael Koch

Perhaps you could try remap filter?


Unfortunately the remap filter has so few documentation.
No examples at all. Is it possible to create the Xmap and Ymap files with 
ffmpeg?

Michael


___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] question about displace filter

2017-11-18 Thread Michael Koch

One just substract each possible value with 128 and now you have [-128, 127].


The range is too small for my purpose. Is it possible to create 16 bit 
displacements?

Michael


___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] question about displace filter

2017-11-18 Thread Michael Koch

One just substract each possible value with 128 and now you have [-128, 127].


Thanks for your fast answer. That should be added to the documentation!

Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-user] question about displace filter

2017-11-18 Thread Michael Koch

In the documentation for the displace filter is written:
"The second input specifies how much to displace pixels along the 
x-axis, ..."
If I understand this right, a video input file is "misused" for storing 
the displacement (instead of brightness). Does that mean that only 
positive displacements are possible?

I'm looking for a solution to make curved text for a fulldome video.

Thanks,
Michael


___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] Overlay fails in the middle of the video

2017-11-14 Thread Michael Koch
> OT: Cool photos! Michael, what lens did you use? An 8mm? If you don't 
mind me asking.


yes, Canon EF 8-15mm at 8mm. I'm making a timelapse in the wood over a 
full year.



> If you wanted to convert it back this could work?
> $ ffmpeg -i IMG_044.JPG -pix_fmt yuvj422p IMG_044-yuvj422p.JPG

Perfect, now it's working without any problems. I had to use this 
method, because I don't have the too-blue original image any more.


Thank you very much!
Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] Subscription to mailing list doesn't work

2017-11-14 Thread Michael Koch

> I will contact them to be removed from the blacklist/blocklist.

Thank you very much. It's working now.

Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-user] Subscription to mailing list doesn't work

2017-11-13 Thread Michael Koch
During the last 2 or 3 weeks I did several times try to subscribe to 
this mailing list, without success. After I entered my email address, 
name and password, this message is shown: "Your subscription request has 
been received, and will soon be acted upon. Depending on the 
configuration of this mailing list, your subscription request may have 
to be first confirmed by you via email, or approved by the list 
moderator. If confirmation is required, you will soon get a confirmation 
email which contains further instructions." But I didn't get any 
confirmation mail. I did also check the spam folder.


Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] Overlay fails in the middle of the video

2017-11-13 Thread Michael Koch
> Can you reproduce the issue if you recreate the 145 jpg images with 
ffmpeg using testsrc2?



I did make 145 images with this command line and could not reproduce the 
problem with these images. Also I have several other sets of images, 
some do show this problem and some do not. But I don't know what's wrong 
with the images. If I use the same images to make a video without 
overlay, everything looks fine.


ffmpeg -f lavfi -i testsrc2=size=5472x3648:duration=14.5:rate=10 test%3d.jpg

Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] Overlay fails in the middle of the video

2017-11-13 Thread Michael Koch

I would guess that at this point (which corresponds to your 4..5

seconds), something is different about the JPEG images.


You are totally right. I just found out that it's only one image that
produces the problem.

This is one of the good images. It's a HDR image from a Canon 6D:
http://www.astro-electronic.de/IMG_043.JPG

The next image produces the problem. When I took this image, the
camera was accidently set to the wrong color temperature, incandescent
lamp instead of daylight. Of course the image was much too blue,
and I did try to correct the colors with IrfanView.
So this is the image that ffmpeg doesn't like:
http://www.astro-electronic.de/IMG_044.JPG

Michael


___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-user] Overlay fails in the middle of the video

2017-11-12 Thread Michael Koch

Hi all,

I'm trying to make a timelapse video from 145 images, which must first 
be cropped to quadratic size and then a circular mask must be overlaid. 
The overlay comes from a PNG image (black border with transparent 
circle). The video looks good in the first 4 or 5 seconds, but then the 
overlay disappears and doesn't come back until the end of the video. 
What's wrong with my command line? The console output is copied below.


Thanks,
Michael


F:\xxx>c:/ffmpeg/ffmpeg -framerate 10 -i IMG_%3d.jpg -i Circle_3648.png 
-filter_

complex "crop=ih:ih,overlay" -codec:v mpeg4 -q:v 2 -s 1000x1000 -y video.mp4
ffmpeg version N-88555-g6ea7711532 Copyright (c) 2000-2017 the FFmpeg 
developers


  built with gcc 7.2.0 (GCC)
  configuration: --enable-gpl --enable-version3 --enable-sdl2 
--enable-bzlib --e
nable-fontconfig --enable-gnutls --enable-iconv --enable-libass 
--enable-libblur
ay --enable-libfreetype --enable-libmp3lame --enable-libopenjpeg 
--enable-libopu
s --enable-libshine --enable-libsnappy --enable-libsoxr 
--enable-libtheora --ena
ble-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp 
--enable-lib
x264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma 
--enable-z
lib --enable-gmp --enable-libvidstab --enable-libvorbis --enable-cuda 
--enable-c
uvid --enable-d3d11va --enable-nvenc --enable-dxva2 --enable-avisynth 
--enable-l

ibmfx
  libavutil  56.  0.100 / 56.  0.100
  libavcodec 58.  1.100 / 58.  1.100
  libavformat    58.  0.102 / 58.  0.102
  libavdevice    58.  0.100 / 58.  0.100
  libavfilter 7.  0.101 /  7.  0.101
  libswscale  5.  0.101 /  5.  0.101
  libswresample   3.  0.101 /  3.  0.101
  libpostproc    55.  0.100 / 55.  0.100
Input #0, image2, from 'IMG_%3d.jpg':
  Duration: 00:00:14.50, start: 0.00, bitrate: N/A
    Stream #0:0: Video: mjpeg, yuvj422p(pc, bt470bg/unknown/unknown), 
5472x3648,

 10 tbr, 10 tbn, 10 tbc
Input #1, png_pipe, from 'Circle_3648.png':
  Duration: N/A, bitrate: N/A
    Stream #1:0: Video: png, pal8(pc), 3648x3648 [SAR 3780:3780 DAR 
1:1], 25 tbr

, 25 tbn, 25 tbc
Stream mapping:
  Stream #0:0 (mjpeg) -> crop
  Stream #1:0 (png) -> overlay:overlay
  overlay -> Stream #0:0 (mpeg4)
Press [q] to stop, [?] for help
[swscaler @ 0832d0a0] deprecated pixel format used, make sure 
you did se

t range correctly
[swscaler @ 0832d0a0] Warning: data is not aligned! This can 
lead to a s

peed loss
Output #0, mp4, to 'video.mp4':
  Metadata:
    encoder : Lavf58.0.102
    Stream #0:0: Video: mpeg4 (mp4v / 0x7634706D), yuv420p, 1000x1000, 
q=2-31, 2

00 kb/s, 10 fps, 10240 tbn, 10 tbc (default)
    Metadata:
  encoder : Lavc58.1.100 mpeg4
    Side data:
  cpb: bitrate max/min/avg: 0/0/20 buffer size: 0 vbv_delay: -1
frame=    1 fps=0.0 q=2.0 size= 256kB time=00:00:00.00 
bitrate=21403102.0kbi
frame=    5 fps=4.0 q=2.0 size=    2048kB time=00:00:00.40 
bitrate=41933.6kbits/
frame=    7 fps=4.0 q=2.0 size=    3072kB time=00:00:00.60 
bitrate=41936.8kbits/
frame=    9 fps=3.9 q=2.0 size=    4096kB time=00:00:00.80 
bitrate=41938.3kbits/
frame=   11 fps=3.8 q=2.0 size=    4864kB time=00:00:01.00 
bitrate=39842.3kbits/
frame=   13 fps=3.8 q=2.0 size=    5888kB time=00:00:01.20 
bitrate=40192.4kbits/
frame=   15 fps=3.8 q=2.0 size=    6912kB time=00:00:01.40 
bitrate=40442.5kbits/
frame=   17 fps=3.8 q=2.0 size=    7936kB time=00:00:01.60 
bitrate=40630.1kbits/
frame=   19 fps=3.7 q=2.0 size=    8960kB time=00:00:01.80 
bitrate=40775.9kbits/
frame=   21 fps=3.7 q=2.0 size=    9984kB time=00:00:02.00 
bitrate=40892.6kbits/
frame=   23 fps=3.7 q=2.0 size=   10752kB time=00:00:02.20 
bitrate=40034.9kbits/
frame=   25 fps=3.7 q=2.0 size=   11776kB time=00:00:02.40 
bitrate=40193.9kbits/
frame=   27 fps=3.7 q=2.0 size=   12544kB time=00:00:02.60 
bitrate=39521.9kbits/
frame=   29 fps=3.7 q=2.0 size=   13568kB time=00:00:02.80 
bitrate=39694.8kbits/
frame=   31 fps=3.7 q=2.0 size=   14336kB time=00:00:03.00 
bitrate=39145.7kbits/
frame=   33 fps=3.7 q=2.0 size=   15104kB time=00:00:03.20 
bitrate=38665.2kbits/
frame=   35 fps=3.7 q=2.0 size=   15872kB time=00:00:03.40 
bitrate=38241.2kbits/
frame=   37 fps=3.7 q=2.0 size=   16640kB time=00:00:03.60 
bitrate=37864.3kbits/
frame=   39 fps=3.7 q=2.0 size=   17664kB time=00:00:03.80 
bitrate=38079.0kbits/
frame=   41 fps=3.7 q=2.0 size=   18432kB time=00:00:04.00 
bitrate=37747.9kbits/
frame=   43 fps=3.7 q=2.0 size=   19200kB time=00:00:04.20 
bitrate=37448.4kbits/
[swscaler @ 084bf7a0] deprecated pixel format used, make sure 
you did se

t range correctly
[swscaler @ 085200a0] deprecated pixel format used, make sure 
you did se

t range correctly
frame=   46 fps=3.7 q=2.0 size=   20480kB time=00:00:04.50 
bitrate=37282.0kbits/
frame=   49 fps=3.8 q=2.0 size=   22016kB time=00:00:04.80 
bitrate=37573.3kbits/
frame=   52 fps=3.8 q=2.0 size=   23296kB time=00:00:05.10 
bitrate=37419.1kbits/
frame=   55 fps=3.9 q=2.0 size=   

Re: [FFmpeg-user] slideshow with crossfade

2017-11-07 Thread Michael Koch

Let me explain again what I want to do. I have 5 pictures:
1, 2, 3, 4, 5
I want to read these pictures with framerate 0.5 and then convert the 
framerate to 2, so that each picture is repeated 4 times:

1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5
As the last step I want to make the crossfadings with the framerate filter:
1x1, 1x1, 1x1, 1x2, 2x2, 2x2, 2x2, 2x3, 3x3, 3x3, 3x3, 3x4, 4x4, 4x4, 
4x4, 4x5, 5x5, 5x5, 5x5
The result is that each picture is shown for 1.5 seconds, followed by a 
0.5 second crossfade.


Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] slideshow with crossfade

2017-11-07 Thread Michael Koch
> Complete, uncut console output for the working and the failing case 
missing.



This is the console output for the working case (first zoompan filter, 
then framerate filter):


F:\xxx\Test_Crossfade>c:/ffmpeg/ffmpeg -i IMG_%3d.jpg -vf zoompan=d=
4:s=5472x3648:fps=2,framerate=25 -c:v mpeg4 -q:v 2 out.mp4
ffmpeg version N-88555-g6ea7711532 Copyright (c) 2000-2017 the FFmpeg 
developers


  built with gcc 7.2.0 (GCC)
  configuration: --enable-gpl --enable-version3 --enable-sdl2 
--enable-bzlib --e
nable-fontconfig --enable-gnutls --enable-iconv --enable-libass 
--enable-libblur
ay --enable-libfreetype --enable-libmp3lame --enable-libopenjpeg 
--enable-libopu
s --enable-libshine --enable-libsnappy --enable-libsoxr 
--enable-libtheora --ena
ble-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp 
--enable-lib
x264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma 
--enable-z
lib --enable-gmp --enable-libvidstab --enable-libvorbis --enable-cuda 
--enable-c
uvid --enable-d3d11va --enable-nvenc --enable-dxva2 --enable-avisynth 
--enable-l

ibmfx
  libavutil  56.  0.100 / 56.  0.100
  libavcodec 58.  1.100 / 58.  1.100
  libavformat    58.  0.102 / 58.  0.102
  libavdevice    58.  0.100 / 58.  0.100
  libavfilter 7.  0.101 /  7.  0.101
  libswscale  5.  0.101 /  5.  0.101
  libswresample   3.  0.101 /  3.  0.101
  libpostproc    55.  0.100 / 55.  0.100
Input #0, image2, from 'IMG_%3d.jpg':
  Duration: 00:00:00.20, start: 0.00, bitrate: N/A
    Stream #0:0: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 
5472x3648

[SAR 72:72 DAR 3:2], 25 tbr, 25 tbn, 25 tbc
File 'out.mp4' already exists. Overwrite ? [y/N] y
Stream mapping:
  Stream #0:0 -> #0:0 (mjpeg (native) -> mpeg4 (native))
Press [q] to stop, [?] for help
[Parsed_framerate_1 @ 0053a200] time base:1/2 -> 1/50 exact:1
[Parsed_framerate_1 @ 0053a200] fps -> fps:25/1 scene 
score:7.00 int

erpolate start:15 end:240
[swscaler @ 00554fe0] deprecated pixel format used, make sure 
you did se

t range correctly
[swscaler @ 06326de0] deprecated pixel format used, make sure 
you did se

t range correctly
Output #0, mp4, to 'out.mp4':
  Metadata:
    encoder : Lavf58.0.102
    Stream #0:0: Video: mpeg4 (mp4v / 0x7634706D), yuv420p, 5472x3648 
[SAR 1:1 D

AR 3:2], q=2-31, 200 kb/s, 25 fps, 12800 tbn, 25 tbc
    Metadata:
  encoder : Lavc58.1.100 mpeg4
    Side data:
  cpb: bitrate max/min/avg: 0/0/20 buffer size: 0 vbv_delay: -1
[swscaler @ 09283660] deprecated pixel format used, make sure 
you did se

t range correctly
[swscaler @ 00554fe0] deprecated pixel format used, make sure 
you did se

t range correctly
frame=    3 fps=0.0 q=2.0 size=    3584kB time=00:00:00.08 
bitrate=366648.5kbits
frame=    8 fps=7.2 q=2.0 size=    3840kB time=00:00:00.28 
bitrate=112317.4kbits
[swscaler @ 0966cd40] deprecated pixel format used, make sure 
you did se

t range correctly
frame=   13 fps=7.8 q=2.0 size=    7680kB time=00:00:00.48 
bitrate=131051.4kbits
frame=   18 fps=8.1 q=2.0 size=    7680kB time=00:00:00.68 
bitrate=92511.3kbits/
frame=   23 fps=8.2 q=2.0 size=    7680kB time=00:00:00.88 
bitrate=71487.9kbits/
[swscaler @ 0966cd40] deprecated pixel format used, make sure 
you did se

t range correctly
frame=   28 fps=8.3 q=2.0 size=   11520kB time=00:00:01.08 
bitrate=87375.3kbits/
frame=   33 fps=8.3 q=2.0 size=   11520kB time=00:00:01.28 
bitrate=73723.8kbits/
[swscaler @ 230b3c80] deprecated pixel format used, make sure 
you did se

t range correctly
frame=   38 fps=8.3 q=2.0 size=   15360kB time=00:00:01.48 
bitrate=85015.4kbits/
frame=   42 fps=8.2 q=2.0 size=   18432kB time=00:00:01.64 
bitrate=92065.9kbits/
frame=   46 fps=8.1 q=2.0 size=   23808kB time=00:00:01.80 
bitrate=108348.4kbits
[swscaler @ 230b3c80] deprecated pixel format used, make sure 
you did se

t range correctly
frame=   50 fps=8.0 q=2.0 size=   30720kB time=00:00:01.96 
bitrate=128392.1kbits
frame=   55 fps=8.0 q=2.0 size=   32000kB time=00:00:02.16 
bitrate=121358.7kbits
frame=   60 fps=8.0 q=2.0 size=   32000kB time=00:00:02.36 
bitrate=111074.4kbits
[swscaler @ 231b2c80] deprecated pixel format used, make sure 
you did se

t range correctly
frame=   65 fps=8.1 q=2.0 size=   36096kB time=00:00:02.56 
bitrate=115503.8kbits
frame=   70 fps=8.2 q=2.0 size=   36096kB time=00:00:02.76 
bitrate=107134.2kbits
[swscaler @ 231b2c80] deprecated pixel format used, make sure 
you did se

t range correctly
frame=   75 fps=8.2 q=2.0 size=   40192kB time=00:00:02.96 
bitrate=111231.3kbits
frame=   80 fps=8.2 q=2.0 size=   40192kB time=00:00:03.16 
bitrate=104191.5kbits
frame=   85 fps=8.3 q=2.0 size=   44032kB time=00:00:03.36 
bitrate=107351.8kbits
[swscaler @ 231b2c80] deprecated pixel format used, make sure 
you did se

t range correctly
frame=   89 fps=8.2 q=2.0 size=   44032kB time=00:00:03.52 
bitrate=102472.3kbits

Re: [FFmpeg-user] slideshow with crossfade

2017-11-06 Thread Michael Koch

/ffmpeg -framerate 0.5 -i IMG_%3d.jpg -r 2 -codec:v mpeg4 temp.mp4 />>/ffmpeg -i temp.mp4 
-vf "framerate=fps=25" -codec:v mpeg4 out.mp4 /

You should be able to combine the command lines using the fps filter.


I did already try that, but unfortunately it doesn't work. I did try this 
command line:

ffmpeg -framerate 0.5 -i IMG_%3d.jpg -fv fps=2,framerate=25 -c:v mpeg4 out.mp4

The first picture is correctly shown for 1.5 seconds, followed by a crossfade.
But for all subsequent pictures, when the crossfade ends, the next crossfade 
begins immediately.

Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-user] slideshow with crossfade

2017-11-05 Thread Michael Koch
I just figured out how to make a slideshow with crossfade. It's a two 
step process. The first step reads the pictures with framerate 0.5 
(which means 2 seconds for each picture), and produces an intermediate 
video with framerate 2. That means each picture is repeated 4 times. The 
second step applies the framerate filter. In the output video each 
picture is shown for 1.5 seconds, followed by a 0.5 second crossfade.


ffmpeg -framerate 0.5 -i IMG_%3d.jpg -r 2 -codec:v mpeg4 temp.mp4
ffmpeg -i temp.mp4 -vf "framerate=fps=25" -codec:v mpeg4 out.mp4

This two step process works fine, but I have two questions:
1. Is it also possible to get the same result in one step, without an 
intermediate video file?
2. If the answer to the first question is no, can someone please show me 
how the above commands must be modified for a lossless intermediate 
file, for example RAWVIDEO?


Thanks,
Michael
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [openssl-dev] [openssl.org #4690] Bug in OpenSSL 1.0.2j ssl_accept

2016-09-28 Thread Michael Koch via RT
Hallo Steve,

since the output comes from an in production system, we doesn't have 
debugging symbols there. I'll try to setup a second machine with the 
same configuration and use debugging symbols there.

Before upgrading to 1.0.2j we use 1.02h-r2 (each marked as "stable" in 
Gentoo portage tree).

The problem only comes sometimes (not reconstruteable).

Michael


Am 28.09.2016 um 23:15 schrieb Stephen Henson via RT:
> On Wed Sep 28 19:44:49 2016, mich...@michsoft.de wrote:
>> In addition to my message I send you my gdb backtrace:
>>
>> Program received signal SIGSEGV, Segmentation fault.
>> [Switching to Thread 0x71413700 (LWP 13663)]
>> 0x76ba4e87 in sk_value () from /usr/lib64/libcrypto.so.1.0.0
>> (gdb) backtrace
>> #0 0x76ba4e87 in sk_value () from /usr/lib64/libcrypto.so.1.0.0
>> #1 0x76ef0ca0 in ssl3_get_client_hello () from
>> /usr/lib64/libssl.so.1.0.0
>> #2 0x76ef506f in ssl3_accept () from /usr/lib64/libssl.so.1.0.0
>> #3 0x76f04acf in ssl23_accept () from /usr/lib64/libssl.so.1.0.0
>> #4 0x779cafca in Thread_MCS_Networking_Listen (arg=0x6a2270) at
>> ./mcs_networking_threads.cpp:222
>> #5 0x7714c444 in start_thread () from /lib64/libpthread.so.0
>> #6 0x758fc4cd in clone () from /lib64/libc.so.6
>> (gdb)
>>
>>
>> It seems as if the crash happens in "sk_value()".
>>
> Which version of OpenSSL were you using before which didn't crash?
>
> Can you provide a backtrace with debugging symbols enabled?
>
> Steve.
> --
> Dr Stephen N. Henson. OpenSSL project core developer.
> Commercial tech support now available see: http://www.openssl.org
>


-- 
Mit freundlichem Gruß

Michael Koch


MichSoft Consulting
Pappelweg 7
D - 29664 Walsrode

eMail michael.k...@michsoft.de
Internet http://www.michsoft.de

Phone  +49 (0) 5161 / 94 94 83 - 0
Fax+49 (0) 5161 / 94 94 83 - 5


Umsatzsteuer Identifikationsnummer
nach § 27 Umsatzsteuergesetz: DE 41 123 05752


Diese Information ist ausschliesslich fuer den Adressaten bestimmt und kann 
vertraulich oder gesetzlich geschuetzte Informationen enthalten. Wenn Sie nicht 
der bestimmungsgemaesse Adressat sind, unterrichten Sie bitte den Absender und 
vernichten Sie diese Mail. Anderen als dem bestimmungsgemaessen Adressaten ist 
es untersagt, diese E-Mail zu lesen, zu speichern, weiterzuleiten oder ihren 
Inhalt auf welche Weise auch immer zu verwenden. Wir verwenden aktuelle 
Virenschutzprogramme. Fuer Schaeden, die dem Empfaenger gleichwohl durch von 
uns zugesandte mit Viren befallene E-Mails entstehen, schliessen wir jede 
Haftung aus.

The information contained in this email is intended only for its addressee and 
may contain confidential and/or privileged information. If the reader of this 
email is not the intended recipient, you are hereby notified that reading, 
saving, distribution or use of the content of this email in any way is 
prohibited. If you have received this email in error, please notify the sender 
and delete the email. We use updated antivirus protection software. We do not 
accept any responsibility for damages caused anyhow by viruses transmitted via 
email.


-- 
Ticket here: http://rt.openssl.org/Ticket/Display.html?id=4690
Please log in as guest with password guest if prompted

-- 
openssl-dev mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev


[openssl-dev] [openssl.org #4689] Fwd: Bug in OpenSSL 1.0.2j ssl_accept

2016-09-28 Thread Michael Koch via RT
In addition to my message I send you my gdb backtrace:



Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x71413700 (LWP 13663)]
0x76ba4e87 in sk_value () from /usr/lib64/libcrypto.so.1.0.0
(gdb) backtrace
#0  0x76ba4e87 in sk_value () from /usr/lib64/libcrypto.so.1.0.0
#1  0x76ef0ca0 in ssl3_get_client_hello () from 
/usr/lib64/libssl.so.1.0.0
#2  0x76ef506f in ssl3_accept () from /usr/lib64/libssl.so.1.0.0
#3  0x76f04acf in ssl23_accept () from /usr/lib64/libssl.so.1.0.0
#4  0x779cafca in Thread_MCS_Networking_Listen (arg=0x6a2270) at 
./mcs_networking_threads.cpp:222
#5  0x7714c444 in start_thread () from /lib64/libpthread.so.0
#6  0x758fc4cd in clone () from /lib64/libc.so.6
(gdb)


It seems as if the crash happens in "sk_value()".



 Weitergeleitete Nachricht 
Betreff:Bug in OpenSSL 1.0.2j ssl_accept
Datum:  Wed, 28 Sep 2016 21:07:48 +0200
Von:    Michael Koch <mich...@michsoft.de>
Organisation:   MichSoft Consulting
An: r...@openssl.org



Hello,

on our Webserver Management Software, based von Gentoo Linux, den XML
REST Service which uses the OpenSSL Client library periodically crashed
with Signal 11 on ssl_accept since we have updated to Openssl 1.0.2j two
days ago.

Best regards from Germany.

-- 
Mit freundlichem Gruß

Michael Koch


MichSoft Consulting
Pappelweg 7
D - 29664 Walsrode

eMail michael.k...@michsoft.de
Internet http://www.michsoft.de

Phone  +49 (0) 5161 / 94 94 83 - 0
Fax+49 (0) 5161 / 94 94 83 - 5


Umsatzsteuer Identifikationsnummer
nach § 27 Umsatzsteuergesetz: DE 41 123 05752


Diese Information ist ausschliesslich fuer den Adressaten bestimmt und kann 
vertraulich oder gesetzlich geschuetzte Informationen enthalten. Wenn Sie nicht 
der bestimmungsgemaesse Adressat sind, unterrichten Sie bitte den Absender und 
vernichten Sie diese Mail. Anderen als dem bestimmungsgemaessen Adressaten ist 
es untersagt, diese E-Mail zu lesen, zu speichern, weiterzuleiten oder ihren 
Inhalt auf welche Weise auch immer zu verwenden. Wir verwenden aktuelle 
Virenschutzprogramme. Fuer Schaeden, die dem Empfaenger gleichwohl durch von 
uns zugesandte mit Viren befallene E-Mails entstehen, schliessen wir jede 
Haftung aus.

The information contained in this email is intended only for its addressee and 
may contain confidential and/or privileged information. If the reader of this 
email is not the intended recipient, you are hereby notified that reading, 
saving, distribution or use of the content of this email in any way is 
prohibited. If you have received this email in error, please notify the sender 
and delete the email. We use updated antivirus protection software. We do not 
accept any responsibility for damages caused anyhow by viruses transmitted via 
email.


-- 
Ticket here: http://rt.openssl.org/Ticket/Display.html?id=4689
Please log in as guest with password guest if prompted

-- 
openssl-dev mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev


Re: [FFmpeg-user] fun with windows cmd and ffmpeg wildcards

2016-05-17 Thread Michael Koch



Great, I thought, and since I will need a days worth of pictures (1 every
minute gives 1440 pictures) I'll rename them 0601.jpg to 1200.jpg and try

ffmpeg.exe -r 30 -i C:\Users\kostas\Documents\cams\timelapse\test2\%04d.jpg
timelapse9.mp4


You forgot to specify  -start_number 601

Michael
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] Convert gif to mp4 using ffmpeg

2016-03-10 Thread Michael Koch

Thanks for advice, I've tried running the following command, but I get an
error as follows:

./ffmpeg -framerate 25 -pattern_type glob -i
/root/video-source/gif/yeay.gif /root/video-source/gif/outgif/outyeay.mp4


Do you have many gif images, or do you have one animated gif?
The answer from Moritz was for many gif images.

Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] lenscorrection and vignette filters

2016-02-24 Thread Michael Koch

Please consider sending a patch that updates the documentation.


I recommend to make the following changes in chapter 38.73.1:

The filter accepts the following options:

cx

   Relative x-coordinate of the center of the distortion. This value
   has a range [0,1] and is expressed as fractions of the image width.
   The default value is 0.5.

cy

   Relative y-coordinate of the center of the distortion. This value
   has a range [0,1] and is expressed as fractions of the image height.
   The default value is 0.5.

k1

   Coefficient of the quadratic correction term. 0 means no correction.
   The default value is 0. A positive value shifts the border towards
   the center, and the new border of the output image is filled with an
   unpredictable color. A negative value shifts the border away from
   the center, so that some content is lost in the output image.

k2

   Coefficient of the double quadratic correction term. 0 means no
   correction. The default value is 0.

This is the formula that describes the distortion of the lens:

r_img = r_src * (1 + k1 * (r_src / r_0)^2 + k2 * (r_src / r_0)^4)

where r_img is the distance from the center of distortion in the 
distorted image, r_src is the distance from the center of distortion in 
object space and r_0 is halve of the image diagonal in object space. The 
lenscorrection filter does apply the inverse of the above formula.


Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] lenscorrection and vignette filters

2016-02-23 Thread Michael Koch

Am 23.02.2016 um 18:51 schrieb Michael Koch:

r_src is the radial coordinate in object space.
r_tgt is the radial coordinate in the image, which was taken with a 
distorted lens. 


Sorry, I confused these two. This is correct:
r_tgt is the radial coordinate in object space.
r_src is the radial coordinate in the image, which was taken with a 
distorted lens. this was wrong.


Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] lenscorrection and vignette filters

2016-02-23 Thread Michael Koch

Am 23.02.2016 um 10:00 schrieb Michael Koch:



I found a bug in the documentation of the lenscorrection filter:
https://www.ffmpeg.org/ffmpeg-all.html#lenscorrection

It's written there "0.5 means no correction" for the coefficients k1 
and k2.
This can't be right, or the formula is wrong. It's obvious that the 
formula makes no correction if k1=k2=0.


The remarks "0.5 means no correction" in the documentation are wrong. 
This can easily be tested:


ffmpeg -i input.png -vf lenscorrection=k1=0.5:k2=0.5 output.png
It's clearly visible that the output is not the same as the input.

ffmpeg -i input.png -vf lenscorrection=k1=0:k2=0 output.png
Now the output is the same as the input. It is clear that 0 means no 
correction.


But unfortunately this isn't the only error in the documentation. I 
haven't yet found out which formula is actually used in the 
lenscorrection filter, but one thing is absolutely sure: It's not the 
formula from the documentation.




After spending many hours with this problem, finally I figured out 
what's going on.

This is the formula from the documentation:
r_src = r_tgt * (1 + k1 * (r_tgt / r_0)^2 + k2 * (r_tgt / r_0)^4)

The formula is correct, but it must be clarified that it describes the 
behaviour of the lens. It does not describe the behaviour of the 
lenscorrection filter.

r_src is the radial coordinate in object space.
r_tgt is the radial coordinate in the image, which was taken with a 
distorted lens.


The behaviour of the lenscorrection filter can be described by the 
inverse of the above function.
However the inverse function is difficult to derive. For the simplified 
case k2=0 I found a solution:
r_tgt = 2 * sqrt(1 / (3 * k1)) * sinh(arcsinh(r_src / (2 * k1 * sqrt(1 / 
(3 * k1)) ^ 3)) / 3)


Michael
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] alternating two images

2016-02-12 Thread Michael Koch


ffmpeg -r 1 -loop 1 -i cherry-left.jpg -r 1 -loop 1 -i
cherry-right.jpg -lavfi
[0:v]setpts=N*2[a],[1:v]setpts=N*2+1[b],[a][b]interleave /tmp/o.nut


I didn't understand the meaning of the output path, but finally I got it 
working after I replaced


/tmp/o.nut

by

-t 10 -r 4 test.mp4

Thanks,
Michael
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] deep zoom-in

2016-02-07 Thread Michael Koch




2. It would be nice to have an expression for a lookup table, for example

lookup(x, y0, y1, y2, ... , z)

   Evaluate x, and if the result is 0 return y0, if the result is 1
   return y1, and so on, else if the result is out of range return z.




I found a workaround for a lookup table. The following example makes a 
slideshow where each picture is shown 1 second (25 frames), except the 
3rd picture is shown 3 seconds (25+50 frames) and the 5th picture is 
shown 5 seconds (25+100 frames).


ffmpeg -start_number 400 -i IMG_%%4d.jpg ^
-vf "zoompan=d=25+'if(eq(in,3),50,0)'+'if(eq(in,5),100,0)'" ^
-c:v mpeg4 -s 1800x1200 -b:v 5M -q:v 2 test.mp4

Maybe it's useful to add this example to the documentation of the 
zoompan filter.


Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] deep zoom-in

2016-02-06 Thread Michael Koch

Paul,


Something like this:

zoompan=zoom='if(mod(in\,40)\,zoom\,0)+0.01':d=40:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'


thank you very much for this hint. The _in_ parameter does indeed work. 
With this parameter it's for example possible to make a slideshow and 
specify different durations for each image.


I'd like to make two suggestions for improvement:

1. Please add to the documentation that _in_ is 1 (not 0) for the first 
picture.

https://www.ffmpeg.org/ffmpeg-all.html#zoompan

2. It would be nice to have an expression for a lookup table, for example

lookup(x, y0, y1, y2, ... , z)

   Evaluate x, and if the result is 0 return y0, if the result is 1
   return y1, and so on, else if the result is out of range return z.

Michael
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


[FFmpeg-user] deep zoom-in

2016-02-04 Thread Michael Koch

Hi all,

I'd like to make a deep zoom-in from several images. For example, begin 
with image1 (which was taken with a 50mm objective) and use the zoompan 
filter to make a 5 seconds zoom-in from 1x to 4x, then use image2 (taken 
with a 200mm objective) and continue to zoom in, and so on. There may be 
a different duration required for each image.

Is it possible to do this in _one_ command line?
Or must I make several videos and concat them? If this is the way to go, 
which is the recommended file format for the intermediate videos?


Thanks,
Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


[FFmpeg-user] lenscorrection and vignette filters

2016-02-02 Thread Michael Koch

Hi all,

I found a bug in the documentation of the lenscorrection filter:
https://www.ffmpeg.org/ffmpeg-all.html#lenscorrection

It's written there "0.5 means no correction" for the coefficients k1 and 
k2.
This can't be right, or the formula is wrong. It's obvious that the 
formula makes no correction if k1=k2=0.


For positive k1 and k2, r_tgt is always smaller than r_src. That means 
in the target image there are undefined pixels at the edges. Which color 
is used to fill these pixels? There should be a "fillcolor" parameter as 
in the rotate filter.


Other question:
Which formula is used for the vignette filter?

Thanks,
Michael
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] ffmpeg for creting video from images

2016-01-27 Thread Michael Koch

Am 27.01.2016 um 13:21 schrieb pra...@devrepublic.nl:
  


Hi Carl,

I am running this command

ffmpeg -framerate 1/5 -pattern_type glob -i
'/home/devprj01/domains/devrepublic-projects.nl/public_html/development/houseview2/uploads/projects/52/images/temp/*.jpg'
-i
'/home/devprj01/domains/devrepublic-projects.nl/public_html/development/houseview2/uploads/templatemp3/3/Then
A Kiss.mp3' -c:v libx264 -vf 'scale=trunc(iw/2)*2:trunc(ih/2)*2'
-pix_fmt yuv420p -c:a aac -strict experimental -shortest
/home/devprj01/domains/devrepublic-projects.nl/public_html/development/houseview2/uploads/projects/52/videos/vid27-01-2016_13-16-26.mp4


Is your audio file long enough?
A too short audio file would explain the problem, because you are using 
"-shortest".


Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] ffmpeg for creting video from images

2016-01-27 Thread Michael Koch



so if folder has 4 image the video must be 20 secs but right now it is
creating 16 seconds last image is only displaying only 1 sec.


you could try a workaround:
Duplicate the last picture so that you have 5 pictures in the folder, 
make a video which is 21 seconds long, then cut off the last second.


Michael


--
**
  ASTRO ELECTRONIC   Dipl.-Ing. Michael Koch
   Raabestr. 43   37412 Herzberg
  www.astro-electronic.de
  Tel. +49 5521 854265   Fax +49 5521 854266
**

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


[FFmpeg-user] Suggestion for improvement, Video in reverse order

2016-01-22 Thread Michael Koch

Hi all,

I'd like to make a suggestion for improvement. It's easy to make a video 
from many pictures, but it's difficult to make a video which runs in 
reverse order. I propose a new parameter "-number_decrease" which tells 
ffmpeg to decrease the file number, instead of increasing it.


Example:
ffmpeg -start_number 100 -number_decrease -i 'IMG-%03d.jpg' out.mkv

In this example the file names would be IMG-100.jpg  IMG-099.jpg 
IMG-098.jpg  and so on.


Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] flame about confusing command line options.

2016-01-05 Thread Michael Koch


As mentioned, documentation improvements are *always* welcome. 


I agree with Roger that for a beginner FFmpeg's documentation leaves 
many questions unanswered. It would be great to have more details and 
especially more examples in the documentation.
Many questions are answered in this user list, but later it's difficult 
to find these answers. So the same questions are asked again and again.
For many questions, it might be better not to answer them here. Instead, 
please add the answers to the documentation and then just post a link.


Michael
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] flame about confusing command line options.

2016-01-05 Thread Michael Koch





For example, Harald Reindl just wrote:
"and when you specify something twice the right one wins"

Is this already in the FFmpeg documentation?


that's common sense


for you, but not for a beginner.

Michael
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] flame about confusing command line options.

2016-01-05 Thread Michael Koch




What part of this mailing list thread is not
documented in your opinion?


For example, Harald Reindl just wrote:
"and when you specify something twice the right one wins"

Is this already in the FFmpeg documentation?

Michael
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] flame about confusing command line options.

2016-01-05 Thread Michael Koch




well, then i ask the question different

"--width=600 --width=300" - what would you expect?



before I saw your answer, it was unclear to me if it's 300 or 600.

Michael
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] timelapse framerates

2015-12-29 Thread Michael Koch

ffmpeg -framerate 25 -start_number 1 -i IMG_%4d.jpg
-codec:v mpeg4 output.mp4

Please understand that you are expected to always
post your command line including the complete,
uncut console output on this mailing list.


The above command line does exactly what it's supposed to do.
Let's assume I have 250 input pictures. With framerate 25, the video 
length is 10 seconds.


My questions (with other words) are:
How must I modify the command line, if I want a video with framerate 25, 
but 20 seconds long? That means each picture must be used twice: 
1,1,2,2,3,3,4,4, ...
How must I modify the command line, if I want a video with framerate 25, 
but only 5 seconds long? That means all pictures with even numbers must 
be skipped: 1,3,5,7,9, ...


Thanks,
Michael
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] timelapse framerates

2015-12-29 Thread Michael Koch



ffmpeg -framerate 25 -start_number 1 -i IMG_%4d.jpg
-codec:v mpeg4 output.mp4

Please understand that you are expected to always
post your command line including the complete,
uncut console output on this mailing list.


The above command line does exactly what it's supposed to do.
Let's assume I have 250 input pictures. With framerate 25, the video 
length is 10 seconds.


Related question: Can ffmpeg make a video faster or slower, while 
keeping the framerate the same as before?


Michael

--
**
  ASTRO ELECTRONIC   Dipl.-Ing. Michael Koch
   Raabestr. 43   37412 Herzberg
  www.astro-electronic.de
  Tel. +49 5521 854265   Fax +49 5521 854266
**

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


[FFmpeg-user] timelapse framerates

2015-12-29 Thread Michael Koch

Hi all,

I have a few questions about making timelapse videos from many pictures. 
The following command makes a video with framerate 25 and works as expected:
ffmpeg -framerate 25 -start_number 123 -i IMG_%4d.jpg -codec:v mpeg4 
output.mp4


My questions:
1. Is it possible to make a video with different input and output 
framerates? For example, using each input picture twice? I mean without 
duplicating and renaming the the input pictures.
2. Is that also possible for arbitrary input and output framerates? 
(i.e. output framerate is not an even multiple of input framerate) ?
3. Is it also possible to make the output framerate bigger than the 
input framerate, which means some of the input pictures are skipped?


Thanks,
Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] New user want to use ffmpeg in asp.net

2015-12-17 Thread Michael Koch



* why do you pretend that one can't copy console
  outout on windows?



Can you please explain how console output on Windows can be copied? I 
also don't know how to do that. It doesn't work with ctrl-c


Thanks,
Michael

--
**
  ASTRO ELECTRONIC   Dipl.-Ing. Michael Koch
   Raabestr. 43   37412 Herzberg
  www.astro-electronic.de
  Tel. +49 5521 854265   Fax +49 5521 854266
**

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


[FFmpeg-user] expression in drawtext / text

2015-11-14 Thread Michael Koch

Hi,

I'm making a timelapse video from many JPG pictures, and I'd like to use 
drawtext to print the time in each picture. Let's assume the pictures 
were taken with 5 seconds interval.  The following command works almost 
as expected and prints the seconds modulo 60:


text=%%{e\:mod(5*n,60)}

The double "%%" is only required because this is in a Windows batch file.

My questions:

1. How can I avoid that the number is printed as floating point? I want 
only an integer.


2. How can I print some text before or after the number?

3. Is it possible to use the time from the exif data of the JPG pictures?

Thanks,
Michael
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] expression in drawtext / text

2015-11-14 Thread Michael Koch

I have solved the problem myself. Only question 3 remains:
Is it possible to use the time from the exif data of the JPG pictures?

My solution is below.

set "FONTFILE=courbd.ttf"
set "COLOR=white"
set "BOXCOLOR=black"
set "SIZE=30"
set "POSITION_X=0"
set "POSITION_Y=(h-th)"
set "S=72060"  : timestamp of first picture in seconds
set "I=8"  : Interval in seconds

drawtext='fontfile=%FONTFILE%:text=%%{eif\:mod((%S%+%I%*n)/3600,24)\:'d'\:2}"\:"%%{eif\:mod((%S%+%I%*n)/60,60)\:'d'\:2}"\:"%%{eif\:mod(%S%+%I%*n,60)\:'d'\:2}:fontcolor=%COLOR%:boxcolor=%BOXCOLOR%:box=1:fontsize=%SIZE%:x=%POSITION_X%:y=%POSITION_Y%'

Michael

--
**
  ASTRO ELECTRONIC   Dipl.-Ing. Michael Koch
   Raabestr. 43   37412 Herzberg
  www.astro-electronic.de
  Tel. +49 5521 854265   Fax +49 5521 854266
**

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


[FFmpeg-user] acv file for curves filter

2015-11-02 Thread Michael Koch

Hi all,

I've just tested the "curves" filter. It works fine with a *.acv file 
which was created by Photoshop.


ffmpeg -i input.jpg -vf curves=psfile="curves.acv" output.jpg

But it fails when I try to make the *.acv file with GIMP. Is it possible 
to export the *.acv file from GIMP ?


Thanks,
Michael

--
**
  ASTRO ELECTRONIC   Dipl.-Ing. Michael Koch
   Raabestr. 43   37412 Herzberg
  www.astro-electronic.de
  Tel. +49 5521 854265   Fax +49 5521 854266
**

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] acv file for curves filter

2015-11-02 Thread Michael Koch

Michael, please stop "highjacking" threads. You are replying to emails
in the thread and changing the subject. This will a) make your emails
appear under other thread topics, and b) be seen as impolite.


Sorry, that wasn't intended. I've sent it again as a new email. I hope 
it's correct now.


Michael
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


[FFmpeg-user] read in pictures in reverse order

2015-11-01 Thread Michael Koch
When making a video from many pictures, is it possible to read in the 
pictures in reverse order, beginning with the last picture?
If this is not possible, how can I rename the pictures automatically to 
bring them in reverse order?


Thanks,
Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


[FFmpeg-user] scaling algorithms

2015-10-17 Thread Michael Koch

Hi all,

I have some questions about the scaling algorithms in FFmpeg.
https://www.ffmpeg.org/ffmpeg-scaler.html#sws_005fflags

1. Which is the default algorithm?

2. I have many pictures with resolution 5472x3648, which are combined to 
make a video with resolution 1800x1200. Any pixel in the video must be 
calculated from 3x3 pixels in the input pictures.
The input pictures contain stars in the night sky which are slowly 
moving. Most stars are so small that they are just one pixel.
If I use a "nearest neighbor" algorithm, then the star will blink on-off 
in the video.
If I use any averaging algorithm, then the contrast will go down because 
the star is averaged with the dark neighbor pixels.
Which is the best algorithm in this case? I need something like the 
maximum value out of the 3x3 neighborhood.


3. Please improve the documentation. For example: ‘experimental’ Select 
experimental scaling algorithm.

Wow, that sounds interesting, but what does it do?

Thanks,
Michael


   -- 
   **

  ASTRO ELECTRONIC   Dipl.-Ing. Michael Koch
   Raabestr. 43   37412 Herzberg
  www.astro-electronic.de
  Tel. +49 5521 854265   Fax +49 5521 854266
   **

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] scaling algorithms

2015-10-17 Thread Michael Koch
> That looks like the job for the filter, see inflate, deflate, erosion 
and dilation filters.


I just tested the dilation filter. It's a nice workaround if the 
downscaling factor is 3:1, as in my example. But if the downscaling 
factor is smaller, for example from 5472x3648 to 900x600, which is 6:1, 
then it fails. The star would be visible in 50% of the frames and 
invisible in the other 50%. What I need is a scaling algorithm which 
automatically chooses the brightest pixel out of the corresponding 
pixels from the input file. If the downscaling factor is 6:1, then the 
neighborhood is 6x6 pixels.


Michael
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] drawtext with dynamic fontcolor

2015-09-24 Thread Michael Koch

Am 24.09.2015 um 19:16 schrieb chandra sheker:

Hi Michael,

you can use this command.

ffmpeg -i temp.mp4
-filter_complex "[0:v]drawtext=fontfile=arial.ttf: text='TEST':
fontcolor=#00@0.40: fontsize=200"
-codec:v mpeg4 out.mp4
​The transparency 40% (fontcolor=#00@0.40)​

​Chandu​


Hi Chandu,

that's not what I want. I want a dynamic expression for the 
transparency. The constant will later be replaced by a more complicated 
expression (for example a function of time, for slowly fading the text 
in and out).


Michael
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


[FFmpeg-user] drawtext with dynamic fontcolor

2015-09-24 Thread Michael Koch

Hello all,

I'm new to this list and have a question about drawtext with dynamic 
fontcolor.


The first example doesn't contain dynamic fontcolor and is working as 
expected.
It superimposes some text over the video with black color and 25% 
transparency:


ffmpeg -i temp.mp4 ^
-vf 
drawtext='fontfile=arial.ttf:text="TEST":fontcolor_expr=0x00@0x40:fontsize=200' 
^

-codec:v mpeg4 out.mp4

Now I replace
  fontcolor_expr=0x00@0x40
by
  fontcolor_expr=0x00@0x%%{e:40}

Please note that the "%" character is escaped because I'm starting 
ffmpeg from a windows batch file.
Of course the constant doesn't make much sense -- I will replace it 
later by a more complicated expression.

But the constant 40 is a valid expression, isn't it?
The problem is that obviously the syntax isn't accepted by ffmpeg. 
What's wrong with it?

Can you please give me an example for dynamic fontcolor with correct syntax?

Thanks,
Michael

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Creating a Swap File - wrong parameter

2015-08-16 Thread Michael Koch
Hello FreeBSD team,

i found a little problem in the documentation.

On https://www.freebsd.org/doc/handbook/adding-swap-space.html, in
Example 12.2. in the 4th point you list the command 'swapon -aq'.
But this just doesn't work.
After some research someone at
https://lists.freebsd.org/pipermail/freebsd-current/2013-October/046056.html
pointed out that an entry in the /etc/fstab with file= automatically
implies the late option.
So the right command in the docs should be '*swapon -aL*', which mounts
swap entries which have the late option set.

Tested on the latest version of FreeBSD 10.0.

Sincerely,
Michael Koch

PS: I love FreeBSD, great work.
___
freebsd-doc@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-doc
To unsubscribe, send any mail to freebsd-doc-unsubscr...@freebsd.org


[Phpmyadmin-git] [phpmyadmin/localized_docs] 47342a: Translated using Weblate (German)

2014-10-12 Thread Michael Koch
  Branch: refs/heads/master
  Home:   https://github.com/phpmyadmin/localized_docs
  Commit: 47342a219b40ceecb522806fb0c3aac0be0282c9
  
https://github.com/phpmyadmin/localized_docs/commit/47342a219b40ceecb522806fb0c3aac0be0282c9
  Author: Michael Koch michael.k...@enough.de
  Date:   2014-10-13 (Mon, 13 Oct 2014)

  Changed paths:
M po/de.mo
M po/de.po

  Log Message:
  ---
  Translated using Weblate (German)

Currently translated at 8.4% (140 of 1656 strings)

[CI skip]


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://p.sf.net/sfu/Zoho___
Phpmyadmin-git mailing list
Phpmyadmin-git@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/phpmyadmin-git


[Bug 1094958] Re: User Management crashes on start up

2014-08-08 Thread Michael Koch
Works on 14.04 without crashing.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1094958

Title:
  User Management crashes on start up

To manage notifications about this bug go to:
https://bugs.launchpad.net/kdeadmin/+bug/1094958/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 583430] Re: kubuntu userconfig can silently delete group membership, causing loss of privileges

2014-08-08 Thread Michael Koch
Fixed by commenting out two lines containing
self.userobj.removeFromGroup(origprimarygroup) in user_dialogs.py.

** Attachment added: userconfig_0.9.1-1.deb
   
https://bugs.launchpad.net/ubuntu/+source/userconfig/+bug/583430/+attachment/4172545/+files/userconfig_0.9.1-1.deb

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/583430

Title:
  kubuntu userconfig can silently delete group membership, causing loss
  of privileges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/userconfig/+bug/583430/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 583430] Re: kubuntu userconfig can silently delete group membership, causing loss of privileges

2014-08-08 Thread Michael Koch
The fixed version is on my PPA, which can be found here:
https://launchpad.net/~mik32120/+archive/ubuntu/userconfig-fixed

Currently, there's only a build for Trusty, but I'll test the package on
Precise and upload a package for Precise if it works.

** Attachment removed: userconfig_0.9.1-1.deb
   
https://bugs.launchpad.net/ubuntu/+source/userconfig/+bug/583430/+attachment/4172545/+files/userconfig_0.9.1-1.deb

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/583430

Title:
  kubuntu userconfig can silently delete group membership, causing loss
  of privileges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/userconfig/+bug/583430/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 583430] Re: kubuntu userconfig can silently delete group membership, causing loss of privileges

2014-08-08 Thread Michael Koch
Fixed version is on https://launchpad.net/~mik32120/+archive/ubuntu
/userconfig-fixed

** Changed in: userconfig (Ubuntu)
   Status: Confirmed = Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/583430

Title:
  kubuntu userconfig can silently delete group membership, causing loss
  of privileges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/userconfig/+bug/583430/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 583430] Re: kubuntu userconfig can silently delete group membership, causing loss of privileges

2014-08-08 Thread Michael Koch
Fixed version is on https://launchpad.net/~mik32120/+archive/ubuntu
/userconfig-fixed

** Changed in: userconfig (Ubuntu)
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/583430

Title:
  kubuntu userconfig can silently delete group membership, causing loss
  of privileges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/userconfig/+bug/583430/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 451746] Re: Password verification box is missing

2014-08-08 Thread Michael Koch
Fixed version is on https://launchpad.net/~mik32120/+archive/ubuntu
/userconfig-fixed

** Changed in: userconfig (Ubuntu)
   Status: Triaged = Fix Released

** Changed in: userconfig (Ubuntu)
 Assignee: Yuriy Kozlov (yuriy-kozlov) = Michael Koch (mik32120)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/451746

Title:
  Password verification box is missing

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/userconfig/+bug/451746/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102588] Re: Password-changed date does not update after password is changed

2014-08-08 Thread Michael Koch
Fixed version is on https://launchpad.net/~mik32120/+archive/ubuntu
/userconfig-fixed

** Changed in: userconfig (Ubuntu)
   Status: Triaged = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/102588

Title:
  Password-changed date does not update after password is changed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/userconfig/+bug/102588/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 250087] Re: New users must change password despite other configuration

2014-08-08 Thread Michael Koch
Fixed version is on https://launchpad.net/~mik32120/+archive/ubuntu
/userconfig-fixed

** Changed in: userconfig (Ubuntu)
   Status: Confirmed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/250087

Title:
  New users must change password despite other configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/userconfig/+bug/250087/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1094958] Re: User Management crashes on start up

2014-08-08 Thread Michael Koch
Works on 14.04 without crashing.

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to userconfig in Ubuntu.
https://bugs.launchpad.net/bugs/1094958

Title:
  User Management crashes on start up

To manage notifications about this bug go to:
https://bugs.launchpad.net/kdeadmin/+bug/1094958/+subscriptions

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 583430] Re: kubuntu userconfig can silently delete group membership, causing loss of privileges

2014-08-08 Thread Michael Koch
Fixed version is on https://launchpad.net/~mik32120/+archive/ubuntu
/userconfig-fixed

** Changed in: userconfig (Ubuntu)
   Status: Confirmed = Fix Committed

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to userconfig in Ubuntu.
https://bugs.launchpad.net/bugs/583430

Title:
  kubuntu userconfig can silently delete group membership, causing loss
  of privileges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/userconfig/+bug/583430/+subscriptions

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 583430] Re: kubuntu userconfig can silently delete group membership, causing loss of privileges

2014-08-08 Thread Michael Koch
The fixed version is on my PPA, which can be found here:
https://launchpad.net/~mik32120/+archive/ubuntu/userconfig-fixed

Currently, there's only a build for Trusty, but I'll test the package on
Precise and upload a package for Precise if it works.

** Attachment removed: userconfig_0.9.1-1.deb
   
https://bugs.launchpad.net/ubuntu/+source/userconfig/+bug/583430/+attachment/4172545/+files/userconfig_0.9.1-1.deb

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to userconfig in Ubuntu.
https://bugs.launchpad.net/bugs/583430

Title:
  kubuntu userconfig can silently delete group membership, causing loss
  of privileges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/userconfig/+bug/583430/+subscriptions

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 583430] Re: kubuntu userconfig can silently delete group membership, causing loss of privileges

2014-08-08 Thread Michael Koch
Fixed version is on https://launchpad.net/~mik32120/+archive/ubuntu
/userconfig-fixed

** Changed in: userconfig (Ubuntu)
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to userconfig in Ubuntu.
https://bugs.launchpad.net/bugs/583430

Title:
  kubuntu userconfig can silently delete group membership, causing loss
  of privileges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/userconfig/+bug/583430/+subscriptions

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 451746] Re: Password verification box is missing

2014-08-08 Thread Michael Koch
Fixed version is on https://launchpad.net/~mik32120/+archive/ubuntu
/userconfig-fixed

** Changed in: userconfig (Ubuntu)
   Status: Triaged = Fix Released

** Changed in: userconfig (Ubuntu)
 Assignee: Yuriy Kozlov (yuriy-kozlov) = Michael Koch (mik32120)

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to userconfig in Ubuntu.
https://bugs.launchpad.net/bugs/451746

Title:
  Password verification box is missing

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/userconfig/+bug/451746/+subscriptions

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


<    4   5   6   7   8   9   10   11   12   13   >