Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (60)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (11777)

  • checkasm/rv40dsp : cover more cases

    5 décembre 2024, par sunyuechi
    checkasm/rv40dsp : cover more cases
    

    Co-Authored-By : Ronald S. Bultje <rsbultje@gmail.com>
    Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>

    • [DH] tests/checkasm/rv40dsp.c
  • close the running application in vb.net from background

    25 novembre 2024, par TOM

    i want to stop the running (ffmpeg) process from background . i use the

    &#xA;&#xA;

      process.kill()  &#xA;

    &#xA;&#xA;

    i wrote the code . but in this process the output file is getting corrupted.

    &#xA;&#xA;

    Dim pProcess() As Process = Process.GetProcesses&#xA;  For Each p As Process In pProcess&#xA;   If p.ProcessName = "ffmpeg" Then&#xA;    p.WaitForExit(1000)&#xA;    p.Kill()      &#xA;    p.Close()&#xA;  End If&#xA;Next&#xA;

    &#xA;&#xA;

    is there any other method to terminate the process without file being corrupt

    &#xA;&#xA;

    thanks

    &#xA;

  • videos converted to gif with ffmpeg have a box pattern background

    18 mars 2017, par vasisdas

    I recently started using ffmpeg to convert small videos I make into gifs. However, I’m noticing that all gifs I make have a pattern background of some kind. It’s not too noticeable of a difference between the video and the gif, but you can see it clearly in the difference between the video preview and the gif preview :

    Original video on youtube

    Gif in imgur album, along with a thumbnail of the gif and the video

    The command I send to ffmpeg to convert :

    ffmpeg -i "video path" -pix_fmt rgb24 "output file path"

    I’ve tried it with and without the -pix_fmt rgb24. Any ideas what else it could be ?