Recherche avancée

Médias (91)

Autres articles (112)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

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

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (12380)

  • How to add text to video by time use ffmpeg

    15 mars 2017, par Thanh Dao

    I create my slideshow with command :

    "ffmpeg" -f concat -safe 0 -i /path/to/text.txt -i /path/to/audio.mp3 -vsync vfr -pix_fmt yuv420p /path/to/output.mp4

    The contents of text.txt

    file '/path/to/img1.jpg'
    duration 6
    file '/path/to/img2.jpg'
    duration 6
    file '/path/to/img3.jpg'
    duration 6
    file '/path/to/img4.jpg'
    duration 6
    file '/path/to/img5.jpg'
    duration 6
    file '/path/to/img6.jpg'
    duration 6

    The video has been cretaed perfectly. Now I want to add titles for each images displayed. Example :

    • img1.jpg displayed, show title Title 1
    • img2.jpg displayed, show title Title 2
    • img3.jpg displayed, show title Title 3

    I search a lot but got any solutions. Anyone help me. I’m stuck

  • Loop a video with ffmpeg

    4 mars 2015, par Ellebkey

    I am triying to loop a short video using ffmpeg in python, and i have the next code :

    FFMPEG_BIN = "ffplay"

    import subprocess as sp
    import os  

    def playVideo(video):
       command = [ FFMPEG_BIN,video,'-autoexit']        
       pipe = sp.Popen(command, stdout = sp.PIPE, bufsize=10**8, stderr = sp.PIPE)
       pipe.wait()

    def playPrincipal():
       command = [ FFMPEG_BIN,"videos/01-bienvenida.webm","-autoexit","-an","-loop 0"]
       pipe2 = sp.Popen(command, stdout = sp.PIPE, bufsize=10**8, stderr = sp.PIPE)

    but the video doesnt show on my second method, im making a body gesture recognition so the point is to show a principal video stay on a loop playPrincipal() like a background, and when I detect a position show other video in front of the first video,that part alredy works, and when the video ends the first video still playing. My second though was to make a large video and play it, but after around 1.30min the screen frezze, so the video just stop.

  • SDL/ffmpeg on iOS showing only blank or white screen

    3 avril 2018, par Law Gimenez

    I am following this ffmpeg/SDL tutorial using Swift and using the URL path as let urlPath = "rtsp://184.72.239.149/vod/mp4:BigBuckBunny_175k.mov" but it is only showing white or blank and it does not show anything. I want to show a window as what other tutorials say.

    I logged all the flow and there is no error. I have very little experience on SDL, let me know if some part of the code is not working.