Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (56)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

  • Merge the .mp4 video file with the .srt file in Hebrew language

    18 octobre 2023, par ZONEX

    I am looking for a solution using Python or CMD with FFmpeg to merge my Hebrew language .srt file with my .mp4 file.
Thanks for everyone !.

    


    I have tried using this command

    


    ffmpeg -i show.mp4 -vf "subtitles=show.srt:force_style='FontName=Arial,FontSize=24,PrimaryColour=&H00FFFF00&'" -c:v libx264 -c:a aac -strict experimental -scodec mov_text mysubtitledmovie.mp4

    


    However, I encountered the error message : 'Invalid UTF-8 in decoded subtitles.' I understand that I need to add Hebrew encoding support, but I haven't found how to do that.

    


    it's important to me that it'll be very fast process to add the .srt Hebrew file to .mp4 file.

    


  • using file info from txt file to bull trim audio with ffmpeg

    26 juin 2018, par thirtylightbulbs

    I have found how to trim individual audio files with ffmpeg. Is there any way to do it on bulk ? I have thousands of audio files each with different segments that need to be saved separately. The input file, time to start clipping, and duration are all in separate columns, row by row, in a text/excel file.

  • Opening a video file from local drive as buffer and write it into new file

    19 avril 2017, par laslavinco

    I have multiple broken video files of one same video I need to join them together as one video again but when I tried this

    import os
    path = 'C:/temp/test'
    files = os.listdir(path)
    for file in files:
       mainFile = open('C:/temp/main.mp4','ab')
       with open(path+'/'+file,'rb') as read:
           print (read)
           mainFile.write(read)
    mainFile.close()

    It threw an Error saying

    TypeError: must be string or buffer, not file

    So I don’t know how do I make a video file buffer. I tried googling it and I found something called ffmpeg but it’s a third party app. All I need is buffer of a file.