Recherche avancée

Médias (91)

Autres articles (65)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (6460)

  • Unknown OS MinGW and MSYS (ffmpeg / JAVE)

    26 novembre 2015, par Hendrik_the_best

    I Have been at this for about 3 hour and i’ve tried everything i can think of.
    I’ve been trying to compile/build ffmpeg (because the one thats give with JAVE( http://www.sauronsoftware.it/projects/jave/ ) gives me a error when i’m trying to run it.
    I really suck at this but i still hope someone will help :)

    I’m on windows 10 and I have all the latest versions from git bash, mingw and msys installed.

    Screen shot from the

  • mysterious error with ffmpeg on OSX

    19 octobre 2015, par Jack000

    There seems to be a bug in my bash script, and after a long time I managed to reduce it to this test case :

    find . -maxdepth 1 | while read blah
    do
       echo "$blah"
       ffmpeg -loglevel error -i ./test.jpg -f null /dev/null

    done

    the output from this is

    /test.jpg
    /test.mp4
    /test.sh

    if I remove the ffmpeg invocation, the output becomes this (what I expected) :

    ./test.jpg
    ./test.mp4
    ./test.sh

    this seems to occur only when the ffmpeg decoder is activated, as ffmpeg -version doesn’t produce the error. Why would ffmpeg affect an unrelated string in this way ?

    I’m at my wit’s end, any help would be appreciated.

  • FFMPEG merge consists of only one a single video instead of all of them [migrated]

    2 septembre 2015, par Avi

    I am trying to merge several mp4 videos together in a folder. However, when I run the following script, sometimes only 1 video is in the output. For example, if I have video1, video2, video3, and video4, only video1 would appear in the output. Note : I am converting some of these videos from mp3 to mp4 before I merge them with other mp4 videos.

    #!/bin/bash
    # Merge Script

    ffmpeg -f concat -i <(for f in ./*.mp4; do echo "file '$PWD/$f'"; done)  -c copy output.mp4