
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (49)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (4675)
-
vf_avgblur_opencl : Don't run kernel on pixels outside the image
24 mars 2018, par Mark Thompsonvf_avgblur_opencl : Don't run kernel on pixels outside the image
The output frame size is larger than the image containing a subsampled
plane - use the actual size of the image being written rather than the
dimensions of the intended output frame.Reviewed-by : Dylan Fernando <dylanf123@gmail.com>
-
How to copy image to already created video in ffmpeg ? Flutter
2 février 2023, par AmmaraI want to create a video from list of images which is stored in list image ;
Which are selected by user from gallery.
Please help me I spend a month in this searching but found nothing.
I think or search a lot how to pass this list to ffmpeg to create video but fail to understand.
Now I generate a solution to create video from image after that copy each photo 1 by 1 to that video to get final result. Please tell me how can I copy image to video like.


String commandToExecute = '-t 1 -i ${img[0].path} - ${video.mp4}';



then i want to copy other image to same video


for(int i=1;icode>


In this way I want to create video with all images which user select.
But I cannot found any result with this code


-
Can't show image with opencv when importing av
5 mars, par FlojomojoWhen importing the PyAv module, I am unable to show an image with opencv using imshow()


Code without the PyAv module (works as expected)


import cv2

img = cv2.imread("test_image.jpeg")
cv2.imshow('image', img)
cv2.waitKey(0)



Code with the import (doesn't work, just hangs)


import cv2
import av

img = cv2.imread("test_image.jpeg")
cv2.imshow('image', img)
cv2.waitKey(0)



OS : Linux arch 5.18.3-arch1-1 #1 SMP PREEMPT_DYNAMIC Thu, 09 Jun 2022 16:14:10 +0000 x86_64 GNU/Linux


Am I doing something wrong or is this a (un-)known issue ?