Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (43)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • 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

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (6667)

  • Encoding and decoding timestamps per frame using libav* into mp4

    9 mai 2019, par Kevin

    I am writing a program for recording and playing back video together with another program that is connected to a piece of hardware we sell. This other program gathers data from hardware, which contains "timestamp" counters at a fixed sampling rate.

    I am looking for a way to encode these timestamps (either raw or converted to unix) into the outputted mp4 file. The main reason being that the video stream might only start getting saved a few minutes into the hardware acquisition

    Recording :

                   timestamp
    Main program --------------->  Video program
     |                                 |
     |                                 |
     v                                 v
    Save hardware data               Save frame data
     and timestamp                    and timestamp

     |                                 |
     |                                 |
     v                                 v
    Custom data format                .mp4 file

    Post processing analysis :

    for i in range(0,datalen):
       hardwareData, timestamp = readHardwareFile()
       frame, timestamp = readMP4()

       myData[timestamp].hardware = hardwareData
       mydata[timestamp].video = frame

    analyze(myData)

    The goal being that when a I want to playback in VLC, or with OpenCV, I have access to timestamps for each frame.

    I currently save it as a separate text file with timestamp and frame #, but I’m wondering if there is a more standardized way to do this.

  • sending command into CMD in c#

    17 mai 2018, par ShinoLexTazy

    I wanna simple send this string into cmd command line

    string arg= "ffmpeg.exe - i " + txtInput.Text + " " + txtOutput.Text + "";

    I tried this

    Process.Start("cmd.exe", arg);

    But nothing happen, so how can I execute this command in cmd without showing the cmd to the user ?

  • ffmpeg join two mp4 videos one after another

    24 septembre 2015, par Grbe1l

    I’ve got 2 videos I want them to join into one video using ffmpeg. I am running these commands in Java so I need it to use the command line so no other programme solutions apply. I have tried many different ways but non seem to work. So i got a video of 35 seconds and one of 5 seconds I need a output of 40 seconds this never seems to happen. if anyone could help it would be greatly appreciated