
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (53)
-
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
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 (9845)
-
How to save multiple frames in JPG with FFMPEG using timestamp
13 janvier 2019, par user3228278I’m trying to save JPG files from a UDP stream using FFMPEG.
I want the filenames to be timestamp like YYYY-MM-DD_HH-MM-SS_MMM.jpg, but it seems that milliseconds not are supported by FFMPEG. I need a unique number after the second to be able to save multiple frames per second.
ffmpeg -i udp://@239.255.37.1:18888 -f image2 -vf fps=1 -strftime 1 "R:\Recordings\Images\Stream1\%Y-%m-%d_%H-%M-%S.jpg"
I expect the files to be like this :
2019-01-13_01-58-15_100.jpg, 2019-01-13_01-58-15_600.jpg -
LARAVEL FFMpeg : Unable to save frame error
9 novembre 2020, par Adrijus JakučionisWhen I'm trying to save my thumbnail, I'm getting "Unable to save frame" error.


I'm using https://github.com/protonemedia/laravel-ffmpeg Laravel-ffmpeg package, AWS S3 server.


My code :


Route::get('/thumbnail', function() {
 $file = FFMpeg::fromDisk('s3')
 ->open('/videos/71239_1598846328_p.mp4')
 ->getFrameFromSeconds(10)
 ->export()
 ->toDisk('s3')
 ->save('/videos/thumb.png');
 return "ok";
});



Can someone tell me what I'm doing wrong ?


-
ffmpeg save remote file to user's computer
18 mai 2018, par hmaxxI can cut and save a video from a remote server to my server using the below command :
ffmpeg -ss 00:00:30 -i "example.com/test.mp4" -t 00:00:09 -acodec copy -vcodec copy -async 1 -y out.mp4
I was wondering if I could prompt the user for a permission to save it on his computer instead of downloading it to my server. I will be using php with the exec function.