Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (39)

  • 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 (...)

  • 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 ;

  • 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 (5067)

  • Making changes on a video before a download [on hold]

    1er février 2016, par Chris Russo

    We have a website with lots of videos (>10,000) and lots of users (>50,000). Each video might be around 1,2 Gbs.

    The goal is to generate a unique video for each one of the members or users of the website making a small variation either on the audio track of the video, or the keyframes on the video itself, using low frequency beeps, or a few random pixels on specific keyframes.

    I understand that this operation can be done using SoX for the audio track, or FFmpeg in the case of the video, manipulating the keyframes.

    Here’s my question, as we have to choose between 2 options at this point :

    In terms of resources : would it be convenient or even possible to generate in real time a clone of the video and make this variations at the moment that the user’s request the download (please considerate the big volume of videos and users).

    Or it would be convenient to face this problem using HDD, pre-generating and storing the already manipulated videos ready to be served ?

    I understand that storing all this data will require a few many Tera’s but I’m not sure about how much RAM and Microprocessing could be demanded to perform this operations in real time, over videos that might be as big as 1Gbs.

  • ffmpeg, download video stream from url

    5 juillet 2021, par samiullah

    I am developing application to save any online webinar(video or audio) given the url using ffmpeg library. Url usually contain other contents like text, images as well. So i have problem, how to separately get video stream from url using ffmpeg(or some other better free library). Url may be for any site, not only for youtube, but as an example, link may be like

    


    http://www.youtube.com/watch?v=wnrJJYm7qIw

    


  • Download HLS ( HTTP ) Stream video using python

    19 février, par LeDerp

    I need to download a streaming video(from a URL) using python the command line argument would be :

    



    ffmpeg -i URL stream.mp4


    



    I know I can use the subprocess command

    



    subprocess.call('ffmpeg -i '+ URL +' stream.mp4', shell=True)


    



    Is there any alternative like a API that I can use instead of using subprocess command