Recherche avancée

Médias (91)

Autres articles (33)

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

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

Sur d’autres sites (5086)

  • ffmpeg : cutting 20 seconds of video starting from the middle time in a bash cycle

    12 janvier 2023, par Isabelle

    im in a bash script looping a dir full of .mp4 video files each one with a different lenght.
Now : how can i cut 20 seconds starting in the exact middle of any video ?
For a single file i can read manually the duration of the video so i know at what second start cutting : e.g.
for a 120 sec. video i use

    


    ffmpeg -i "tmpfile.mp4" -ss 60 -t 20 -c copy "outputfile.mp4" 2>/dev/null

    


    but now the problem is that the "-ss" value should be a variable with the (total lenght of video/2)
some videos are long less than a minute, some are long many minutes, and some are more than one hour.

    


    Thanks

    


    Cant find a middle time value to start cutting

    


  • Unknown OS MinGW and MSYS (ffmpeg / JAVE)

    26 novembre 2015, par Hendrik_the_best

    I Have been at this for about 3 hour and i’ve tried everything i can think of.
    I’ve been trying to compile/build ffmpeg (because the one thats give with JAVE( http://www.sauronsoftware.it/projects/jave/ ) gives me a error when i’m trying to run it.
    I really suck at this but i still hope someone will help :)

    I’m on windows 10 and I have all the latest versions from git bash, mingw and msys installed.

    Screen shot from the

  • concatenation with ffmpeg produces significantly longer video

    8 octobre 2022, par Will Thomas

    I've spent all morning trimming some screen-recorded clips and now I'm trying to stitch them all together, but the resulting video is significantly longer, and the audio is off.

    


    The first clip within the video is fine, but for the rest of the video the audio is all over the place. All of the clips were all recorded from my screen and encoded identitcally, so they all have the same resolution, framerate, and enconding.

    


    I've tried the following :

    


    ffmpeg -f concat -i list.txt -c copy out.mp4


    


    And an attempt to re-encode :

    


    ffmpeg -f concat -i list.txt -c:v libx264 -qp 2 out.mp4


    


    This is really frustrating, I have over an hour of footage split across 40 clips I need to stitch.