Recherche avancée

Médias (91)

Autres articles (86)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • 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 (8194)

  • Problems encoding FLAC

    26 avril 2019, par aekio

    I’ve been following this example and have been able to encode a wav file to MP3. Now I want to try FLAC encoding.

    I have two problems.
    1. The FLAC file i create has no header metadata at all. How would I go about having that generated ?
    2. If I decode my FLAC file via command line I get a slightly distorted version of my original WAV file.

    shorthand of what I do :
    For Frame_size times I shift in two 16bit samples(S16 format) into Frame->Data[0] (32bit). Then call my normal encoding routine that’s been working for MP3 encoding.

    FFMPEG version 3.4.4-ubuntu stock package.

    Any ideas of where I might be taking a wrong turn ?

  • Evolution #3471 : Besoin d’installer pleins de plugins d’un coup

    1er avril 2019

    Ben non, quand j’active un plugin, je n’ai toujours pas le moyen de rester sur la page de recherche des plugins :(
    [Télécharger] [Activer]
    Il manque [Activer et continuer à chercher]

  • Why does ffplay read both video and keyboard input from stdin ?

    27 janvier 2016, par cxrodgers

    I’m trying to compress a video feed from a webcam while simultaneously displaying it, using ffmpeg and ffplay. I do actually have this working, but I want to disable the ffplay window from interpreting keyboard presses.

    It took me a while to figure this out but here’s what I’m using :

    ffmpeg -f video4linux2 -i /dev/video0 -vcodec mpeg4 -f rawvideo - \
     | tee output.mkv \
     | ffplay -fflags nobuffer -

    (Actually I am doing all of this from a Python script using the subprocess module. Here I have represented it as a straightforward terminal command because the result is the same.)

    So this actually works and does everything I want. The only thing is that if the ffplay window is active, it interprets keypresses (like "F" for fullscreen). Instead I want it to completely ignore all keypresses.

    My questions :

    1. How is this even possible ? I thought I was redirecting video input to stdin, and then telling ffplay to read video from stdin. How can keypresses be multiplexed on the same pipe ?
    2. How can I disable this behavior ? I tried "-nostdin" but it doesn’t work with my version.

    # ffplay -nostdin output.mkv

    ffplay version N-77455-g4707497 Copyright
    (c) 2003-2015 the FFmpeg developers built with gcc 4.8 (Ubuntu
    4.8.4-2ubuntu1 14.04)

    ...

    Failed to set value ’output.mkv’ for option ’nostdin’ : Option not
    found