Recherche avancée

Médias (1)

Mot : - Tags -/géodiversité

Autres articles (37)

  • Initialisation de MediaSPIP (préconfiguration)

    20 février 2010, par

    Lors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
    Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
    Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
    Dans un premier temps il active ou désactive des options de SPIP qui ne le (...)

  • 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 (...)

  • 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 (7657)

  • Stream part of the screen on linux

    1er juin 2014, par Boris Brodski

    How can I stream part of my screen using ffmpeg (avconv) on Linux ?

    I can record part of my screen :

    ffmpeg -f alsa -ac 1 -i pulse -acodec pcm_s16le -f x11grab -r 24 -s 100x200 -i :0.0+20,30 ...

    But trying to stream it adding

    -f rtp rtp://127.0.0.1:1234

    doesn’t work. ffmpeg starts to stream, but ffplay complains

    $ ffplay rtp://127.0.0.1:1234
    [rtp @ 0xaf8026a0] Unable to receive RTP payload type 96 without an SDP file describing it
    [rtp @ 0xaf8026a0] Estimating duration from bitrate, this may be inaccurate
    Input #0, rtp, from 'rtp://127.0.0.1:8080':
     Duration: N/A, bitrate: N/A
    rtp://127.0.0.1:8080: could not open codecs
    1401611400.39 A-V:  0.000 s:0.0 aq=    0KB vq=    0KB sq=    0B f=0/0  

    What do I missing ?

  • ffmpeg reduce image quality, NOT size [on hold]

    8 juin 2016, par ben_user6260230

    I successfully made a thumbnail from video using FFMPEG.

    ffmpeg -i 'video_location' -vf thumbnail,scale=160:120  -frames:v 1 'image_location.jpg'

    Is there any ’ffmpeg’ command to reduce image size without changing image scale ??

  • ffmpeg issue when recording screen+microphone+(music from file)

    9 juin 2016, par Taras Nikulin

    I’m trying to record using this command :

    ffmpeg -f avfoundation -pix_fmt nv12 -i "1:0" -r 30 -i monoSound.aac -filter_complex amerge=inputs=2 -vcodec h264 -qscale:v 0 -acodec aac -ab 128k -ac 1 -ar 44100 -async 30 outScreen.mp4

    I get such error :

    The following filters could not choose their formats: Parsed_amerge_0
    Consider inserting the (a)format filter near their input or output.
    Error configuring complex filters.
    Input/output error

    If i rewove this "-async 30", then no errors appear in terminal. But on final video sound will disappear after couple seconds.