Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (100)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

Sur d’autres sites (8505)

  • How can I create a video from a directory of images in C

    12 décembre 2012, par Chrishi

    How can I create a video from directory which contain set of images using c language. I want to do this inside a c Class file (not in command prompt). Something similar to this.

    void ImagetoVideo(char [] path)
    {
      // create video from file
    }

    I saw some code in the stack overflow but it's all about running a command line code.
    This is the code

    ffmpeg -f image2 -start_number n -i "PATH_TO_IMAGE_FILE" video.mpg
       -vcodec mpeg4 test.avi
  • Not able to play .mpd file of MPEG-DASH stream

    29 novembre 2018, par JAVA Coder

    I have made segments of a mp4 file and uploaded all .m4s segments,.initmp4 file and the .mpd file to s3 bucket and used the url of .mpd file to play the full file using online DASH players of akamai,bitmovin,videoJs,dashJs etc but failed.

    When I tried to play the .mpd file by using GPAC MP4Client on command prompt just can hear the audio with a blank screen.

    You can find the commands here which I have used to make segments of the mp4 file.

  • rename file on identical filename output in ffmpeg shell command

    16 avril 2018, par Gerag2

    I have video.mpg and video.avi and output is video.mp4
    the command

    for i in *.*; do ffmpeg -i "$i" -c:v libx264 -crf 24 n/"${i%.*}.mp4"; done

    gives an overwrite prompt and stops the command

    how do I rename when it encounters an identical filename