Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (99)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

  • 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 ?

    


  • 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 ! :)

  • 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 ?