
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (90)
-
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 (4123)
-
How to speed up video conversion
3 février 2021, par ArheiselI'm currently working in a project that involves converting large series of .jpg (>6000) into video format. These frames (320x240) are stored in folders at a rate of 2.5fps. Generating a couple of folders every hour that need to be converted ASAP.


For now I've tried copying the folder to a ram disk and using avconv which takes about a minute.


Here is my command :


avconv -threads auto -y -r 2.51 -i %03d-capture.jpg -s 320x240 -r 25 video.mpeg



- 

- Could ffmpeg work faster ?
- Is there a way to speed it up ?
- Which video format takes less time to convert to ?








-
PHP FFmpeg conversion issues for mp4 files
20 avril 2013, par RougeI want to get the images out of a
mp4
file by usingffmpeg-php
.I have
$str_command= '/usr/bin/ffmpeg -i /test/ts.mp4 -r 1 -ss 00:00:10 -t 00:00:01 -s 300x300 -f image2 /test/images/';
shell_exec($str_command);However, I got an error message saying
Buffering several frames is not supported. Please consume all available frames before adding a new one.
I have spent hours on web but couldn't find the answer for this. Can anyone help me about this ? Thanks so much !
-
FFMPEG video to image batch conversion
2 août 2012, par Adey@echo off
setlocal enabledelayedexpansion
set EXE_FILE=E:\ffmpeg.exe
set INPUT_PATH=C:\folder\
set OUTPUT_PATH=C:\Images\
set COUNT=0
for %%F in (*) do %EXE_FILE% -i %INPUT_PATH% %OUTPUT_PATH%/%%F.jpg
popdI want to save 1 sec videos to jpg images with this code. This doesnt work. Any solutions ?