
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (49)
-
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (12756)
-
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 ?


-
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 ?

-
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