
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 (46)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (7606)
-
Packages are installed on server but not displaying in phpinfo()
5 janvier 2012, par onkarI have installed imagemagick and ffmpeg on my CentOs 5.5 Godaddy VPS.
I have added extension in php.ini also.
I can able to see the installed packages in /usr/local/bin.
But when I print phpinfo(), I am not able to see those. Not event I can use those packages.
Any issue with installation ? any help on this ?
Thanks, Onkar
-
Range input breaks ffmpeg when seeking in Chromium
14 janvier, par Tania RasciaI'm getting the following error erratically when I seek with the range input in a React app, which renders the input unusable until refresh :


PIPELINE_ERROR_READ: FFmpegDemuxer: demuxer seek failed


The only occurrence of this error I can find online is in the Chromium source code. <— linked file goes directly to the line where the error exists.


I can't replicate the error in Firefox.






Nothing out of the ordinary is going on with the input.


const handleScrub = (event) => {
 const newTime = event.target.valueAsNumber

 setProgress(newTime)
 audioRef.current.currentTime = newTime
}



It happens if you click around really fast on the range. Here is an example of the source code, but the error doesn't happen with an .ogg file, only a signed .flac file.


-
How to comp portion of first frame onto rest of video without re-encoding ? [closed]
2 juillet, par jonathanI am working for a company recording educational screencasts using Goodnotes. The first frame looks fine, but as I work on the document, the page number pops up on the bottom left.


My bosses don't like this, so I've been trying to find a way to fix it on the screencast, since I can't find a way to turn it off in Goodnotes.


My current solution is taking a screenshot of the clean frame and using Gimp to crop out all but a small rectangle around where the page number would be, exporting that as a PNG and using ffmpeg to overlay that. The resulting image looks great and my bosses approve, but the script takes time to run since it needs to reencode. I'm wondering if there's a way to do this all with ffmpeg and run it with the
-c copy
flag since the first frame is clean. Please let me know if this is even possible.