
Recherche avancée
Autres articles (85)
-
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 (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 (9868)
-
Does AVFrame store AV_PIX_FMT_YUV420P data as YVU ?
28 juin 2017, par PeterI am decoding raw H.265 data using
avcodec_decode_video2
api. When I examine the resulting instancepictYUV
of typeAVFrame,
I see thatpictYUV->format
isAV_PIX_FMT_YUV420P
andpictYUV->data[0]
points to Y-plane. Both of these are expected. However, it appearspictYUV->data[1]
seem to contain V-plane data andpictYUV->data[2]
seem to contain U-plane data. My intuition was thatpictYUV->data
would store YUV planes in that order and not YVU planes. Wondering if the data is always ordered as YVU or is there some flag I failed to look at. Regards. -
Video Capture using Beaglebone black (Raw video to MP4)
21 mars 2014, par user3435464Good Day,
I just captured a raw video using the command from my PS3 Eye Camera on my beagleboard. I had captured about 10s of raw video in 320*240, and the format used was YUYV
./capture -f -c 300 -o > output.raw
I successfully got the raw video (was about 40MB)
Now, I needed to figure out how to convert this raw video to an mp4 file : I have been trying out various ffmpeg commands but to no avail
root@beaglebone:~/Desktop/boneCV# ffmpeg -vcodec rawvideo -f rawvideo -pix_fmt yuv422p - i output.raw -s 320x240 -r 25
-vcodec libx264 -an -vpre slower -crf 25
ffmpeg version v0.8.4, Copyright (c) 2000-2012 the Libav developers built on Jul 3 2013 19:28:08 with gcc 4.7.3 20130205
(prerelease) This program is not developed anymore and is only
provided for compatibility. Use avconv instead (see Changelog for the
list of incompatible changes). [IMGUTILS @ 0xbed475dc] Picture size
0x0 is invalid [IMGUTILS @ 0xbed4751c] Picture size 0x0 is invalid
[rawvideo @ 0x2dac0] Could not find codec parameters (Video : rawvideo,
yuv422p) [rawvideo @ 0x2dac0] Estimating duration from bitrate, this
may be inaccurate output.raw : could not find codec parametersThis is the ffmpeg log of my camera type :
ffmpeg -f video4linux2 -list_formats all -i /dev/video0
[video4linux2 @ 0x2db80] R : yuyv422 : YUYV : 320x240 640x480Does anyone have experience converting such raw video formats to MP4 ?
-
FFmpeg : How to convert vertical video with black sides, to video 16:9, with blurred background sides
10 avril 2017, par Andrey