
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (55)
-
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)
Sur d’autres sites (4682)
-
Unable to playback .mp4 audio file in Firefox, works in Chrome
22 octobre 2015, par SpartanVXLI have been trying to play a file through Firefox to see if it is compatible for a website and cannot figure out why it cannot play whereas it will play on Chrome okay. It simply shows a error box that the "video cannot be played because the file is corrupt". I’ve trawled through information on .mp4 files and Firefox’s supported codec types but have not found much aside from recent posts on how FF should be able to play this content in 2015. Here is a ffprobe of the file.
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'two.mp4':
Metadata:
major_brand : mp42
minor_version : 0
compatible_brands: M4A mp42isom
creation_time : 2015-08-06 08:17:05
encoder : Nero AAC codec / 1.5.4.0
Duration : 00:03:28.77, start: 0.000000, bitrate: 131 kb/s
Chapter #0:0 : start 0.027333, end 208.768000
Metadata:
title :
Stream #0:0(und): Audio: aac (LC) (mp4a / 0x6134706D), 96000 Hz, stereo, flt p, 128 kb/s (default)Any reason why this local file wouldn’t play through FF on Windows 41.0.2 ?
-
How do I use FFMPEG binary file in a commercial app (AdobeAir) ?
8 mars 2019, par Maxim FirsoffI have a multi-platform app (MacOS, Windows), based on AdobeAir framework for encoding video.
- I’m using FFMPEG as a standalone executable file
- I’m accessing to FFMPEG via CLI (command line interface)
- I have not modified FFMPEG build file (just downloaded from official site).
I’ve read http://ffmpeg.org/legal.html and most care about the #2 step, AdobeAIR isn’t supported dynamic linking, how can I solve it ?
-
random select file in batch scrip and ffmpeg
8 mars 2019, par Hòa Hưng NgôI’m building a script to create multiple videos from multiple images and audio inputs. I want to create randomness in selecting images to audio. I found the loop when using the ffmpeg script to build the video, but it did not support random pick up. I tried to understand the script in the language of windows and found out the use of the variable $ (shuf -n1 -e e : audio *) but I could not include it in the ffmpeg loop. I really hope to have help from the community. Sincere thanks !
This is my scenario :set audiorandom = $(shuf -n1 -e e:\audio\*.mp3)
: encode video
for %%i in ("%INPUT%\*.jpg") DO ffmpeg -i "%%i" -i "%%audiorandom" -threads 0 -shortest -preset ultrafast "%output%\%%~ni.mp4"