
Recherche avancée
Autres articles (72)
-
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 -
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 (...) -
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)
Sur d’autres sites (7767)
-
FFMPEG - Dynamic SWF File to MP4
2 décembre 2014, par MavichowI downloaded FFMPEG at here for my window x64.
And here is my .php file that stored at Localhost :
$ffmpeg = 'D:\Software\ffmpeg-20141202-git-4280150-win64-static\bin\ffmpeg.exe';
$swf = "http://symmetrydigital-labs.com/junior/kazim/portal/flv/Shahid_Kapoor_07.swf";
$cmd = "$ffmpeg -i $swf test.mp4";
shell_exec($cmd);above code are working great and fine, because the SWF its a static SWF,
But when I need to convert this SWF, that require Dynamic Parameter, or the swf is scripted in AS3.Then it went error and can’t convert to .mp4 file.
$ffmpeg = 'D:\Software\ffmpeg-20141202-git-4280150-win64-static\bin\ffmpeg.exe';
$swf = "http://www.permadi.com/tutorial/flashQueryString/loaderInfoExample.swf?userName=12322";
$cmd = "$ffmpeg -i $swf test.mp4";
shell_exec($cmd);And I try to execute on Command line,
and I found out Could not find Codec parameter Error, -
usb_fill_bulk_urb with less buffer_length gives no garbage Transport stream data
4 février 2015, par user3570793Currently I am working on a DVB-T2 dongle which is connected to my Ubuntu laptop 14.04 using USB
interface.
I am using following applications to perform scanning and channel play.
1. w_scan - which scans and gives me a channel.conf file
2. vlc ./channel.conf - plays a channel using modulation parameters in channel.confThings work fine when Pid filtering is disabled. But when Pid filtering is enabled, I see
macroblocks on the screen instead of smooth AV. Even AV is breaking a lot.
After going through the driver code, I tried increasing the URB buffer size from 3K (21*188) to
64K (348*188). The AV became smooth.
This urb buffer size is buffer_length (lenght of transport buffer) in below function.
void usb_fill_bulk_urb (struct urb * urb, struct usb_device * dev,
unsigned int pipe, void * transfer_buffer,
int buffer_length, usb_complete_t complete_fn,
void * context) ;As you can see the driver uses bulk mode of usb transfer.
Could anyone explain me why increasing the buffer is solving the macroblock issue ?
Give me some pointers to understand this issue better.
Thanks in advance,
Murali -
Uploading output of ffmpeg to AWS S3
10 juin 2018, par TarunI am trying following windows command
ffmpeg -i <m3u8 stream="stream"> -an -r 2 -t 60 -f image2 -vcodec mjpeg pipe:a_%0d.jpg | aws s3 cp - s3://ffmpegbucket-1</m3u8>
/The objective is read a live stream keep generating frames and as soon I get 1st frame transfer it to AWS S3 bucket. So this will be continous upload process
But this command is not working.
Can you please help ?