Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (10)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

Sur d’autres sites (3940)

  • ffmpeg to encode MKV or MP4 with segmented Parts in one file

    28 juillet 2014, par Phil

    Is it Possible to create an MP4 or MKV file where the Video, Meta and Audio Data is segmented and placed alternated in a single File ? (By segmented I don’t mean different Video or Audio Tracks.)

    So that it looks like something like this :
    [meta][video][audio][meta][video][audio]…

    I searched for "segmenting", "clustering", and other buzz words. But the most searches ended up in an HTTP-Livestreaming where One File is segmented in single files.
    That Segmenting Technology is okay (so you can stream it). But I don’t want these segments in single Files, i want them to be in one single MKV or MP4 File.

    Maybe someone has any clue.

  • Piwik analytics database : migrating from MySQL to MariaDB

    11 novembre 2015, par Piwik Core Team — Meta

    This short blog post is an announcement regarding the Piwik technology stack.

    Piwik compatible with MySQL and MariaDB

    Since our first public release Piwik uses the open source database server MySQL to store the analytics data.

    Piwik is also compatible with MariaDB. MariaDB is an enhanced, drop-in replacement for MySQL.

    Upgrading to MariaDB

    Many users from our community as well as Piwik PRO have confirmed that using MariaDB for Piwik has several advantages. MariaDB has in some cases significantly improved query performance and reliability of Piwik. Because MariaDB 5.5 is a complete drop-in-replacement for MySQL 5.5, upgrading can be as easy as running apt-get install mariadb-server (or equivalent for your platform). Existing third party techologies such as TokuDB (FAQ) and Galera are fully compatible with MariaDB.

    Learn more about upgrading to MariaDB : Upgrading from MySQL to MariaDB

    In the future, Piwik will stay compatible with both MySQL and MariaDB.

  • ffmpeg concatenates mp4s to slowly

    27 août 2022, par Bambi2k21

    I am writing a script that speeds up parts where the speaker does not talk, and normal speed for when he talks. I am done with it, it works fine, but the way I do it is that, I first create all of the sped up mp4's and not sped up(which takes a long time) and then concatenate together. Is there a way to do this without creating new mp4's and spending copious amounts on time.

    


    Code :

    


    for i in range(len(clips)):
    if "a" in clips[i]:
        os.system(r'ffmpeg -i {video_path} -vcodec libx264 -crf 10 -preset ultrafast -ss {first} -to {second} -filter_complex "[0:v]setpts=1*PTS[v];[0:a]atempo=1[a]" -map "[v]" -map "[a]" {cwd}\{third}.mp4'.format(first = clips[i].split("-", 1)[0][1:], second = clips[i].split("-", 1)[1], third = i/10, video_path = video_path, cwd = cwd))
        time.sleep(0.1)
    if "s" in clips[i]:
        os.system(r'ffmpeg -i {video_path} -vcodec libx264 -crf 10 -preset ultrafast -ss {first} -to {second} -filter_complex "[0:v]setpts=1*PTS[v];[0:a]atempo=1[a]" -map "[v]" -map "[a]" {cwd}\{third}.mp4'.format(first = clips[i].split("-", 1)[0][1:], second = clips[i].split("-", 1)[1], third = i/10, video_path = video_path, cwd = cwd))
        time.sleep(0.1)


    


    This is how I create the mp4's.
clips is a list with all of the parts where the speaker talks and doesn't.

    


    os.system(r"(for %i in (*.mp4) do @echo file '%i') > {cwd}\mylist.txt".format(cwd = cwd))
time.sleep(0.1)
os.system("ffmpeg -f concat -i mylist.txt -c copy output.mp4")


    


    This is how I combine the clips. The time sleep is there because without it the clips are not exact and the "time" of each clip is off.