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 (8486)

  • ffmpeg modify audio length/size ( stretch or shrink)

    14 juin 2016, par mido

    I am developing a web app, where people can record videos. I have been able to send chunks of audio n video to server successfully, where I am trying to combine them and return as single proper file.

    my problem is if the recording is for one hour, after merging the chunks

    video length : 1:00:00 , audio length : 00:59:30,

    now, this is not a issue of audio not getting recorded( I have checked that), the problem is, somehow, when i merge the chunks of audio, it shrinks,

    I find that it is progressive sync issue where it gets worse and worse as time increases.

    I have searched the net for the solution, most places say async, I have tried using it, but to no avail, is the below usage correct ?

    ffmpeg  -i audio.wav -async 1 -i video.webm -y -strict -2 v.mp4

    (v.mp4 is the final file that I provide to the users.)

  • add tools/compare-cvelists.sh

    23 février, par Michael Niedermayer
    add tools/compare-cvelists.sh
    

    This compares the MITRE CVE list with our webpage security list and
    produces a diff, so people can investigate, fix, backport and correct
    differences

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tools/compare-cvelists.sh
  • How to convert AC3 audio to Wav audio ?

    18 janvier 2023, par Joey Joestar

    I would like to convert a AC3 audio file (ATSC A/52 aka AC-3 aka Dolby Digital stream 6 channels) to Wave audio file (16khz mono/1 channel).

    &#xA;

    While searching on the internet, a lot of people just used ffmpeg -i file.ac3 file.wav however, i'm not sure if that even works.

    &#xA;

    I keep getting

    &#xA;

    [ac3 @ 0x55ac1a0b0660] exponent -1 is out-of-rangets/s speed= 125x&#xA;[ac3 @ 0x55ac1a0b0660] error decoding the audio block&#xA;[ac3 @ 0x55ac1a0b0660] frame sync error&#xA;Error while decoding stream #0:0: Invalid data found when processing input&#xA;etc&#xA;

    &#xA;

    while I do the same command.&#xA;How do I convert ac3 to wav (16khz mono) ?

    &#xA;

    *Note :&#xA;I also tried ffmpeg -i file.ac3 -codec:a:1 ac3 -codec copy -b:a 384 file.wav -ac 1 -ar 16000. But this doesn't output an actual wav file.

    &#xA;