Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (27)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (5829)

  • How to insert bullet screen comments into a video by using ffmpeg ?

    7 septembre 2019, par Saeron Meng

    I would like to add some real-time comments in my video but I do not know how to use ffmpeg to realize this. The comments are like screen bullets through the screen, scrolling from right to left.

    My thought is to count the length of the comments and define speeds for them to move. Don’t worry about the source of the comments, I have already gotten them saved as an xml file. Also, I can transfer it into srt. For instance :

    <chat timestamp="671.195">
       <ems utctime="1562584080" sender="Bill">
           <richtext></richtext>
       </ems>
    </chat>
    <chat timestamp="677.798">
       <ems utctime="1562584086" sender="Jack">
           <richtext></richtext>
       </ems>
    </chat>

    The final result is like this (I did not find an example displayed in English), these fancy characters can move horizontally :

    example

    I have searched some solutions on the Internet, most of which talk about how to write ass/srt files and add motionless subtitles. Like this :

    3
    00:00:39,770 --> 00:00:41,880
    When I was lying there in the VA hospital ...

    4
    00:00:42,550 --> 00:00:44,690
    ... with a big hole blown through the middle of my life,

    5
    00:00:45,590 --> 00:00:48,120
    ... I started having these dreams of flying.

    ffmpeg -i infile.mp4 -i infile.srt -c copy -c:s mov_text outfile.mp4

    But I need another kind of "subtitles" which can move.

    So my question is, how to modify the ffmpeg command and the template of srt file so as to arrange the subtitles from the top to the bottom and let them move from right to left ?

  • Format ffmpeg command to extract the full klv for an mpg/ts file

    24 décembre 2020, par Andrew Marquez

    I am extracting the KLV data from an mpg file using klvdata and ffmpeg.

    &#xA;&#xA;

    Following the readme, I have downloaded the sample "Day Flight.mpg" video file that contains KLV data. Running the quick start command works (I get the exact same result as the readme example for the first 6 frames.)

    &#xA;&#xA;

    However, for the life of me I don't know how I can extract the KLV data for the entire video file.

    &#xA;&#xA;

    As an experiment, I tried creating the KLV data file from an offset start :

    &#xA;&#xA;

    ffmpeg -ss 5 -i Day\ Flight.mpg -map data-re -codec copy -f data - > out.klv&#xA;

    &#xA;&#xA;

    and when I run it through my code with different start times (5, 25, etc.) I do get different results.

    &#xA;&#xA;

    This (to me) would suggest that the mpg file does contain KLV data throughout, but I can only access 6 frames at a time.

    &#xA;&#xA;

    I would expect to be able to run an ffmpeg command to output the full KLV data. I need help formatting my ffmpeg command to properly provide all the data.

    &#xA;&#xA;

    To replicate, download the "Day Flight.mpg" file from the klvdata project page and run the command I posted above. You will note it is less than a page long. It should be many, many pages long. Thank you for your help !

    &#xA;

  • checkasm : x86 : post commit review fixes

    22 décembre 2015, par Janne Grunau
    checkasm : x86 : post commit review fixes
    

    Check the full FPU tag word instead of only the lower half and simplify
    the comparison.
    Use upper-case function base name as macro name to instantiate both
    checked_call variants.

    • [DBH] tests/checkasm/x86/checkasm.asm