Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (62)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (9337)

  • doc/html : support texinfo 7.0

    8 novembre 2023, par Frank Plowman
    doc/html : support texinfo 7.0
    

    Resolves trac ticket #10636 (http://trac.ffmpeg.org/ticket/10636).

    Texinfo 7.0, released in November 2022, changed the names of various
    functions. Compiling docs with Texinfo 7.0 resulted in warnings and
    improperly formatted documentation. More old names appear to have
    been removed in Texinfo 7.1, released October 2023, which causes docs
    compilation to fail.

    This commit addresses the issue by adding logic to switch between the old
    and new function names depending on the Texinfo version. Texinfo 6.8
    produces identical documentation before and after the patch.

    CC
    https://www.mail-archive.com/debian-bugs-dist@lists.debian.org/msg1938238.html
    https://bugs.gentoo.org/916104

    Signed-off-by : Frank Plowman <post@frankplowman.com>

    • [DH] doc/t2h.pm
  • How to put the output of ffmpeg into a pipe in Python ? [duplicate]

    16 février 2023, par Eric Palmer

    I'm trying to use python to feed the results of ffmpeg into a pipeline, and then I can use this pipeline for subsequent operations (such as rtmp streaming). I've written the correct command, but I don't know how to accomplish this with Python.

    &#xA;

    I wrote the following code in the Shell, it can run correctly.

    &#xA;

    ffmpeg -re -i &#x27;2023-02-16_21:02:50.mp4&#x27; -f mpegts -c:v copy -c:a aac -vbsf h264_mp4toannexb pipe:1.ts | cat >> push&#xA;

    &#xA;

    When I'm trying to do the above in Python, I'm getting an error.

    &#xA;

    cat: &#x27;>>&#x27;: No such file or directory&#xA;

    &#xA;

    Here is my python code.

    &#xA;

    command = [&#xA;    &#x27;docker&#x27;,&#xA;    &#x27;run&#x27;,&#xA;    &#x27;-v&#x27;,&#xA;    f&#x27;{cwd}:{cwd}&#x27;,&#xA;    &#x27;-w&#x27;,&#xA;    f&#x27;{cwd}&#x27;,&#xA;    &#x27;jrottenberg/ffmpeg&#x27;,&#xA;    &#x27;-re&#x27;,&#xA;    &#x27;-i&#x27;, f&#x27;{video_path}&#x27;,&#xA;    &#x27;-f&#x27;, &#x27;mpegts&#x27;,&#xA;    &#x27;-c:v&#x27;, &#x27;copy&#x27;,&#xA;    &#x27;-c:a&#x27;, &#x27;aac&#x27;,&#xA;    &#x27;-vbsf&#x27;, &#x27;h264_mp4toannexb&#x27;,&#xA;    &#x27;pipe:1.ts&#x27;,&#xA;]&#xA;&#xA;pa = subprocess.Popen(&#xA;    command,&#xA;    stdout = subprocess.PIPE,&#xA;    stderr = error_file&#xA;)&#xA;&#xA;command = [&#xA;    &#x27;cat&#x27;,&#xA;    &#x27;>>&#x27;,&#xA;    f&#x27;{pipe_name}&#x27;&#xA;]&#xA;&#xA;with pa.stdout:&#xA;    pb = subprocess.Popen(&#xA;        command,&#xA;        stdin = pa.stdout,&#xA;        stdout = error_file,&#xA;        stderr = error_file&#xA;    )&#xA;

    &#xA;

  • change audio part from mkv video file to flac audio file without losing quality [closed]

    29 août 2023, par Jimmy wu

    how could I write a Linux command to manipulate ffmpeg to change audio part from mkv video file to flac audio file without losing quality ?

    &#xA;

    I use following command and I found that the size of audio file is almost the same as video file.

    &#xA;

    ffmpeg -i "2023-08-28 15-32-02.mkv" -ss 0:0:0 -to 1:9:2&#xA;&#xA;8 -vn -c:a flac 2023_08_28_CPU_DV_1.flac&#xA;

    &#xA;

    what command should I use ?

    &#xA;

    I want to change "only audio part" from mkv video file to flac audio file without losing quality,

    &#xA;

    then the size of file would not be that big

    &#xA;