Recherche avancée

Médias (91)

Autres articles (61)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (6043)

  • Improved NoScript usability.

    23 octobre 2012, par Sebastian Tschan

    + css/jquery.fileupload-ui-noscript.css m index.html m js/main.js Improved NoScript usability.

  • FFMPEG : 4-channel audio workflow suggestions ?

    14 août 2016, par Anton Outkine

    I’ve got a bunch of stereo files recorded for a documentary with a Zoom in 4 channel mode. Basically it’s sets of pairs of stereo file s— file A would be a stereo file with a lav or boom mike recording, file B of identical length would be a proper stereo recorded by Zoom itself.

    Now I’m trying to convert all this into something I can correctly ingest into editing suite. Files A are a mess but I came up with a ffmpeg script which downconvert them to mono then reconvert them back to stereo (to get rid of inconsistensies). Now how do I merge two stereo files into a single WAV or AIFF file containing two separate stereo channels ? I browsed around for any workflows and/or standards on that but can’t really find anything useful.

    Any ideas on how to do that with ffmpeg (or anything else, really) would be appreciated !

  • ffmpeg - improving quality

    14 juillet 2017, par jdjmedia

    My current CMS uses ffmpeg to encode videos. The source is MP4 and output is MP4. Here is the current line it uses :

    [2017-07-13 09:00:11] Executing : export
    FFMPEG_DATADIR=/home/httpd/html/domain.com/public_html/cms_admin//includes/presets/ ; /usr/local/bin/ffmpeg -y -i
    "/home/httpd/html/domain.com/public_html/cms_admin//storage//J80KTXaG4aE8FLHF0NZVUDB7PDMR487Q.mp4"
    -i "/home/httpd/html/members.domain.com/public_html/content/upload/scene/1080p/hys_katya.mp4"
    -i "/home/httpd/html/domain.com/public_html/cms_admin//storage//CZ6JY641aXDYCLNC7UTBMMCJRFXABJ6U.mp4"
    -filter_complex ’[0:0] [0:1] [1:0] [1:1] [2:0] [2:1] concat=n=3:v=1:a=1 [v] [a]’ -map ’[v]’ -map ’[a]’ -sn -b:v 12000k
    -vcodec h264 -pix_fmt yuv420p -r 30 -acodec aac -strict experimental -ab 127k -ar 44100 -ac 2 -dn -vpre hq -movflags faststart -s 1920x1080 -aspect 16:9 -f mp4 -vprofile high

    I have noticed that the quality it not that great. Any recommendations on what flags I might be able to use to make the output higher quality ?