Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (52)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • 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.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (6412)

  • Video conversion too long

    13 décembre 2016, par Ilya Shpakovsky

    I use NReco.VideoConverter for convert flv to ogv. But this process is too long. I tried to convert 200M video but it took more than hour. The code I use :

    var ffMpeg = new FFMpegConverter();
    command = String.Format("-i \"{0}\" -c:v libtheora -c:a libvorbis -preset ultrafast \"{1}\"", inputFile, outputFile);
    ffMpeg.Invoke(command);

    Could anyone suggest me how to improve the performance of conversion ? Thanks in advance.

  • converting Rtsp stream to .wav and parallel y to bytes while stream is running

    17 février 2016, par suresh

    Thanks in advance ,I am converting rtsp live stream to .wav file using ffmpeg.Its converting good but i want to convert .wav file to byte stream parallely at the time of converting rtsp to .wav file

  • Decode to multiple wavs using ffmpeg ?

    15 mars 2012, par get8p

    Heythere, good man.
    My goal is to decode an ac3 from avi to multiple wavs - each for each channel, using ffmpeg, please, help me with that.

    Now, using

    ffmpeg.exe -i teh.avi -c:a copy teh.ac3 teh.wav

    Would decode it to a sinle wav, and typing teh.wavs won't help...
    I know it can be done with other tools, but I want to know how it's achievable with ffmpeg. Thank in advance.