Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (35)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin 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, par

    To 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, par

    Dans 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 Shaikh

    getting this duplicate Class/Dependency bug

    


     Duplicate class com.arthenica.mobileffmpeg.Statistics found in modules jetified- &#xA; mobile-ffmpeg-full-4.4.LTS-runtime (com.arthenica:mobile-ffmpeg-full:4.4.LTS) and &#xA; jetified-mobile-ffmpeg-https-4.4-runtime (com.arthenica:mobile-ffmpeg-https:4.4)&#xA;&#xA;&#xA; Go to the documentation to learn how to <a href="http://stackoverflow.com/feeds/tag/d.android.com/r/tools/classpath- &#38;#xA; sync-errors">Fix dependency resolution errors</a>.&#xA;

    &#xA;

  • Ffmpeg stream windows desktop to website ? [closed]

    2 juillet 2021, par Andrey Kadnikov

    I'm trying to stream my desktop on the site page.

    &#xA;

    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.

    &#xA;

    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!

    &#xA;

  • PNG with Alpha to HEVC (H.265)

    22 juin 2022, par nicholas

    I'm trying to encode a png sequence to videos with transparency for the web. I can encode a webm video with :

    &#xA;

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

    &#xA;

    But to get an mp4, I'm trying :

    &#xA;

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

    &#xA;

    to get a MOV, then :

    &#xA;

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

    &#xA;

    to make the mp4.

    &#xA;

    But I get

    &#xA;

    &#xA;

    avconvert : invalid configuration (preset name&#xA;PresetHEVC1920x1080WithAlpha) with tmp.mov

    &#xA;

    &#xA;

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

    &#xA;