Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (50)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (5239)

  • [Help]Delay in live streaming ?

    14 septembre 2017, par user8583508

    I do not understand how they can make this video ?
    enter link description here
    Real time decreases over time, not directly ?

  • How do I pipe a stream to ffmpeg using the subprocess library

    15 juin 2020, par Jackson

    Using the following command I can pipe the stream data from streamlink to ffmpeg and save the stream as an mp4 file.

    



    streamlink https://www.youtube.com/watch?v=UmclL6funN8 best -O | ffmpeg -i pipe:0 -c:v copy -c:a copy "test.mp4"


    



    I would like to implement this inside a Python script but I am not able to get the stream to pipe into the ffmpeg process.

    



    url = "https://www.youtube.com/watch?v=UmclL6funN8"
process = subprocess.Popen(("streamlink", url, "best", "-O"), stdout=subprocess.PIPE)
output = subprocess.check_output(('ffmpeg', '-i', 'pipe:0', '-c:v', 'copy', '-c:a', 'copy', "test.mp4"), stdin=process.stdout)


    



    Can anyone see where I am going wrong ?

    


  • FFMPEG : Multiple cuts/splices in the same video ? [duplicate]

    10 août 2018, par Brayden

    This question already has an answer here :

    Sorry in advance if this was a duplicate. I couldn’t find the solution on Google, since the question is weird to word.

    Anyway, can you use ffmpeg commands to splice videos ?

    For example...

    ffmpeg -i MOVIE.mp4 -ss 00:00:00.000 -to 00:06:14.000 -ss 00:07:00.000 -to 00:07:15.000

    You could have multiple -ss and -to commands to basically designate multiple cuts in the video, so that the final result would be from 0:0 to 6:14, and then after that, directly skip to 7:00 and end finally at 7:15. Does that make sense ?

    I know you can use real editors for this, but that’s a bit more time consuming than to just simply do it here with a command. However, if it doesn’t have this feature, it’s not a big deal, I was just wondering.

    Thanks !