Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (83)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

Sur d’autres sites (6088)

  • Convert webm to mp3 using python ?

    28 avril 2020, par Andy_ye

    Yes I know that this has been asked many many times, but the libraries on every single answer just ends up needing ffmepg.

    



    The problem with that is that the file size increases dramatically when I include ffmpeg to my project, and I just don't want that.

    



    I want to keep my project as lightweight as possible without needing to add 200 meabytes of data just for video to audio conversion which is just a very small part of the project.

    



    So is there any way to

    



      

      1. 

      2. not use ffmpeg
      3. 


    • 


      1. 

      2. use another lightweight converter with a python wrapper
      3. 


    • 


      1. 

      2. just use the parts in ffmpeg where the webm to mp3 conversion is actually taking place
      3. 


    • 


    


  • Xcode iOS import FFMPEG-ios binary

    24 mai 2016, par AlecGamble

    So I have an Xcode project which I built for my mac recently as a .cpp file. It utilises OpenCV and FFMPEG to apply a filter effect to a video by splitting it into frames using FFMPEG then applying some OpenCV matrix manipulation to it and then using FFMPEG to recompile it into a video format. I wanted to port this effect to an iOS project I’m working on however previously I was just using system to directly pipe the commands for FFMPEG rather than importing the libraries (which I know is probably terrible practice and I want to move away from, it was just convenient at the time).

    So in my new project I have downloaded the ffmpeg ios binaries from :

    https://downloads.sourceforge.net/project/ffmpeg-ios/ffmpeg-ios-master.tar.bz2

    and linked all of the .a files with the project.

    enter image description here

    I was wondering if this is the correct approach and where to go from here ?

    previously I was just using :

    system(
        "ffmpeg "
        "-i /Users/.../video/filename"
        "-r 30 "
        "/Users/.../pictures/img_%03d.png"
        );

    Does anybody know how I could achieve the same effect now ?

    Thanks.

  • playing .avi,divx,mov video formats in android

    9 janvier 2012, par John

    I am developing an android project in which i need to play .avi,mov,divx format videos.I think android doesn't support these formats.

    I have downloaded ffmpeg codec and loaded the library "libffmpeg.so" in my project using android ndk and JNI.

    Now,how can i use this "libffmpeg.so" to play those video formats.

    My project directory structure is like this.

    enter image description here

    Any one please help.