Recherche avancée

Médias (91)

Autres articles (23)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (5834)

  • How to run multiple ffmpeg tasks in php shell_exec

    1er septembre 2020, par Awais Zahid

    I am trying to do the below tasks.

    


      

    1. Convert video from webm to mp4 format
    2. 


    3. Resize the video
    4. 


    5. Add watermark to the bottom right
    6. 


    7. Generate the thumbnail
    8. 


    


    I am able to do it by running multiple shell commands. Is there a way to do all four tasks in one go. For example

    


    $watermark = "https://dummyimage.com/150x50/bf1fbf/ffffff.png";
shell_exec("ffmpeg -i test.webm -vf scale=100:-1, {$watermark} -filter_complex overlay=x=(main_w-overlay_w):y=(main_h-overlay_h) test.mp4 -ss 00:00:01.000 -vframes 1 test.jpg");


    


  • How can I Compress the video with ffmpeg by re-encoding it with variable crf values ? It gives the following error as shown in the image

    4 septembre 2023, par DEV DD
    import os
import subprocess

def comp_videos():
    crf3=(14,24,28,32,38,46,51)
    for i in crf3:
        ffmpeg_cmd=f"ffmpeg -i 1.mkv -c:a copy -c:v libx264 ^ -preset slow -crf {crf3} -tune stillimage ^comptest.mkv" 
        subprocess.run(ffmpeg_cmd,shell=True)

comp_videos() 


    


    Giving the following error, how can i fix it?

    


    Trying to compress the video file w/o quality loss..

    


  • How to use ffmpeg to cut audio into overlapping segments ?

    8 novembre 2019, par Maryam Rahmani Moghaddam

    I have used the following code in python to cut an audio file to equal parts with a length of 5 seconds :

    import subprocess
    command = "ffmpeg -i audio.wav -f segment -segment_time 5-c copy every_5_sec/out%03d.wav"
    subprocess.call(command, shell=True)

    But I need overlapping parts. In other words, I need an audio segment to contain one second of the previous and one second of the next audio segments.