
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (89)
-
Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur
8 février 2011, parLa visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
Configuration de la boite multimédia
Dès (...) -
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 -
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 (...)
Sur d’autres sites (4079)
-
How to reduce size of an WAV audio format file using Java ? [closed]
2 avril 2021, par Abraham ArnoldProgrammatically I am generating WAV audio files. But the size is bigger. So is there any good library to reduce size of those audio files ? And FFMPEG can be used to reduce ? If yes how can I do that ? Or are there any other good libraries that do it ? Anybody can help me ? Thanks in advance.


-
build : output-example : Add avutil to ELIBS in link command
27 avril 2013, par Diego Biurrunbuild : output-example : Add avutil to ELIBS in link command
output-example links against swscale, which depends on avutil. In standard
configurations, by pure good luck, the libs before swscale pull in all of
swscale’s dependencies and linking succeeds. However, in some configurations
like —disable-asm this is not the case and linking fails.Hardcode the dependency to avoid a more general Makefile refactoring.
-
FFMPEG trim long video, fast and accurate way
21 juillet 2018, par Islem BoussettaI want to trim my a long video using FFMPEG, so I tried :
ffmpeg -ss 2 -i in.mp4 -t 72 -c copy out.mp4
So the result was not good. the video freeze in the beginning. So I tried without -c copy to re-encode the video, the result was good but it takes a lot of time especially with a large file.
ffmpeg -ss 2 -i in.mp4 -t 72 out.mp4
So what is the fast way to trim a long video correctly and get a good result ?