Recherche avancée

Médias (0)

Mot : - Tags -/médias

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (112)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

Sur d’autres sites (4210)

  • avformat/mpjpeg : allow processing of MIME parts without Content-Length header

    30 novembre 2015, par Alex Agranovsky
    avformat/mpjpeg : allow processing of MIME parts without Content-Length header
    

    Fixes ticket 5023

    Signed-off-by : Alex Agranovsky <alex@sighthound.com>

    • [DH] libavformat/mpjpegdec.c
  • How to combine/concatenate videos stored in AWS S3 bucket based on title of the file name

    9 juin 2020, par orangecube

    I am using a service that allows me to record videos that get automatically pushed to a folder (submissions) in an S3 bucket. There are multiple videos however they need to be grouped together and concatenated so the output is one video per group.

    &#xA;&#xA;

    So, basically, any tips on how I can take videos based on the title and stitch them together ?

    &#xA;&#xA;

    Example :

    &#xA;&#xA;

    Submissions folder will have :

    &#xA;&#xA;

    a-100-2.mp4&#xA;a-200-6.mp4&#xA;b-123-5.mp4&#xA;

    &#xA;&#xA;

    Expected output in processed folder :

    &#xA;&#xA;

    a.mp4     - (both &#x27;a&#x27; videos get stitched together)&#xA;b.mp4     - (only &#x27;b&#x27; gets sent over since there is only one video.)&#xA;

    &#xA;&#xA;

    Thanks in advance !

    &#xA;&#xA;

    Edit : Some additional and detailed information below if it helps.

    &#xA;&#xA;

    The files will be labeled with :&#xA;name-location-video_token-stream_token.mp4

    &#xA;&#xA;

    Need help creating a script or process that will concatenate the videos using the procedure outlined below :

    &#xA;&#xA;

    Processing rules (back end) :

    &#xA;&#xA;

      &#xA;
    1. Check if videos have same video_token in ‘submissions folder’. If so, keep the newest one and delete old ones.

    2. &#xA;

    3. Take all videos in ‘submissions folder’ with same name and location in title and concatenate the videos. Save output video to a new folder in the bucket labeled as the location for the folder name. &#xA;Output file name : &#xA;name-location-year.mp4.

    4. &#xA;

    &#xA;&#xA;

    EXAMPLE :

    &#xA;&#xA;

    Submissions folder :&#xA;joey-toronto-001-354.mp4

    &#xA;&#xA;

    joey-toronto-001-241.mp4 - this will be deleted

    &#xA;&#xA;

    joey-toronto-103-452.mp4

    &#xA;&#xA;

    alex-montreal-352-232.mp4

    &#xA;&#xA;

    alex-montreal-452-223.mp4

    &#xA;&#xA;

    Resulting output :

    &#xA;&#xA;

    Toronto folder :

    &#xA;&#xA;

    Joey-toronto-2020.mp4

    &#xA;&#xA;

    Montreal folder :

    &#xA;&#xA;

    Alex-montreal-2020.mp4

    &#xA;

  • How to make only words (not sentences) in SRT file by AssemblyAI

    19 avril 2024, par flip

    Okay... So Im trying to create a video making program thing and I'm basically finished but I wanted to change 1 key thing and don't know how to...&#xA;Here's the code :

    &#xA;

    import assemblyai as aai&#xA;import colorama&#xA;from colorama import *&#xA;import time&#xA;import os&#xA;&#xA;aai.settings.api_key = "(cant share)"&#xA;&#xA;print(&#x27;&#x27;)&#xA;print(&#x27;&#x27;)&#xA;print(Fore.GREEN &#x2B; &#x27;Process 3: Creating subtitles...&#x27;)&#xA;print(&#x27;&#x27;)&#xA;time.sleep(1)&#xA;print(Fore.YELLOW &#x2B; &#x27;>> Creating subtitles...&#x27;)&#xA;transcript = aai. Transcriber().transcribe("output/output-tts.mp3")&#xA;&#xA;subtitles = transcript.export_subtitles_srt()&#xA;print(&#x27;>> Created subtitles!&#x27;)&#xA;&#xA;f = open("subtitles.srt","a")&#xA;f.write(subtitles)&#xA;print(&#x27;&#x27;)&#xA;print(&#x27;Program >> You are going to have to manually run the last python file [addsubtitles.py] because \n this program needs to close to write down the subtitles&#x27;)&#xA;print(&#x27;&#x27;)&#xA;time.sleep(7)&#xA;f.close()&#xA;

    &#xA;

    when it exports the SRT it exports it something like this :

    &#xA;

    1&#xA;00:00:00,160 --> 00:00:04,238&#xA;Put a finger down if you have ever kissed a&#xA;&#xA;2&#xA;00:00:04,286 --> 00:00:05,374&#xA;goddamn dog.&#xA;&#xA;&#xA;

    &#xA;

    but i want it to go word by word but still synced with the time frame in the audio and then generate a srt file that has word by word and no sentences.&#xA;How could I do this ? because I have no idea how to implement that into the code.

    &#xA;

    I tried watching or searching the internet for any ways on doing this because I can't figure it out but there are still no results. Would appreciate if anyone could help.

    &#xA;