Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (81)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (5647)

  • Looking for video libraries for editing video on windows/ios/azure service [on hold]

    17 juillet 2015, par sanyam

    Which library would be a good bet in terms of ...
    1. Richness in features (I want to create a video from short clips and images with effects and filters). Think auto videos created from Google Photos.
    2. Extensibility - I would prefer using similar tech on IOS and Windows apps. Might have to offload some processing to a web service on Azure (windows or linux).
    3. Programmability - An API is preferred over command line as it gives more flexibility and better error handling.

    Given all these options, what is my best bet ? I’ve only looked at ffmpeg till now, is there a better alternative ?

  • How to run script on Windows to get the files from the current directory ?

    8 juillet 2015, par pcroland

    For example I have directory on the Desktop called "encode". It contains a video file and a script. And I want that the script get the files from the folder where the script is.

    for %%a in ("*.mkv") do C:\encode\ffmpeg.exe -i "%%a" -c:a ac3 -b:a 192k "encode\%%~na.ac3"
    pause

    How should I do that ?

  • ffmpeg Frames to mp4 (Windows)

    8 juillet 2015, par Somax

    I am trying to combine my frames to a video now for like an hour and I have huge problems with ffmpeg. It keeps on telling me that the directory doesnt exist and i have no idea how to make it right...

    ffmpeg is in C :/ffmpeg
    the frames are in C/ffmpeg/render
    they are named : output_0001.png to output_0150.png

    I want to have 24 Frames per secound.
    what do i have to do in the cmd ?

    i tryed like "ffmpeg -r 30 -i c :/ffmpeg/render/output_%24.png video.mp4"

    What am i doing wrong ?