Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (75)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (10801)

  • I need to find the progress of the task being done by ffmpeg.exe and redirect it to the progress bar in my windows forms application ?

    22 avril 2019, par Malindu Dilanka

    I am creating a simple video converter using ffmpeg.exe tool. So, in order to display the progress of the conversion, I need to grab the output of ffmpeg cmd output and then transfer it to my textbox in the windows forms application. Or, maybe I could get the progress of the ffmpeg task and transfer it to a progress bar. How can I do any of these ?

    I tried using 2> something.txt to save the output from cmd inline with the command. But, when reading it, I am not able to update textbox.

  • Cmd - find some files and execute a command on that file

    31 mars 2019, par MrAlex

    In my case, i need to find all .flv files in my drive, transcode them with ffmpeg and then delete them but i don’t know how to run the command on each of them

  • Xcode cannot find symbol for particular source

    19 novembre 2014, par onemach

    I have an iOS project utilizing ffmpeg. The library is pre-built and copied to the project tree

    ffmpeg/
    ├── include
    │   ├── libavcodec
    │   ├── libavdevice
    │   ├── libavfilter
    │   ├── libavformat
    │   ├── libavresample
    │   ├── libavutil
    │   ├── libpostproc
    │   ├── libswresample
    │   └── libswscale
    └── lib
       ├── libavcodec.a
       ├── libavdevice.a
       ├── libavfilter.a
       ├── libavformat.a
       ├── libavresample.a
       ├── libavutil.a
       ├── libpostproc.a
       ├── libswresample.a
       └── libswscale.a

    .h files are omitted above for clarity.

    In the Build Setting, the Header Search Paths and Library Search Paths are added respectively.

    When compiling, Xcode complains about tens of Undefined symbols for architecture x86_64, all about ffmpeg. All the errors come from the same source file. And in another source file, no error is given though it also utilize ffmpeg.