
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (20)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (4087)
-
How to convert YUV422 image to JPEG using ffmpeg's libraries ?
23 juillet 2017, par user3743908I’m trying to convert a YUV422 image (YUV422_8_UYVY, unsigned ,unpacked, 16bpp) in to jpeg using ffmpeg’s ,this is Code which I am following
Image size : 2448x2050
Original YUV Image : not able to upload as the format is YUV(Original Image Decodec by ffmpeg command prompt)
Image :This is original ImageImage size : 2448x2050
reconstruct Image :Reconstruct Image through above Codeso the reconstruct image is not as the original image
my format is UYVY whereas supported format is AV_PIX_FMT_YUVJ420P
so what should be the correct format for UYVY input image...?
pCodecCtx->pix_fmt=AV_PIX_FMT_
?????if i use pCodecCtx->pix_fmt=AV_PIX_FMT_UYVY422 ;
i got an arrer saying[mjpeg @ 00c0b2a0] specified pixel format uyvy422 is invalid or not supported
-
ffmpeg doesn't stream over live videos
31 décembre 2015, par Haseeb Ahmadffmpeg work fine for localhost but doesnt work for video which is live
FFMPEG::Movie.new("http://getpayad-dev.s3.amazonaws.com/ads/videos/000/000/014/original/Ufone_Tarzan_commercial_%28Ufone_Network_Quality%29_most_Funny_Ad.mp4?1451555000")
It gives an error
Errno::ENOENT: No such file or directory - the file 'http://getpayad-dev.s3.amazonaws.com/ads/videos/000/000/014/original/Ufone_Tarzan_commercial_%28Ufone_Network_Quality%29_most_Funny_Ad.mp4?1451555000' does not exist
from /home/des0071/.rvm/gems/ruby-2.2.1/gems/streamio-ffmpeg-1.0.0/lib/ffmpeg/movie.rb:11:in `initializeHow I fix it ?
-
How to get decoded audio samples in libav
22 mai 2020, par Desp4I'm trying to decode a non-planar wav audio file with libav, but the output file seems corrupted and a bit longer than the original. Am I handling frames wrong when writing them to a file like this ?





fwrite(frame->extended_data[0], 1, frame->linesize[0], outFile);





When opening the file in audacity it looks like this. Where two channels on top are from the original and the ones underneath are from a decoded file.