Recherche avancée

Médias (91)

Autres articles (54)

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

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

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

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