
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (81)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)
Sur d’autres sites (16757)
-
Reducing audio , video size on upload Django
29 juin 2021, par MiteshI got a test server where I have features like uploading audio and video on a post . The feature is working perfectly but using a lot of space as some videos has more than 80MB while my system has only 1Gb of storage. How can I reduce my audio video size on upload maintaining no upload restriction. I am using Django and drf on backend . I looked into ffmpeg & pydub but couldnt find anything to reduce the audio bitrate or video quality. Is there anything else I should look into ? or ffmpeg will work (if ffmpeg works, please give me some example links so that I can implement before integrating to my test server) Thanks


Any suggestion regarding this will be helpful


-
avcodec/libx264 : Add support for Sony XAVC Class 300 and 480
22 juin 2021, par Limin Wang -
Is it good to use minterpolate in FFmpeg for reducing blurred frames
30 mars 2022, par UdiI'm using FFMPEG to slice png files from videos.


I'm slicing the videos in fps between 1-3 depending on some video metadata.
I can see that when the subjects in the video moving fast or the camera are not steady I will get blurred frames. I try to research how I can solve it (The quality of these frames is my main goal) and I tackled the minterpolate option.


I think that if I will use the blend option that will mean the 3 frames to 1 the "noise" of the blurred subjects will reduce.


So my current command now is like this :


./ffmpeg -i "/home/dev/ffmpeg/test/input/@3.mp4" -vf minterpolate=fps=1:mi_mode=blend,mpdecimate=hi=11456:lo=6720:frac=0.5 -vsync 0 "/home/dev/ffmpeg/test/output/3/(#%04d).png"



Am I right ? Do you think of a better way to use FFMPEG to solve my problem ?