Recherche avancée

Médias (1)

Mot : - Tags -/intégration

Autres articles (83)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (9053)

  • Extract audio from webm video into m4a audio files

    21 août 2017, par theonlygusti

    Can I use ffmpeg or another command-line tool (I recently downloaded mkvtoolnix for example) to directly extract audio into m4a files from webm videos ?

    I’ve previously been doing this 2-step process :

    ffmpeg -i input.webm temp.mp4
    ffmpeg -i temp. mp4 -vn -c:a copy audio.m4a

    Problems are that the first command is so slow, seemingly needlessly slow as the second command completes consistently in less than a second. Also, it’s a pain to have to alternate between the two different commands.

    Is there a single command I can use to put the audio of a webm video in a .m4a audio file ?

    I am also looking for a solution for .mkv files

  • How can I fill skipped video frames of a movie with duplicated frames using ffmpeg ?

    28 août 2017, par Aviv Sharon

    I have an avi movie that contains some skipped frames (can be easily seen with virtual dub, that it duplicates them to the previous frame).
    My question is how can I use ffmpeg tool to convert a movie to be the same, just to fill the skipped frames with the previous ones, without changing the compression, using the very same source frames.
    I know there is a "-vsync cfr" option that works when re-encoding ("-vcodec [some codec]"), and there is "-vcodec copy", which maintains the codec and quality. However, these 2 ("-vsync cfr -vcodec copy") are not working together. In such case, the output video is the same as the input video (bit-exact).

    Any clue how can I do it ? Thanks

  • ffplay is not getting compiled on Amazon EC2

    12 septembre 2017, par Durgesh

    Asking this question as similar questions of stackoverflow didn’t help me.

    I wanted to install ffplay tool on my Amazon EC2 (Linux) instance. I have cloned the code from FFmpeg’s official git repository.

    executed ./configure and make. After these commands, there was no ffplay binary created. Only ffmpeg, ffprobe and ffserver binaries were generated.

    Later tried with executing ’./configure —enable-ffplay’ as suggested in few posts of web. Even this didn’t work. Also i did not found any static binaries of ffplay which i could use for my testing

    Can anyone suggest what was wrong with my build procedure ?