Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (66)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (8118)

  • How to pass options to ffmpeg from SoX ?

    8 octobre 2012, par beardedlinuxgeek

    I'm trying to combine and encode some files from wav to m4a. I installed both ffmpeg and sox from source to make sure nothing was disabled. When I do the conversion with ffmpeg

    ffmpeg -i input.wav -acodec aac -strict experimental output.m4a

    it works fine. When I use SoX

    sox input.wav output.m4a

    I get the error

    [NULL @ 0x251b4e0] Codec is experimental but experimental codecs are not enabled, see -strict -2
    sox FAIL ffmpeg: ffmpeg could not open CODEC
    sox FAIL formats: can&#39;t open output file `output.m4a&#39;:

    I need to way to get SoX to tell ffmpeg that its ok to use the experimental codecs.

    Also I already tried using this guide http://ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide to install the fdk-acc encoder, but it didn't work. The experimental one works fine so I'd rather just use that.

  • ffmpeg x11grab inputting improperly

    20 décembre 2017, par Not a superuser

    I have the stock ffmpeg install from the xbps repository. I’ve used it before, but am on a new system.

    Running "ffmpeg x11grab -video_size 1280x800 -framerate 60 -i $DISPLAY output.mkv" yeilds no errors, but when I watch the video it is a mess switching between workspaces and with only partly rendered programs.

    Taking other inputs such as webcam work fine, and different encoding methods don’t change anything (though webm flat out doesn’t work, but that’s not a problem for me).

    I’ve tried what’s here : https://wiki.archlinux.org/index.php/FFmpeg

    Only other thing to note is that I use i3 as a dm, which shouldn’t be a problem, but figured I’d state it just in case.

    EDIT :
    I was using compton for composite, and that was where my issue lied...
    https://github.com/chjj/compton/issues/381

    Thanks !

  • Problem with processing FFMPEG video , the output video is totally black in first 3 seconds

    13 janvier 2021, par Trần Minh Tuấn

    I want to make a slideshow by using concat demuxer like this link :&#xA;https://trac.ffmpeg.org/wiki/Slideshow

    &#xA;

    Here is the textfile preinputFiles.txt :

    &#xA;

    file &#x27;path a&#x27;&#xA;duration 2&#xA;file &#x27;path b&#x27;&#xA;duration 2&#xA;file &#x27;path c&#x27;&#xA;duration 2&#xA;file &#x27;path c&#x27;&#xA;

    &#xA;

    and my command array is :

    &#xA;

    String[] cmd = new String[]{&#xA;            "-f","concat","-i",&#xA;            textFile,&#xA;            "-vsync", "vfr", "-pix_fmt", "yuv420p",&#xA;            dest.getAbsolutePath()};&#xA;

    &#xA;

    the video has 3 seconds that it is totally black and run from 3s to 9s even the gallery shows that it is a 6 seconds long video .

    &#xA;

    Thanks for the help !

    &#xA;