
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 (48)
-
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 -
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 (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (11558)
-
How to convert iphone's caf to ogg on ubuntu
24 novembre 2012, par Amure Pinho - Syncmobilei really need your support to solve that problem :
We developed an iOS application that sends a sound file to our server and then, we share this audio.
The problem is we didnt find any solution to convert the audio inside the iOS.
We tought : Ok, thats a problem, but we can still convert the audio in the server right ?
We are trying to make this using afconvert, ffmpeg but with no sucess.
Do you have any basic guide or hint so we can write this in our server application and convert all the .CAF files to another format like OGG or MP3 ?
Thanks a lot !
-
Video time reduced while conversion using ffmpeg and php
1er mars 2013, par RaviI am converting video files to .flv using ffmpeg and php.
Here is my code$cmd = $this->ffmpeg . ' -i ' . $filein . ' -sameq -ar 22050 -b 2048k -f ' . $parameters['convert'] . ' ' . $fileout;
Where
$parameters['convert'] = flv
Its working great for many files, but when i upload and
~80MB and ~9minutes .mp4 file
, its is successfully converted to flv but the time reduces to 2 seconds. What may be the problem and possible solution.upload limit is set to 200MB
-
live encoding/streaming with ffmpeg [migrated]
24 novembre 2012, par daveI'm using ffmpeg to encode large avi (or other) files to mp4, which are then saved to disk, then streamed in the browser using apache mod_h264.
The problem with this is that we have to wait until ffmpeg finishes encoding the mp4, which can take a long time. Ideally, we would be able to stream the video, while the encoding is being processed.
Is there a way to do this with ffmpeg/mod_h264 or is there a better solution to achieve this ?
Thanks !