Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (40)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

Sur d’autres sites (5778)

  • How to extract all audio start and end time from a video file using ffmpeg

    29 avril 2020, par user3699262

    I need to know from a video file, how do I extract all audio timestamp meaning start time and end time of each dialog. Having tried with multiple ffmpeg or ffprobe commands but not getting the desire result.

    



    My desire result would be like,

    



    'text' : "Hello Robert ! How are you", 'start' : 0.15, 'end' : 1.00
'text' : "Hey, I'm fine. What's about you ?", 'start' : 1.35, 'end' : 2.05
.
.

    


  • Converting bin&amp format to mp4 with ffmpeg fails

    31 octobre 2017, par Vincent

    I am trying to download videos from Wistia and I managed to download them but in .bin&amp format ; I’d like to convert them to .mp4 in order to use OpenCV. For this I am calling ffmpeg with subprocess on Python but I get 1 as the value for the return code, meaning the process has failed. Any idea why, and how I can change this...?

    Code is the following :

    import subprocess

    infile = filename #a bin&amp file
    outfile = filename[:-7]+'mp4'

    subprocess.run(['ffmpeg', '-i', infile, outfile],shell=True)

    I get :

    CompletedProcess(args=['ffmpeg', '-i', '58c63bccfcc1c150646c261caad97a58ced4b5e3.bin&amp', '58c63bccfcc1c150646c261caad97a58ced4b5e3.mp4'], returncode=1)

    Also, it works in the command prompt...

    Thank you for your help,

    Sincerely,

  • How can I resize an overlay image with ffmpeg ?

    28 novembre 2020, par Andrei Dascalu

    I am trying to add an overlay to a video using the following command

    


    ffmpeg -y -i "$videoPath" -i "$overlayPath" -filter_complex "[0:v] [1:v] overlay=$overlayPosition" -pix_fmt yuv420p -c:a copy "$outputPath" 


    


    However, I would like to be able to resize the overlay I am about to apply to some arbitrary resolution (no care for keeping proportions). However, although I followed a couple of similar solutions from SO (like FFMPEG - How to resize an image overlay ?), I am not quite sute about the meaning of the parameters or what I need to add it in my case.

    


    I would need to add something like (?)

    


    [1:v]scale=360:360[z] [1:v]overlay=$overlayPosition[z]


    


    This doesn't seem to work so I'm not sure what I should be aiming for.

    


    I would appreciate any assistance, perhaps with some explanation.

    


    Thanks !