Recherche avancée

Médias (91)

Autres articles (62)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (10949)

  • İ need help for ffmpeg Merge 2 videos

    18 juin 2020, par Çağrı Eren

    the code I wrote below takes two video files renders them into 1080p res, plays the 1st video for some time (5 secs) then plays the 2nd video foreground with the first video's audio still playing in the background.

    



    The length of the second video is taken as basis duration. If 2nd video's duration is shorter than 1st one, video freezes and audio keeps playing. If 2nd video is longer than the 1st, video continues in accordance with 1st video duration.

    



    string ar = $"-y -i \"{videoModel.dosya_yolu}\" -i \"video.mp4\" -filter_complex \"[1:v] scale=1920:1080 [a]; [0:v] scale=1920:1080 [b]; [b] [a] overlay=enable=gte(t\\,{baslangic}):x=0:y=0:shortest=1[out]\" -map [out] -map 0:a -c:v libx264 -crf 24 -preset ultrafast -c:a copy \"{cikti}\"";


    



    What I want to do is :

    



      

    1. if the 2nd video is shorter, it should start again and keep playing until the 1st video ends, and not freeze
    2. 


    3. Even though each video is around 800mb, it renders out 4-5gb. It needs to be minimized without decreasing resolution
    4. 


    5. it shouldn't modify resolution unless both videos have different resolutions.
    6. 


    


  • Compiling ffmpeg for iOS 5.1

    11 septembre 2012, par Vlad Bogdan

    I followed jold's steps from here :

    problem compiling ffmpeg for iFrameExtractor

    When i try jold's solution i get the following error for armv6 and armv7. i386 works perfect.

    lipo : can't open input file : armv6/libavcodec.a (No such file or directory)

    lipo : can't open input file : armv6/libavutil.a (No such file or directory

    lipo : can't open input file : armv6/libswscale.a (No such file or directory)

    When the script ends i have only libadevice.a and libavformat.a in /armv7 and /armv6.

    Why ?

  • Threads creating process in infinite loop

    10 décembre 2013, par bhupinder

    In my application a thread runs while(1){} in it so thread terminates when my app is terminated by user.

    Is it safe to do like this ? I am using while(1){} because my app continuously monitors devices on system.

    After some time I am getting "(R6016) not enough space for thread data" on ffmpeg.

    I read this but did not get solution of my problem :

    http://support.microsoft.com/kb/126709

    Thread description :
    Thread uses ffmpeg and handle utility (http://technet.microsoft.com/en-us/sysinternals/bb896655.aspx). within while(1){} loop.

    ffmpeg and handle is running through QProcess which I am deleting after process ends.

    while(1){} loop waits for 5 seconds using
    msleep(5000).