Recherche avancée

Médias (0)

Mot : - Tags -/signalement

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (66)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (7425)

  • FFmpegInterop.UWP or VLC.MediaElement for UWP apps

    13 novembre 2018, par Weissu

    Which one is better choice for UWP ? VLC is really easy to start to use but FFmpeg more complicated (read : difficult). But if we are thinking for example licenses, support of different format, casting, media tags, converting , subtitles and audio support, video/audio editing etc.

    Any experiences ?

  • combine two audio files with a command line tool

    29 août 2018, par holographix

    I’ve to merge two (or more) audio files (like a guitar and a drum track) into a single file.
    I’m running over linux CentOS and I’d need a command line tool to do so, because I’ve got to run this as part of a background process, triggered via crontab of a custom bash script.
    I also need to be able to change the pan, volume, trim and start time (i.e I want the guitar track to start after 1.25ms after the drum track so that they can be both in sync with each other).

    My first choice would be ffmpeg, but I was wondering if there could be something more specific, reliable and less fuzzy than ffmpeg.

    thx a ton !
    - k-

  • FFMPEG video overlay with remote overlay source

    19 mai 2012, par Dasas

    I'm trying to achive an overlay with ffmpeg wich take the overlay source from a "remote" video encoder.

    Just for the sake of testing i'm using random online video source.

    As you will notice in the code below the source and the overlay are the same. That's not the problem.

    The command i'm using at the moment is the following :

    ffmpeg -f mjpeg -i http://81.20.148.158/anony/mjpg.cgi  -vf "movie=http://81.20.148.158/anony/mjpg.cgi [mv]; [in][mv] overlay=0:0" output.avi

    Here an easy-to-read version :

    ffmpeg
    -f mjpeg
    -i http://81.20.148.158/anony/mjpg.cgi  
    -vf "movie=http://81.20.148.158/anony/mjpg.cgi [mv]; [in][mv] overlay=0:0"
    output.avi

    I'm getting this error :

    Missing key or no key/value separator found after key '//81.20.148.158/anony/mjpg.cgi'

    It works pretty well if i use a "local" video source such as

    ffmpeg
    -f mjpeg
    -i http://81.20.148.158/anony/mjpg.cgi  
    -vf "movie=a.flv [mv]; [in][mv] overlay=0:0"
    output.avi

    I have the feeling something is wrong with the double slashes // or more likely with the : in http://...

    Thanks,
    Francesco.