Recherche avancée

Médias (91)

Autres articles (55)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (7057)

  • Unable to find suitable output format for 'libmp3lame' and 'flv'

    24 février 2017, par user2108727

    Currently I am trying to setup a livestream using ffmpeg in Kubuntu. I got really far, but unfortunately I cannot figure out one bit that mentions output format errors. Here’s the code I am using for my .sh file :

    #! /bin/bash

    # streaming on Ubuntu via ffmpeg.
    # see http://ubuntuguide.org/wiki/Screencasts for full documentation

    # input resolution, currently fullscreen.
    # you can set it manually in the format "WIDTHxHEIGHT" instead.
    INRES="1920x1200"

    # output resolution.
    # keep the aspect ratio the same or your stream will not fill the display.
    OUTRES="1280x720"

    # input audio. You can use "/dev/dsp" for your primary audio input.
    #INAUD="pulse"

    # target fps
    FPS="30"

    # video preset quality level.
    # more FFMPEG presets avaiable in /usr/share/ffmpeg
    QUAL="ultrafast"

    # stream key. You can set this manually, or reference it from a hidden file    
    like what is done here.
    STREAM_KEY=$(cat ~/.twitch_key)

    # stream url. Note the formats for twitch.tv and justin.tv
    # twitch:"rtmp://live.twitch.tv/app/$STREAM_KEY"
    # justin:"rtmp://live.justin.tv/app/$STREAM_KEY"
    STREAM_URL="rtmp://live-cdg.twitch.tv/app/$STREAM_KEY"

    ffmpeg \
    -f alsa -ac 2 -i "$INAUD" \
    -f x11grab -s "$INRES" -r "$FPS" -i :50.0 \
    -vcodec libx264 -s "$OUTRES" -preset "$QUAL" -crf 22\
    -acodec libmp3lame -threads 6 -q:a 0 -b:a 160k \
    -f flv -ar 44100 "$STREAM_URL"

    Now the issue is that whenever I run the .sh file, I get an error at the end saying

    Unable to find a suitable output format for 'libmp3lame'
    libmp3lame: Invalid argument

    So I decided to troubleshoot by removing the audio line at the bottom and it just turned into

    Unable to find a suitable output format for 'flv'
    flv: Invalid argument

    Something tells me this is because the stream key is not defined properly, but I have no idea whatsoever how to fix this.

    So does anyone have an idea ?
    Thanks in advance !

    Misterff1

  • swscale : correctly pad destination buffer in rgb conversion

    3 août 2014, par Kostya Shishkov
    swscale : correctly pad destination buffer in rgb conversion
    

    Bug-Id : 772
    CC : libav-stable@libav.org
    Found-By : Justin Ruggles <justin.ruggles@gmail.com>
    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DBH] libswscale/swscale_unscaled.c
  • How to get video thumbnail in PHP ? [on hold]

    10 octobre 2013, par assaf

    I am trying to get a thumbnail from an uploaded videos to my site, but I don't really know how to do this.

    I read that FFMPEG is the tool for this kind of actions, but I didn't understand how do I use this tool, is this a plugin ? Do I need to install it ?

    I really need help here and the detailed kind, thanks !