
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (49)
-
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 (...) -
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 (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (6357)
-
Unable see video after encoding it using ffmpeg
22 septembre 2015, par SharathreddyI have used ffmpeg for video encoding using following parameters.
ffmpeg -i movie.mov -c:v libx264 -preset slow -b:v 500k -maxrate 500k -bufsize 1000k -s 480x360 -acodec libvo_aacenc -b:a 128k -async 1 -movflags faststart -y movie.mp4
"movie.mov" successfully encoded and created "movie.mp4".
But when I play movie.mp4 in windows media player or android player, blank screen appears but the movie is playing since I’m able hear audio.
Is there any way to re-encode movie.mp4 so that I can get video. -
FFmpegFrameGrabber deprecated pixel format error
6 janvier 2015, par TomTomI tried to show the images my phone sends over WiFi with JavaCV and the FFmpegFrameGrabber class. Unfortunately I get this error, no matter which pixel format I set (tried from 0 up to 65).
Input #0, mjpeg, from 'http://IP:PORT/video':
Duration: N/A, bitrate: N/A
Stream #0:0: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 640x480 [SAR 1:1 DAR 2:3], 24 tbr, 1200k tbn, 24 tbc
[swscaler @ 0x7ff6cc3cba00] deprecated pixel format used, make sure you did set range correctlyThis is how I create the FrameGrabber :
FrameGrabber grabber = new FFmpegFrameGrabber("http://IP:PORT/video");
grabber.setFormat("mjpeg");
grabber.setVideoCodec(8);
grabber.setFrameRate(24);And then getting the frame :
frame = grabber.grab();
EDIT :
Apparently this error comes from the ffmpeg library and has something to do with jpeg.
It is located in : libswscale/utils.c
Line 975 and 976 cause this error :
if(srcFormat!=c->srcFormat || dstFormat!=c->dstFormat)
av_log(c, AV_LOG_WARNING, "deprecated pixel format used, make sure you did set range correctly\n");Unfortunately I am not skilled enough to delete/change this line. So I just ignore this messages as it doesn’t affect the program. Unless someone can recompile an edited version of ffmpeg for mac :)
-
FFmpegFrameGrabber deprecated pixel format error
14 juin 2018, par TomTomI tried to show the images my phone sends over WiFi with JavaCV and the FFmpegFrameGrabber class. Unfortunately I get this error, no matter which pixel format I set (tried from 0 up to 65).
Input #0, mjpeg, from 'http://IP:PORT/video':
Duration: N/A, bitrate: N/A
Stream #0:0: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 640x480 [SAR 1:1 DAR 2:3], 24 tbr, 1200k tbn, 24 tbc
[swscaler @ 0x7ff6cc3cba00] deprecated pixel format used, make sure you did set range correctlyThis is how I create the FrameGrabber :
FrameGrabber grabber = new FFmpegFrameGrabber("http://IP:PORT/video");
grabber.setFormat("mjpeg");
grabber.setVideoCodec(8);
grabber.setFrameRate(24);And then getting the frame :
frame = grabber.grab();
EDIT :
Apparently this error comes from the ffmpeg library and has something to do with jpeg.
It is located in : libswscale/utils.c
Line 975 and 976 cause this error :
if(srcFormat!=c->srcFormat || dstFormat!=c->dstFormat)
av_log(c, AV_LOG_WARNING, "deprecated pixel format used, make sure you did set range correctly\n");Unfortunately I am not skilled enough to delete/change this line. So I just ignore this messages as it doesn’t affect the program. Unless someone can recompile an edited version of ffmpeg for mac :)