Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (54)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (9041)

  • set Volume level while mixing audios

    19 septembre 2017, par Vishnu

    I am using below code to mix audios

    $cmd = 'ffmpeg -y -i audio.mp3 -filter_complex "amovie=src/bg.mp3:loop=999[s];[0][s]amix=duration=shortest out.mp3';

    I want to set audio.mp3 volume to 75% and bg.mp3 to 50% , how can I do it ?

  • Remove unnecessary volume mount.

    22 décembre 2019, par blueimp
    Remove unnecessary volume mount.
  • Video conversion flow for HLS (m3u8) with Django and CloudFront

    29 mars 2020, par marcos silva de souza

    I was trying to find out how to do something like HLS to prevent BEGINNERS from hacking my content, and I think I got it a little after researching all night.

    Currently, I know I have to do the following :

    • install ffmpeg

    • convert the video after upload (I think it will be this way)

    • send the files, and offer the link to the .m3u8 file (which will be together with the .ts files)

    The question now is :

    • I don’t know yet how to set the cloudfront

    • I don’t know if I will need to use signed urls / cookies

    • I don’t know how to create the video conversion stream (I must use
      ffmpeg to convert and create the files, and then use the aws Python
      SDK to upload to AWS, and then change the video field, or even even
      delete the original video after upload, maybe in the save method ?)