
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (35)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
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 (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (4277)
-
Getting Duplicate Classes/Dependencies issue In Android
8 avril 2022, par Faiz Shaikhgetting this duplicate Class/Dependency bug


Duplicate class com.arthenica.mobileffmpeg.Statistics found in modules jetified- 
 mobile-ffmpeg-full-4.4.LTS-runtime (com.arthenica:mobile-ffmpeg-full:4.4.LTS) and 
 jetified-mobile-ffmpeg-https-4.4-runtime (com.arthenica:mobile-ffmpeg-https:4.4)


 Go to the documentation to learn how to <a href="http://stackoverflow.com/feeds/tag/d.android.com/r/tools/classpath- &#xA; sync-errors">Fix dependency resolution errors</a>.



-
Ffmpeg stream windows desktop to website ? [closed]
2 juillet 2021, par Andrey KadnikovI'm trying to stream my desktop on the site page.


This command should start my stream(as I read)
ffmpeg -f dshow -i video="screen-capture-recorder" -framerate 30 -ar 8000 -f mulaw -f rtp rtp://127.0.0.1:1234
, I didn't get any error. But how can I see that in webbrowser ? I tried tag video and set attribute src like<video></video>
but I see empty block.

And why I get an error after some time(may be 3 minutes)
real-time buffer [screen-capture-recorder] [video input] too full or near too full (545% of size: 3041280 [rtbufsize parameter])! frame dropped!


-
PNG with Alpha to HEVC (H.265)
22 juin 2022, par nicholasI'm trying to encode a png sequence to videos with transparency for the web. I can encode a webm video with :


ffmpeg -i ./renders/full/frame-%04d.png -c:v libvpx-vp9 movie-webm.webm


But to get an mp4, I'm trying :


ffmpeg -i ./renders/full/frame-%04d.png -vcodec png tmp.mov


to get a MOV, then :


avconvert --preset PresetHEVC1920x1080WithAlpha --source tmp.mov --output movie-265.m4v


to make the mp4.


But I get




avconvert : invalid configuration (preset name
PresetHEVC1920x1080WithAlpha) with tmp.mov




How do I encode the frames into something that
avconvert
will recognize ?