
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (71)
-
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (4366)
-
Python - youtube-dl.utils.DownloadError : ERROR : audio conversion failed : file : mp3 invalid argument
14 mars 2017, par Cristinayoutube-dl.utils.DownloadError: ERROR: audio conversion failed: file: mp3 invalid argument
The above error appears with following parameters, running youtube-dl on Python 3.6 on Windows 7, FFmpeg and libmp3lame installed.
ydl_opts = {
"format": "bestaudio/best",
"extractaudio": True,
"outtmpl": fetch_name + "%(ext)s",
"noplaylist": True,
"nocheckcertificate": True,
"postprocessors": [{
"key": "FFmpegExtractAudio",
"preferredcodec": "mp3",
"preferredquality": "192",
}],
"progress_hooks": [hook]
}fetch_name is for example
C:\Path\File
.[hook]
just displays download messages.
I’ve searched here and on internet but can’t find this error. -
convert youtube video to mp3
31 août 2015, par Try Mersiantoi want to convert video from youtube to mp3 format ,
i have try to get real path and i got url like this (http://r9---sn-npo7en7d.googlevideo.com/videoplayback?mm=31&mn=sn-npo7en7d&ratebypass=yes&mime=video/webm&source=youtube&pl=18&dur=0.000&sver=3&expire=1440995594&mt=1440973944&mv=m&ms=au&sparams=dur,id,initcwndbps,ip,ipbits,itag,lmt,mime,mm,mn,ms,mv,pl,ratebypass,source,upn,expire&signature=27B5A991402F61990D7D97C423D167C51B984E11.FA358ECCB3BAC29953749463A37659BB4ADDF4AB&fexp=9405997,9408214,9408511,9408710,9409069,9413318,9415365,9415485,9416023,9416105,9416126,9416524,9417097,9417126,9417707,9418153,9418409,9418448,9418700,9419239,9420020,9420056&ipbits=0&ip=128.199.181.252&key=yt5&lmt=1413466470642964&initcwndbps=15202500&itag=43&id=010d2b7ac9d709c1&upn=ZmvSS1PBRW0&signature=%20%27&title=%27Hardwell-feat-Chris-Jones---Young-Again-Official-Video-HD%27)i tried to convert it with ffmpeg command like ffmpeg -i the-url play.mp3 but it fail,
am i wrong when getting the URL or wrong when using ffmpeg command ?
anyone can help me ? ,
i cant using youtube-dl because i do this for my project
thanks -
No audio to youtube stream using ffmpeg
16 avril 2022, par DevilMy Stream File..


stream.sh


#! /bin/bash

VBR="1500k"
FPS="30"
QUAL="ultrafast"
YOUTUBE_URL=" rtmp://a.rtmp.youtube.com/live2"
YOUTUBE_KEY="**********"
VIDEO_SOURCE="video.mp4"
AUDIO_SOURCE="Selfish.mp3"
AUDIO_ENCODER="aac"


ffmpeg \
 -stream_loop -1 \
 -re \
 -i "$VIDEO_SOURCE" \
 -thread_queue_size 512 \
 -stream_loop -1 \
 -re \
 -i "$AUDIO_SOURCE" \
 -c:v libx264 -preset $QUAL -r $FPS -g $(($FPS *2)) -b:v $VBR -bufsize 3000k -maxrate $VBR \
 -c:a $AUDIO_ENCODER -ar 44100 -b:a 128k -pix_fmt yuv420p \
 -f flv $YOUTUBE_URL/$YOUTUBE_KEY



Im sending audio from my client side.. But no audio coming to stream. But video is still working..


Output photo
Preview Output