Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (78)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

Sur d’autres sites (6736)

  • Anomalie #4123 : Porte Plume : focus gênant dans certains cas

    4 avril 2018, par Mathieu L

    Ca fonctionne en effet avec FF.

    Le bug est présent avec Chrome et Safari.
    J’utilise SPIP 3.2.1 mais j’ai eu ce comportement depuis très longtemps sans avoir jamais pu le rendre reproductible, jusqu’à aujourd’hui.

    Exemple : https://media.giphy.com/media/3BMAtSczdIV2uhQq0B/giphy.gif

  • Vertical video play does not sync with multiple stacked video

    5 novembre 2018, par Sabha

    I dont know if I have wrote the subject well and if that can be understood. Nevertheless, here is an explanation

    I have 7 videos of different dimensions where the width is same (1080). I wish to place them one below the other to get a full hd vertical video (1080x1920). I tried the -filter_complex vstack filter in ffmpeg and got all the videos aligned one below the other and I am getting a perfect 1080x1920 full hd vertical video but they dont sync with each other. Once the videos are in sync, I need to put an audio too which should also sync with the in-sync video that will be made.

    There is so much of complexity. Please advice how do I make them sync. Is there any software that can allow me to put 7 videos one below the other in a timeline ? (if not 7, atleast 3-4 videos). Please advice where and how to start.

    Is there any option in Adobe Premier or any other software ?

    Thanks

    EDIT : I am doing a very long procedure to combine all 7 videos vertically

    first i use

    ffmpeg -i video1.mp4 -i video2.mp4 -preset veryslow -filter_complex vstack video12.mp4

    and then

    ffmpeg -i video12.mp4 -i video3.mp4 -preset veryslow -filter_complex vstack video123.mp4

    so on and so forth

    Is there a better way to do it all in one command ?

  • jffmpeg.jar how to split a video file to many chunks- Java, Groovy, Grails, Video

    9 janvier 2014, par user1245222

    I was googling whole day to find a proper documentation to split a video using jffmpeg.jar. But unfortunately, I couldn't find anything.

    Using java -> groovy, I was able to use native command to split the same. Below is the command.

    def command = """ffmpeg -i /opt/eboxdata/uploads/719/Resource/Alfred Hitchcock - Making of Psycho.mp4 -vcodec copy -acodec copy -ss 00:00:00 -t 00:05:00 /opt/eboxdata/uploads/719/Resource/output2.avi"""// Create the String

           def proc = command.execute()                 // Call *execute* on the string
           proc.waitFor()

    Any one could help me to split a video file without using native command. But using jffmpeg.jar