Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (106)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (8255)

  • ffmpeg batch converting audio files in windows

    27 juin 2021, par Techie Android

    I have a lot of wav files (each with respective names) that need to be converted from wav to mp3 and I have been trying to write a batch file to do this.

    



    I'm using the latest nightly build of ffmpeg on Windows 10 Insider build.

    



    I've looked through the ffmpeg documentation but can't find anything on this.

    



    I'm looking for a very simple and up-to-date ffmpeg script to accomplish this task.

    


  • Syntax error python windows mp4dash.py

    7 avril 2017, par MSaudi

    I’m trying to encode video using mp4dash on windows 7. Downloaded sdk and after running the command :

    mp4dash --widevine-header provider:widevine_test#content_id:2a --encryption-key 90351951686b5e1ba222439ecec1f12a:0a237b0752cbf1a827e2fecfb87479a2 vid_bigbuckbunny2.mp4

    I get Syntax error at this line :

    print 'Parsing media file', str(file_list_index)+':', GetMappedFileName(media_file)
  • fmmpeg with windows file with random names

    15 juin 2022, par slimguat

    I have in Windows system some jpg files with this file name style :

    


    fixedname_xxxnumber_randomtext.jpg


    


    I want to use ffmpeg library to generate animation based on these images, but I don't know how to put it with that random part at the end, the only thing I can do is to remove manually all that random text and create a script like in this example.

    


    ffmpeg -start_number 100 -framerate 10 -i fixedname_%%03d.jpg


    


    is there any way to add a symbol like * to just take whatever comes after the order ?