Recherche avancée

Médias (91)

Autres articles (54)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (8277)

  • Revision 0053b46d51 : make build_inter_predictors block size agnostic (split) All build_inter_predict

    17 avril 2013, par John Koleszar

    Changed Paths : Modify /vp9/common/vp9_blockd.h Modify /vp9/common/vp9_reconinter.c Modify /vp9/common/vp9_reconinter.h make build_inter_predictors block size agnostic (split) All build_inter_predictors can now be serviced by the same inner function. Change-Id : (...)

  • Split screen video cliping with FFMpeg

    11 avril 2014, par Justinas

    i have one video source with 4 different videos inside :
    enter image description here

    As you can see, i'm using VLC to view it and there is only one controlling window. If i press stop button, every 4 videos will stop and so on.

    Problem is, i have to use FFMpeg and cut mini-clip from this source, so it will be playable in all 4 windows again. Clipping ordinary video works just fine with command ffmpeg.exe -y -i $input -ss $startTime -t $length -acodec copy -vcodec copy $output 2>&1. But when used for this one split-screen video, i get only one source clip instead of all 4 in same place.

    Any detailed information about this video is welcomed because i don't even know how exactly this type of video is called, as well as any information about clipping with ffmpeg that video.

  • FFmpeg : How to split video efficiently ?

    4 novembre 2023, par Antony

    I wish to split a large avi video into two smaller consecutive videos. I am using ffmpeg.

    



    One way is to run ffmpeg two times :

    



    ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:00:00 -t 00:30:00 output1.avi
ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:30:00 -t 00:30:00 output2.avi


    



    But according to manpage of ffmpeg, I can make more than one ouput file from one input file using just one line :

    



    ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:00:00 -t 00:30:00 output1.avi \
   -vcodec copy -acodec copy -ss 00:30:00 -t 00:30:00 output2.avi


    



    My question is, does the later approach save computation time and memory ?