Recherche avancée

Médias (91)

Autres articles (106)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

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

  • Revision 191 : Edited wiki page through web user interface.

    11 mai 2010, par marc.noirot

    Changed Paths :
     Modify /wiki/CheckMessages.wiki



    Edited wiki page through web user interface.

  • Revision 192 : Edited wiki page through web user interface.

    11 mai 2010, par marc.noirot

    Changed Paths :
     Modify /wiki/CheckMessages.wiki



    Edited wiki page through web user interface.

  • Batch file - Using pipe command after opening a cmd prompt

    20 janvier 2021, par Julien nist

    I am currently trying to create a batch file which will do the following :

    


      

    1. Open a cmd prompt
    2. 


    3. Execute a ffmpeg | sox (audio shenanigans for my project)
    4. 


    5. Open another cmd prompt
    6. 


    7. Execute the same ffmpeg | sox with different parameters
    8. 


    9. ...
    10. 


    


    My current script is as follow :

    


    start /min cmd /k "ffmpeg -i http://localhost:8000/xxx -f flac - | sox - -t flac E:\Extracts\xxx.flac silence 1 0.50 0.1% 1 2.0 0.1% : newfile : restart"


    


    But when executing this, only the first ffmpeg part will be effectively executed in the new prompt. The command is working well if launched manually though.

    


    Any idea on why the redirection doesn't work ? I tried to split the cmd with variable names, and a couple workaround but no solution atm.

    


    Thanks a lot

    


    Julien