Recherche avancée

Médias (91)

Autres articles (104)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (7014)

  • It’s Piwik Analytics Survey time : Your Opinion Matters !

    10 juillet 2014, par Piwik Core Team — Community

    It’s been almost two years since our last survey. We were so happy to get the participation we did from the community last time and hope that you will once again share your thoughts !

    Piwik Survey

    Fill in the survey

    Looking back on the previous survey, several features were implemented as a direct result :

    • New app design with Morpheus theme
    • Piwik Marketplace for Plugins
    • Visitor Profile
    • Performance and Reliability Improvements
    • Theming
    • Migrated from SVN to Github !
    • And much more…

    Now it is time to ask for your opinion again. Sure it’s only 20 short questions, but your time you take and energy you place in this endeavour will shape Piwik development and features for the near future. We really look forward to your ideas, your opinions and your suggestions. To get started click the box (or link) below :

    Piwik Survey

    Fill in the survey !

    By the way, if you haven’t already make sure you sign up for our newsletter to make sure you get the latest Piwik news and information to your inbox ! You can subscribe here.
  • Splitting m4a into multiple files with ffmpeg

    16 juillet 2020, par ARuiz

    I have an audio file (.m4a) and want to split it into smaller pieces using ffmpeg. All answers I have seen do something along one of the following two possibilities :

    


      

    1. ffmpeg -i inputFile -map 0 -f segment -segment_time 60 -c copy "$output%03d.m4a
    2. 


    


    or

    


      

    1. ffmpeg -i inputFile -acodec copy -ss start_time -to end_time outputFile
    2. 


    


    With 1. the first file is fine. From the second file on, I just get a minute of silence in quicktime, and in VLC the file plays but the timing is odd : for example the second file should have second 0 equals to second 60 in the original file. However in vlc it starts playing on second 60 and goes on to second 120.

    


    With 2. I have to set start times and end for each file, unfortunately I notice a small jump when I play one after the other, so it seems as if some miliseconds are lost.

    


    There are definitely a few old questions asked around this, but none of them actually helped me with this.

    


  • Convert video to mp4 ffmpeg [duplicate]

    5 décembre 2017, par Khalid Askia

    This question already has an answer here :

    I have set up a website in which I allow users to upload videos. But I’am using the HTML5 video tag which only plays mp4 videos.
    So I want to be able to convert any type of video the users upload to mp4.
    I wanted to install ffmpeg on my web hosting server but they do not support it. So I’m really stuck and I do not know what to do.
    Is there a way to use ffmpeg in my php script without installing it on the server ? If no, there is another solution ?

    Thank you !