Recherche avancée

Médias (91)

Autres articles (60)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • 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

Sur d’autres sites (4270)

  • What is the most efficient way to trim and join multiple videos in ffmpeg ?

    27 avril 2020, par Patrick Oshea

    I have a python program that downloads a bunch of .mp4 videos into a directory for me and after running a few audio matching algorithms I need to trim the videos to a minute and eventually concantenate them all together.

    



    As of right now I do the following things to a video :
Trim it to a minute
Resize the videos so they're all the same size
Apply a picture to the video
And then pad the video (this is due to a weird glitch that occurs if I try joining all the videos together which results in the audio and video not being synched)

    



    Is there any way to combine some of the steps or things I should make sure I'm doing to do this as fast as possible ? Thank you in advance !

    


  • Compress Videos in Android using FFMPEG

    3 mai 2017, par Gaurav Kumar

    I have already put the gradle of writing minds to compress videos.

    compile 'com.writingminds:FFmpegAndroid:0.3.2'

    Now after syncing project, I have list of videos fetched from external or internal storage. videos of size upto 100 or 500 mb. Now when user clicks on that, video must compress and returned the compressed url so that i will be able to upload the compressed video to the server.

    Please suggest or do some lines of code or any guidance.
    Thanks in advance !!.

  • Can't able to combine mp4 videos using MP4Box

    30 décembre 2013, par rajeshkumar

    I am using MP4box to combine mp4(H264) videos, If two video will combine means, the videos are combine but the first video are repeating twice and its play. Before that i used FFmpeg to convert the mp4 videos as constant bitrate,dimensions etc. I thing that may problem occurs. I used the command as given below :

    ffmpeg -i inputfile.mp4 -r 25 -s 640x360 -ar 48000 -acodec copy -f mp4 -vcodec libx264 -vpre normal outputfile.mp4

    MP4Box -force-cat -cat outputfile1.mp4 -cat outputfile2.mp4 -new largeOutput.mp4

    Kindly suggest me any solution....