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)

  • Edit random videos from youtube using ffmpeg

    15 janvier 2015, par Jacques le lezard

    I’m trying to edit several videos of different size, format, ratio, etc (random videos from youtube)

    As to edit these I use : ffmpeg -f concat -i videos.txt -s 1280x720 -c copy output/edited_video.mp4 All videos are listed in videos.txt

    But it doesn’t work like that, it seems ffmpeg need homogeneous videos to edit the finale video. For now the first video is displayed fine but the following are glitched...

    How can I homogenize any video to the same size, ratio, format, codec, ...?

    (For now I use : ffmpeg -i input/video.mp4 -r 30 -vcodec mpeg4 -s 1280x720 -c copy temp/video.mp4 but it seems it’s not enough.)

  • How to use ffmpeg to concatenate two videos of different aspect ratios ?

    10 décembre 2012, par sabes

    I have two videos, one 640x480 and one 480x640 and I want to use ffmpeg to concatenate them together, but I want the resulting video to be 640x640 with both of the videos letterboxed. Is there a way to do this ?

  • How to concatenate two videos and crop only one of them by using ffmpeg

    12 septembre 2013, par Tetsu

    I want to concatenate two videos.
    First video size is 720x420, and I want to crop 8px each side.
    Second Video size is 704x420, and I don't need to crop.

    And I want to resize the video 640x360 with encoding.

    How can I do it ? If both videos should be cropped, I can easily concatenate the videos like this.

    ffmpeg -i input1.avi -i input2.avi -filter_complex "concat=n=2:v=1:a=0, crop=704:420:8:0" -s 640x360 -vb 900k -an video.mp4

    How can I crop only one of the two videos ?