Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (6)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (4136)

  • Php exec ffmpeg not running in background

    12 décembre 2013, par mircea

    I am trying to start a ffmpeg process from a php script and I know it has been asked a lot of times but I tried many solutions and none of them seem to work, each time the php script never finishes unless I kill the ffmpeg process. At the moment I am using this script which indeed starts ffmpeg and writes info in the designated files but the php script is loading forever.

    What am I missing ?

    $cmd = 'cd cache && ffmpeg -y -i "rtsp://stream" -r 20 -f image2 a%6d.jpg >/dev/null 2>/dev/null &';

    exec(sprintf("%s > %s 2>&1 & echo $! >> %s", $cmd, 'log.txt', 'error.txt' . '.pid'));

    A little more info : I am running FFMpeg 0.6.5, PHP 5.3.3 on CentOS 6.5

    Thank you for your time !

  • Using Cygwin for FFMPEG build error cmp : command not found

    9 octobre 2015, par Papajohn000

    I’ve been trying to use Cygwin to build ffmpeg but I’m running into the error ./configure: line 1132: cmp: command not found. I tried looking around online for solutions but found none. I also checked if I just didn’t download the right package when I downloaded Cygwin but I found nothing relating to cmd. I’m not sure if there is a workaround or not. The code from line 1132 is :

    cp_if_changed(){
       cmp -s "$1" "$2" && echo "$2 is unchanged" && return
       mkdir -p "$(dirname $2)"
       $cp_f "$1" "$2"
    }

    Thanks

  • Make FFmpeg output GIF background transparent

    2 juin 2019, par Sahaj Rana

    I’m using FFmpeg library to save a gif like below :

    String commanda="-y -i "+file.getAbsolutePath()**tmp.gif** +" -loop 0 -y "+getEmptyFile("tmp_ch.gif");
    executeCmd(command);

    to make loop indefinitely for further process in an overlay for a video.

    The problem is : when I save the gif which previously had transparency is gone after saving it through FFmpeg command.

    So, how to bring transparency in output gif.
    I have tried

    --> -filter_complex [0]palettegen=reserve_transparent=on[p];[0][p]paletteuse

    --> -gifflags +transdiff

    but none of the solutions is working. It would be really helpful if it could be resolved, thanks !