Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (67)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (13094)

  • 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;