Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (78)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (6485)

  • Hi Friends can anoye help me with my discord bot leave my voice channel before play a song

    19 décembre 2020, par jojan gojan

    He can find the id and the api is good he cant find all the information of youtube video but he cant play the music video idk why i search all the code and i cant find the error.

    


    The bot was create on node.js

    


    I stop updating this bot for 2 years idk if something has changed in the rules of discord bots

    


    The bot was pushed to heroku but im testing the bot on my pc.

    


    [Link to all my bot code][1]


    


    https://wtools.io/paste-code/b2XF

    


  • FFMPEG - Is it possible to cut from one video multiple segments and stitch them together ?

    27 mars 2014, par ajacian81

    I'm trying to do this in as few steps as possible since I'm doing this in Android and FFMPEG SegFaults if run multiple times (in the same process).

    Assume I have a 25 minute video :
    I want to cut from minute 1 to minute 5.
    I also want to cut from minute 8 to minute 13.
    I also want to cut from minute 17 to 23.
    I then want to stitch them together into a new video file.

    I can do the above steps as their own individual steps (using -ss and -t as well as the concat filter), however, I'm wondering if it's possible to do this in FFMPEG in a single execution ?

  • How to create bash script with ffmpeg to stitch together AVI files, then rotate 180 degrees ?

    25 septembre 2022, par Maude Rozencrance's Cat

    I'm trying to make a bash script in linux to stitch a bunch of AVI files together then rotate the vid 180 degrees. My code works, but without the rotation part.

    


    >videos.txt

files=DSCF*.AVI

for f in $files
do
    #make list of vids, copy to videos.txt
    echo "file '$f'" >> videos.txt;
    echo "duration 10.0" >> videos.txt;
    
done

#stitch all vids together
ffmpeg -f concat -safe 0 -i videos.txt -c copy bigvid.AVI