Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (58)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (10176)

  • 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 !

  • 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’

  • 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 !!!