Recherche avancée

Médias (91)

Autres articles (57)

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

  • ffmpeg trim videos at specific start / end frame [closed]

    13 mai 2023, par emilector

    I have mp4 video files that I need to trim between a start and an end frame. I am using this python command, but instead of the trimmed videos I get long videos of the same frame.

    


    os.system('ffmpeg -i {0}.mp4 -vf trim=start_frame={1}:end_frame={2} -fflags +genpts {3}.mp4'.format(inputVideoPath, startFrame, endFrame, outputVideoPath))


    


    I dont care about audio. Could someone point me in the right direction ?

    


  • Scrape the precise duration of videos from ffmpeg to .srt

    6 février 2016, par user5715027

    So, I have a folder with a lot of videos. What I need is to create subtitles with the names of those videos also minding their size and length to create subtitles in .srt format. And length of videos should be parsed in such format :

    00:00:00,000 => hh:mm:ss:milliseconds

    So for example I have three videos in the folder :

    1) firstvideo.wmv  size:5743KB length: 00:05:34,793
    2) secondvideo.mp4 size:3215KB length: 00:02:42,653
    3) thirdvideo.avi  size:3950KB length: 00:01:55,152

    I need them to be sorted by size in .srt file with the precise timing one after another (also to remove video format in subtitles). Output file should in .srt format and should look like this :

    1
    00:00:0,000 --> 00:02:42,653
    secondvideo

    2
    00:02:42,653 --> 00:04:37,805
    thirdvideo

    3
    00:04:37,805 --> 00:10:12,598
    firstvideo

    (Important => After every time an action is completed there should be an empty line like in the example)

    I was given an advice to scrape the duration from ffmpeg -i "mediafile.ext" 2>&1 | find "Duration:". That will give me centisecond precision.
    Thanks For Your Attention ! Please, Help ! :)

  • Is there a function to add a title to multiple videos ? FFMPEG

    8 avril 2020, par Samay Lakhani

    I'm getting started with FFMPEG to add a title video to a few dozen videos I have. What would be the proper command to do this ?