
Recherche avancée
Médias (3)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (94)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (11477)
-
How to concat videos and apply filters to one/both of them in one render ?
29 juillet 2019, par NeeFuuI am merging two files but one of them needs hard subtitle applied. I can hardcode once and then concat files but because of codec conflict, it needs encoding two times which I want to avoid because of performance issues.
I have tried to add simple subtitle in filter complex, which I found in this documentation. Then I tried to apply it on concat video filter example code found on StackOverflow.
ffmpeg -i segment.mp4 -i video.mp4 -filter_complex "[0:v] [0:a] [1:v] ass=subtitle.ass [1:a] concat=n=2:v=1:a=1 [v] [a]" -map "[v]" -map "[a]" output.mkv
I have tried to add subtitle only for video.mp4 but then I got :
[Parsed_ass_0 @ 000002db090dd000] Shaper: FriBidi 1.0.4 (SIMPLE)
[Parsed_ass_0 @ 000002db090dd000] Using font provider directwrite
[Parsed_ass_0 @ 000002db090dd000] Added subtitle file: 'subtitle.ass' (2 styles, 3 events)
[AVFilterGraph @ 000002db096e6680] Too many inputs specified for the "ass" filter.
Error initializing complex filters.
Invalid argumentI am not sure If I am just adding filter wrong or it’s just wrong way to do it.
-
Grid/Mesh warping of videos with OpenCV
2 février 2017, par andreasI would like to do some warping with OpenCV applied on Videos. Here is a demo in Javascript which perfectly explains what I want to achieve via OpenCV :
http://persistent.info/web-experiments/distortion/
Please select "Tron Legacy" in the drop down menu "Datasource"Here is also screenshot of the demo :
I am not an expert in OpenCV, but as far as I know there are only methods about camera calibration which deals with distortions (but only with special ones like radial and tangential distortions). For my purpose, I need a more general approach.
The overall goal : apply some kind of "filter" on any video which generates this kind of distortion, based on a grid which can be adjusted via drag and drop by a user. This filter does not have to work in real time. Hence, if you know any other frameworks which can be used for this, please let me know :-) I´ve checked the filter section of FFMPEG, but it seems that also these filters are not appropriate.
Thanks for your help !!
-
How to manipulate YUV frames obtained from an ffmpeg video decoder ?
23 juillet 2014, par user3665376I wanted to apply effects on video while rendering on android . I decoded the mpeg4 video using ffmpeg to raw YUV(YUV420P) frames .
I modified the Y(luminescence) bytes using the below snippet and rendered it to screen after converting it to RGB frames .
AVFrame *frame = [YUV420P frame recieved from ffmpeg decoder]
uint8_t *tempPtr = NULL;
tempPtr = frame->data[0];
int j;
for(j = 0 ; j < frame->linesize[0] ; j++){
*(tempPtr++) = 1;
}I applied a Y value of 1 to all pixels of all frames . I expected an output video of low luminescence ie.much darker video . But I was not able to notice any change in luma of the rendered video .
Note : The YCbCr data planes at AVFRame.data[0] , AVFrame.data[1] , Avframe.data[2] of the decoded frame has expected values . The AVFrame.buf pointers were all pointing to NULL (Don’t know whether it has anything to do with data).
Wanted to know whether anybody has encountered this situation before ??Links to related opics also will be very much helpful.
Thanks.