
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (67)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 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, parMediaSPIP 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, parMé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 Plowmandoc/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/916104Signed-off-by : Frank Plowman <post@frankplowman.com>
-
How to put the output of ffmpeg into a pipe in Python ? [duplicate]
16 février 2023, par Eric PalmerI'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.


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


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



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


cat: '>>': No such file or directory



Here is my python code.


command = [
 'docker',
 'run',
 '-v',
 f'{cwd}:{cwd}',
 '-w',
 f'{cwd}',
 'jrottenberg/ffmpeg',
 '-re',
 '-i', f'{video_path}',
 '-f', 'mpegts',
 '-c:v', 'copy',
 '-c:a', 'aac',
 '-vbsf', 'h264_mp4toannexb',
 'pipe:1.ts',
]

pa = subprocess.Popen(
 command,
 stdout = subprocess.PIPE,
 stderr = error_file
)

command = [
 'cat',
 '>>',
 f'{pipe_name}'
]

with pa.stdout:
 pb = subprocess.Popen(
 command,
 stdin = pa.stdout,
 stdout = error_file,
 stderr = error_file
 )



-
change audio part from mkv video file to flac audio file without losing quality [closed]
29 août 2023, par Jimmy wuhow could I write a Linux command to manipulate ffmpeg to change audio part from mkv video file to flac audio file without losing quality ?


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


ffmpeg -i "2023-08-28 15-32-02.mkv" -ss 0:0:0 -to 1:9:2

8 -vn -c:a flac 2023_08_28_CPU_DV_1.flac



what command should I use ?


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


then the size of file would not be that big