
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (73)
-
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 ;
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)
Sur d’autres sites (9117)
-
ffmpeg : Considers AVPixelFormat as Int ?
16 mars 2014, par jamie_yI would like to use a function
ff_load_image
.program.c
#include "../ffmpeg/libavfilter/lavfutils.h"
int main ()
{
uint8_t* data;
int linesize, width, height, log_ctx;
int i = ff_load_image(&data, &linesize, &width, &height, AV_PIX_FMT_RGB24, "blue.jpg", &log_ctx);
}This compiles, but gives a warning.
program.c: In function 'main':
program.c:11: warning: passing argument 5 of 'ff_load_image' makes pointer from integer without a cast
../ffmpeg/libavfilter/lavfutils.h:39: note: expected 'enum AVPixelFormat *' but argument is of type 'int'When I run the program, it segment faults. I can't think of any other way to specify a pixel format. Why would ffmpeg think
AV_PIX_FMT_RGB8
is an integer ? It's obviously anAVPixelFormat
. -
ffmpeg is dropping frames of second video in concat
17 juin 2018, par bugwheels94I did a screen share and when sharing the screen I minimized the sharing window so the video that I am sharing has some thing weird going on. Seeking does not work on mplayer but works on VLC. However, when doing the concat
ffmpeg -i test.webm -f lavfi -i color=c=blue:s=1366x768:d=71 \
-filter_complex "[0]scale=w='min(1366\, iw)':h='min(768\, ih)':force_original_aspect_ratio=decrease,\
pad=width=1366:height=768:x=(ow-iw)/2:y=(oh-ih)/2,setsar=1/1[v1];\
[1][v1]concat=n=2[v]" -map [v] -qscale 7 result.mp4The webm video of length 155 seconds is not showing complete. Ideally the result should be 71 + 156 = 227 but I am getting 155 seconds and the webm video of concat being cropped.
If I reverse the concat order to
[v1][1]concat=n=2[v]
then everything is perfect at 227 secondsDownload test.webm
May you please tell me about what might be wrong here ? Thanks
-
Python Windows 10 64bit - FFMPEG for trackpy
3 décembre 2018, par Cam KSimilar problem to ’Python Moviepy installation problems (windows 7x64)’ except the solution provided did not work.
I have windows 10, 64bit. Every time I attempt to run the following line of code :
frames = pims.Video('exp9_short.avi')
I get the blue Windows 10 error : This app can’t run on your PC
as well as the Python error :
OSError: Could not load meta information
=== stderr ===
Access is denied.I have tried multiple versions from ’https://ffmpeg.zeranoe.com/builds/’ to no avail.
I don’t know if other image processing tools will work with trackpy, or if there are any alternatives to trackpy.
I would really appreciate some advice.