
Recherche avancée
Autres articles (46)
-
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 (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (5335)
-
ffmpeg equivalent for sox -t ima
14 décembre 2022, par LucasMI am trying to use ffmpeg to combine 1 audio file (ADPCM) and 1 video file (h264) into single mp4. Video by file conversion works fine but ffmpeg chokes on guessing audio input. I can't figure out how to tell ffmpeg which params to use to decode raw audio file.


Currently I first run sox to convert raw audio to wav :


sox -t ima -r 8000 audio.raw audio.wav



... then feed audio.wav from sox as ffmpeg input


ffmpeg -i video.raw -i audio.wav movie.mp4



I am trying to avoid sox step and use audio.raw in ffmpeg.


Thank you


-
What's the equivalent of "MP4Box -hint" in ffmpeg ?
7 janvier 2023, par Roman GaufmanI currently run my ffmpeg command to record the video then afterwards run
MP4Box -hint file.mp4
to make the file stream quicker for the web. Is there any way for ffmpeg to "hint" my file straightaway without the extra step ?

-
GStreamer equivalent to FFmpeg Remap
16 février 2023, par ColeI currently have an FFmpeg command that looks like the following (i.e. uses the remap filter operation) :


ffmpeg -y -i camera.mp4 -i x.pgm -i y.pgm -lavfi remap output.mp4



I am now interested in doing this same processing in real-time using GStreamer.


Does an equivalent GStreamer element exist ?


If not, is there a way to use the FFmpeg remap filter inside of the GStreamer framework ?