
Recherche avancée
Autres articles (54)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
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 (...) -
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 (...)
Sur d’autres sites (7400)
-
Cant get the progress multiple times, just once. laravel-ffmpeg
22 mai 2022, par RamixI am encountering some problems getting the progress percentage for package called - laravel-ffmpeg. It is called just once when the file has finished transcoding. I tried small and big file, got the same result. Here is the code.


FFMpeg::open('test_video.mp4')
 ->export()
 ->onProgress(function ($percentage, $remaining) {
 echo "{$remaining}";
 Asset::where('parent_catalog', '7a42ae6d-872d-4c2c-8e85-832ed9902fac')->update(['proxy_status' => $percentage]);
 })->save("test_output.mp4");



Could it be package issue or my lack of knowledge with PHP ?


-
MAINTAINERS : add myself to the project server
22 juillet 2016, par Nikolay AleksandrovMAINTAINERS : add myself to the project server
I’ve been helping out with the project servers’ maintenance and migration
to the new machine hosted in Telepoint’s data center in Sofia, BG.Signed-off-by : Nikolay Aleksandrov <razor@blackwall.org>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
Cut detection with ffprobe
8 juillet 2019, par Roman VolodinI’m trying to detect cuts between shots with
ffprobe
. I use the following command :ffprobe -show_frames -of compact=p=0 -f lavfi "movie=test_clip.avi,select=gt(scene\,.4)" > test_clip_cuts.txt
It works just fine, there’s no question. But now I want to detect the cuts in certain range only. Let’s say from 3 to 8 seconds. How I could do that ?
I tried to use
-read_intervals 3%8
but it gave me an error :Could not seek to position 3000000: Invalid argument
Could not read packets in interval id:0 start:3 end:8Command
-read_intervals %+3
(read from the very begining to 3rd second) works, but in weird way - it detects cuts up to 4th second (and over, I guess).So I’m confused. What are those "intervals" and how to use them ? Is it possible to set the range in regular seconds ?
Just in case here is my test clip https://yadi.sk/i/nd-c12mYeQ2nb