Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (65)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

Sur d’autres sites (12652)

  • Create a slide show from images in a folder [on hold]

    26 juillet 2017, par randommman

    So i have a folder with images like so :

    1.png
    2.png
    3.png
    .. etc

    I am trying to generate a slideshow video from the videos, i have the following code :

           string ffmpegPath = "ffmpeg.exe";
           string ffmpegParams = "-y - r " + mimtime + " -i " + Images + "- c:v libx264 -r 15 - pix_fmt yuv420p -vf fps = 90 " + Video;

           Process ffmpeg = new Process();
           ffmpeg.StartInfo.FileName = "cmd.exe";
           ffmpeg.StartInfo.Arguments = "/k " + ffmpegPath + " " + ffmpegParams;
           ffmpeg.Start();

    But this is giving me permision denied, because I think I need to add the individual images. How can I get the individuall images to generate a video ?

  • I using ffmpeg to live stream a hd video to rtmp server of facebook but when see it only show 360 quality

    29 octobre 2018, par jack ma

    This is my ffmpeg code :

    'ffmpeg -i "{}"  ' \
         '-vf "zoompan=z=\'min(max(zoom,pzoom)+0.0015,2)\':d=1:x=\'iw/2-(iw/zoom/2)\':y=\'ih/2-(ih/zoom/2)\'" ' \
         '-vcodec libx264 ' \
         '-preset veryfast ' \
         '-maxrate 2932k ' \
         '-bufsize 2500k ' \
         '-vf "format=yuv420p" ' \
         '-g 60 ' \
         '-acodec libmp3lame ' \
         '-b:a 198k ' \
         '-ar 44100 ' \
         '-s 1280x720 ' \
         '-f flv "{}"

    I have wasted 2 day for this problem. Thanks for reading !

  • Revision 56f2cb9478 : Added config-enable-hw-high In the inverse transform code, overflow results in

    24 juin 2014, par Peter de Rivaz

    Changed Paths :
     Modify /configure


     Modify /vp9/common/vp9_idct.c


     Modify /vp9/common/vp9_idct.h



    Added config-enable-hw-high

    In the inverse transform code, overflow results in
    implementation defined behaviour.

    Hardware implementations are expected to wrap on
    overflow in order to use the smallest data path
    possible. The new config option makes the C reference code
    use wrap on overflow.

    Encoders are recommended to not generate bitstreams that
    result in overflow in the inverse transform.

    Change-Id : I73836ccfb925b4dbfb29c257a3784fa7733db877