
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (36)
-
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 (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Publier sur MédiaSpip
13 juin 2013Puis-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 (5354)
-
Compile FFmpeg project for ARM in PC Linux 64-bit
4 avril 2017, par Dang_HoI want to compile a simple FFmpeg project for my Arrow Sockit Board with an arm-linux-gnueabihf architecture from my Linux-64bit PC. I don’t want to compile the project in the board directly because of my low CPU and that is not convenient for me.
I’m using
FFmpeg version 2.8.11
and this is myMakefile
and my"main.c"
. I know, myMakefile
has something wrong in it. If I command"make"
, it will compile depending on my PC’s architecture, I can’t use that binary file on my board. So, can someone please tell me how to do it.I Cross-Compiled the FFmpeg package and installed into the board. I tested all functions such as ffmpeg, ffplay. All them work. The source code folder is located to /home/hohaidang/ffmpeg-2.8.11
#include
#include <libavcodec></libavcodec>avcodec.h>
#include <libavformat></libavformat>avformat.h>
#include <libswscale></libswscale>swscale.h>
int main(int argc, char *argv[]){
av_register_all();
return 0;
}# use pkg-config for getting CFLAGS and LDLIBS
FFMPEG_LIBS= libavdevice \
libavformat \
libavfilter \
libavcodec \
libswresample \
libswscale \
libavutil \
CFLAGS += -Wall -g
CFLAGS := $(shell pkg-config --cflags $(FFMPEG_LIBS)) $(CFLAGS)
LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS)
EXAMPLES= main
OBJS=$(addsuffix .o,$(EXAMPLES))
# the following examples make explicit use of the math library
avcodec: LDLIBS += -lm
decoding_encoding: LDLIBS += -lm
muxing: LDLIBS += -lm
resampling_audio: LDLIBS += -lm
.phony: all clean-test clean
all: $(OBJS) $(EXAMPLES)
clean-test:
$(RM) test*.pgm test.h264 test.mp2 test.sw test.mpg
clean: clean-test
$(RM) $(EXAMPLES) $(OBJS) -
Getting error while transcribing mp3 file into text file
8 août 2021, par Parul VermaI used the below code to transcribe the mp3 file into text.


import speech_recognition as sr
from pydub import AudioSegment

# convert mp3 file to wav 
src=(r"C:\Users\user.name\Desktop\python\DATA\Audio files\Audio1.mp3")
sound = AudioSegment.from_mp3(src)
sound.export(r"C:\Users\user.name\Desktop\python\DATA\Audio files\Audio1.wav"), format="wav")

file_audio = sr.AudioFile(r"C:\Users\user.name\Desktop\python\DATA\Audio files\Audio1.wav")

# use the audio file as the audio source 
r = sr.Recognizer()
with file_audio as source:
 audio_text = r.record(source)

print(type(audio_text))
print(r.recognize_google(audio_text))



But I got the following error-


FileNotFoundError Traceback (most recent call last)
 in <module>
 4 # convert mp3 file to wav
 5 src=(r"C:\Users\user.name\Desktop\python\DATA\Audio files\Audio1.mp3")
----> 6 sound = AudioSegment.from_mp3(src)
 7 sound.export(r"C:\Users\user.name\Desktop\python\DATA\Audio files\Audio1.wav", format="wav")
 8 

~\Anaconda3\lib\site-packages\pydub\audio_segment.py in from_mp3(cls, file, parameters)
 794 @classmethod
 795 def from_mp3(cls, file, parameters=None):
--> 796 return cls.from_file(file, 'mp3', parameters=parameters)
 797 
 798 @classmethod

~\Anaconda3\lib\site-packages\pydub\audio_segment.py in from_file(cls, file, format, codec, parameters, start_second, duration, **kwargs)
 726 info = None
 727 else:
--> 728 info = mediainfo_json(orig_file, read_ahead_limit=read_ahead_limit)
 729 if info:
 730 audio_streams = [x for x in info['streams']

~\Anaconda3\lib\site-packages\pydub\utils.py in mediainfo_json(filepath, read_ahead_limit)
 272 
 273 command = [prober, '-of', 'json'] + command_args
--> 274 res = Popen(command, stdin=stdin_parameter, stdout=PIPE, stderr=PIPE)
 275 output, stderr = res.communicate(input=stdin_data)
 276 output = output.decode("utf-8", 'ignore')

~\Anaconda3\lib\subprocess.py in __init__(self, args, bufsize, executable, stdin, stdout, stderr, preexec_fn, close_fds, shell, cwd, env, universal_newlines, startupinfo, creationflags, restore_signals, start_new_session, pass_fds, encoding, errors, text)
 852 encoding=encoding, errors=errors)
 853 
--> 854 self._execute_child(args, executable, preexec_fn, close_fds,
 855 pass_fds, cwd, env,
 856 startupinfo, creationflags, shell,

~\Anaconda3\lib\subprocess.py in _execute_child(self, args, executable, preexec_fn, close_fds, pass_fds, cwd, env, startupinfo, creationflags, shell, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite, unused_restore_signals, unused_start_new_session)
1305 # Start the process
1306 try:
-> 1307 hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
1308 # no special security
1309 None, None,

FileNotFoundError: [WinError 2] The system cannot find the file specified
</module>


-
My discord.py music bot fails with "ffmpeg not found"
17 avril 2022, par ThatNoClueDudeI am using repl.it to host my Discord.py music bot
It fails with an error saying "ffmpeg is not found"
I used multiple ways to fix the error


npm install ffmpeg-static in shell is my first way how i tried to fix the problem, but it did not do anything.


Even if i do any way, repl.it will still give the error ffmpeg not found.
Can someone please tell any way to fix this issue ??