
Recherche avancée
Autres articles (13)
-
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
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 (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (3298)
-
FFMPEG read audio convenience function
7 mars 2016, par Phlox MidasIn Matlab, there’s a function called
audioread
that takes a file name as input and returns a vector of samples and the sample rate like this :[samples, sampleRate] = audioread(fileName);
I’ve been programming FFMPEG but finding it very low level. I have a file being read using a technique similiar to this. Is there any such equivalent C function in FFMPEG as there is in Matlab so I don’t have to fiddle with the low level stuff ? Or any library that can provide a nice API like this for FFMPEG (though I would just prefer this one function) ?
-
avformat/tee : Refactor close_slaves function in tee muxer
12 avril 2016, par Jan Sebechlebskyavformat/tee : Refactor close_slaves function in tee muxer
Closing single slave operation is pulled out into separate
function close_slave(TeeSlave*).
Both close_slave and close_slaves function are moved before
open_slave function.Reviewed-by : Nicolas George <george@nsup.org>
Signed-off-by : Jan Sebechlebsky <sebechlebskyjan@gmail.com>
Signed-off-by : Marton Balint <cus@passwd.hu> -
Add more parameters to function with declared parameter
27 novembre 2017, par ProgrammmeregI want to add two variable in addFilter() function. But the problem is that this method allows only one parameter to get. How to extend it ?
FMpeg::fromDisk('public')
->open('/uploads/videos/' .$video->file_name)
->addFilter(function($filters) {
$filters->clip(FFMpeg\Coordinate\TimeCode::fromSeconds($start), FFMpeg\Coordinate\TimeCode::fromSeconds($duration));
})
->export()
->toDisk('public')definition of code : I can’t change this
public function addFilter(FilterInterface $filter)
{
$this->filters->add($filter);
return $this;
}