Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (70)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (9933)

  • Create a silent mp3 from the command line

    2 juillet 2015, par Stephen

    I am trying to create a silent / empty mp3 of (x) seconds using the command line. Quite a simple task I thought !

    It seems lame is able to do somethign like this but I am unable to find anything that leads to achieving this.

    Has anyone been able to do something like this ?

  • Run FFMPEG multiple overlay commands in one command

    26 avril 2016, par BOB

    I’m using ffmpeg to do more operation on one video
    the operation that i want to do is add many text in difference time, audio and image.
    i can do all of them but not in one command, Do all separately

    any suggestions to do multiple text , overlay image and audio in one command

    Thanks

  • Golang command working in terminal but not with exec package

    17 août 2016, par Jon Stevens

    I am converting a video generation library from NodeJS to GO that primarily uses FFMPEG for all the video processing. I already have all the FFMPEG commands written out to do the generation I want. The issue is that when I try to run the command through the os/exec package, it fails. However, if I copy the exact command and run it directly in the terminal it works and I cannot figure out why that is. My code that runs the command is below :

    command := "ffmpeg -y -loop 1 -i image.png -vf 'fade=in:0:15,fade=out:105:15' -c:v mpeg2video -t 5 -s 1280x720 -r 30 -q:v 1 -preset ultrafast image.mpg"

    parts := strings.Fields(command)
    cmd := exec.Command(parts[0], parts[1:]...)
    cmd.Stderr = os.Stderr
    cmd.Stdout = os.Stdout
    err := cmd.Run()
    if err != nil {
       panic(err)
    }

    The ffmpeg error I get when I try to run this code is :

    [AVFilterGraph @ 0x22a9bc0] No such filter : ’fade=in:0:15,fade=out:105:15’

    Error opening filters !

    2016/08/17 17:48:53 exit status 1

    Like I previously stated, if I copy the EXACT command :

    ffmpeg -y -loop 1 -i image.png -vf 'fade=in:0:15,fade=out:105:15' -c:v mpeg2video -t 5 -s 1280x720 -r 30 -q:v 1 -preset ultrafast image.mpg

    and run it directly in the terminal, it works no problem.

    PLEASE HELP.