Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (50)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

  • FFMPEG : How to create video using 1 file .mov (transparent) and 1 image (.jpg)

    29 mai 2017, par Jim2k

    How to create video using 1 file .mov loop (transparent) and 1 image (.jpg Full length video)
    like same : https://www.youtube.com/watch?v=fXzh3sMxTpM

     !!!Sorry for my poor english !!!

  • appending a string constant selectively within a while loop in bash

    29 janvier 2017, par Maxwell Chandler

    I have a script called automateutube that I edit in VIM and execute in the terminal with sh ./automateutube.sh This script pulls youtube links from a file called songs.txt and downloads the video from youtube then extracts the audio.

    The songs.txt file looks like this

    https://www.youtube.com/watch?v=IxQOlZ3pqtI
    https://www.youtube.com/watch?v=IxQOlZ3pqtI
    https://www.youtube.com/watch?v=IxQOlZ3pqtI
    https://www.youtube.com/watch?v=IxQOlZ3pqtI

    It is just a bunch of links, one per line.

    The script looks like this

    #!/bin/bash

    while read p; do    

    x=/tmp/.youtube-dl-$(date +%y.%m.%d_%H.%M.%S)-$RANDOM.flv

    youtube-dl --audio-quality 160k --output=$x --format=18 "$p"

    ffmpeg -i $x -acodec libmp3lame -ac 2 -ab 128k -vn -y "$p"

    rm $x

    done code>

    Now the first part executes. It downloads the video and starts to unpack it.

    It is the second part that fails. ffmpeg -i $x -acodec libmp3lame -ac 2 -ab 128k -vn -y "$p"

    This is because "$p" is supposed to be in format "filename.mp3" However as it is p takes the value of a youtube link, without ".mp3" appended.

    This works for the first line

    youtube-dl --audio-quality 160k --output=$x --format=18 "$p"

    because "$p" is supposed to be in the form of a link there.

    Now I have tried adding three lines in

    a="$.mp3"
    b="$p"
    c=$b$a

    and making ffmpeg -i $x -acodec libmp3lame -ac 2 -ab 128k -vn -y "$p"

    into ffmpeg -i $x -acodec libmp3lame -ac 2 -ab 128k -vn -y "$c"

    but I am still getting an error. Any ideas ?

    parse error, at least 3 arguments were expected, only 1 given in string ’om/watch ?v=sOAHOxbMOJY’

  • How to make robotic voice use ffmpeg

    8 août 2018, par Cuong Pham

    I can easily create it by using Vocoder option of Audacity software follow the video : https://www.youtube.com/watch?v=dXNrWrxIaRE&t=151s , but I want to make robotic voice from audio file by ffmpeg , Ffmpeg is realy big library so it’s hard for me. please help me !