wco_models 3.1.0.303 → 3.1.0.304

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 50798df5200cea24bdb2fbbc9247eb5f1c2c75d2011c819ad12a08c4e4f5e701
4
- data.tar.gz: 7c6a8ae70df7efd384a61914888e4380756e4d331a461a5515e1fa36983ee58e
3
+ metadata.gz: 87541daeb7455882c94e744cf11f35ac8a491c2a7367e59bb666cb8230473613
4
+ data.tar.gz: 1a421dd9461abd591b248c6b9d1eeaadb6f05e3146a9e8420f35c35504d278c4
5
5
  SHA512:
6
- metadata.gz: f298703cb84718ffd7382cc57e8e5fc4c8cebcb160393fec820ebe7dcf9e36e53a8506b2207e2829627964fe4a80c410f463f158b0fc2e09803e4ad58213e7ab
7
- data.tar.gz: 89c0b4aac994a0aa5926dcde15b45367f6089b8fba5e1a20e201a96163a11fd4b4ab5bc5b1a23b65d89dffa6f931cd7e167d7fd8f290a799931176bd8c3f623f
6
+ metadata.gz: 03f99e4c551e579c2cdc8ec4436ffb0ec66b4af7c812424bc7ed027d950b40b7fde8efbdf174bd64b9f7084bf4cefb8b97266da6bdb535ae3ef26972cdf9496f
7
+ data.tar.gz: df84c4aaa5f7f63c6fa5fa589cb7a4e596e70cceb661881c1900517e3ef6ca276524ea56c8d6f0f4cfe4d598534e57800ad800660b280330c0673272d495ae38
data/README.txt CHANGED
@@ -1,5 +1,6 @@
1
1
 
2
2
  WasyaCo Models. The functionality shared across all (most) projects, including:
3
+
3
4
  * the ActiveRecord models
4
5
  * some stylesheets
5
6
  * some javascript
@@ -15,6 +16,18 @@ Some infrastructure is driven by ansible - therefore, local python3 and ansible
15
16
  . zenv/bin/activate
16
17
  pip install -r requirements.txt
17
18
 
19
+ = Develop / Use =
20
+
21
+ == Image to video ==
22
+
23
+ ffmpeg -loop 1 -i $inn -c:v libx264 -t 3 -pix_fmt yuv420p output.mp4
24
+
25
+ ## unnecessary:
26
+ ffmpeg -loop 1 -i "$inn" -vf "scale=iw:ih" -c:v libx264 -t 3 -pix_fmt yuv420p output.mp4
27
+ ## odd pixel:
28
+ ffmpeg -loop 1 -i "$inn" -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" -c:v libx264 -t 3 -pix_fmt yuv420p output.mp4
29
+
30
+
18
31
  = Test =
19
32
 
20
33
  See doc/localstack.txt