
Recherche avancée
Autres articles (41)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (6542)
-
Revert "configure : add #include "version.h" to config.h"
28 novembre 2013, par Michael NiedermayerRevert "configure : add #include "version.h" to config.h"
This reverts commit ca21116b3f53a9bdd74364bfab9cde70a044b165.
Revert suggested by Jamal :
"Bad secondary effect i just noticed : Every time version.h is changed
(git pull for example), anything that includes config.h will be
recompiled. And that means pretty much every single file in the tree.
" -
What's the meaning of return val about the "write_packet()/seek()" callback functions in "AVIOContext" struct ?
12 février 2019, par pangoI’m writing a muxer DirectShow Filter using libav, I need to redirect muxer’s output to filter’s output pin, So I use
avio_alloc_context()
to create AVIOContext with mywrite_packet
andseek
callback functions, these 2 functions are defined below :int (*write_packet)(void *opaque, uint8_t *buf, int buf_size)
int64_t (*seek)(void *opaque, int64_t offset, int whence)I can understand the meaning of these functions’ input parameters, but what’s the meaning of its return ? Is it means the bytes written actually ?
-
Direct convert "mkv" to "wav" using python [duplicate]
4 janvier 2023, par Sr7How can I directly convert an "mkv" file to a "wav" file ? It means that my goal is to extract the audio of a movie file using python. What is the process of this ?


Can anybody help me with how I can do it ?


My Python version is 3.10.8 and I guess it is possible with ffmpeg or moviepy. I have tried converting "mkv" to "mp4" and then extracting the audio as "wav", but I want to know is there any direct way to do this task ?