
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 (37)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (6260)
-
How to convert audio and keep track metadata with all formats
16 septembre 2018, par Bleuzenmy inputs are multiple FLAC and OGG files.
I want to convert them all to mp3. (a script does batch converting, ffmpeg command only has to handle one input file).I also want to keep the tags (song artist, track name, album name, ...).
My current command to do this is :ffmpeg -vn -n -i $INFILE -c:a libmp3lame -q:a 1 -ar 44100 -map_metadata 0:s:0 -id3v2_version 3 $OUTFILE.mp3
Now the problem is : it works when the input file is an OGG file. But it doesn’t work if input is a FLAC file.
I also found a command for FLAC input files :
ffmpeg -vn -n -i $INFILE -c:a libmp3lame -q:a 1 -ar 44100 $OUTFILE.mp3
(which is the same but without the map_metadata option. So FLAC tags are copied without that options. But without them it doesn’t work for OGG input files. And with the options it doesn’t work for FLAC input files.
How can I handle both input formats and keep tags of both without needing a different command ?
-
Firefox audio tag doubles length of OGG Vorbis
22 mai 2014, par tomysshadowSo, here I have a demo file from my website
http://members.shaw.ca/darolynk/breakup/html5game/snd_music.ogg
I am running off of Firefox Beta 30.0 and this issue does not persist in Google Chrome. In Firefox, when I play the file back, the length is displayed at around twice of its actual length as 32:13 when it is only 12:52 in length. Even worse, the audio stutters, playing one second of noise, one second of silence. This issue is not persistent in Chrome nor Opera. It is not a streaming issue (the song is streamed by the time it is played back in fact).
I am wondering if this is an issue with the codec or with Firefox’s intrepretation of the codec, but more importantly, I want to know how to fix it. Some information about the file : the file is in OGG Vorbis format, 44100 Hz, 32 kbps Mono (yes, I am running out of storage space). It was encoded with SUPER, which in turn uses FFMpeg and MEncoder as necessary.
This does not apply to all files of this format, making the issue even stranger. Are OGG Vorbis files over a certain length not allowed or interpreted differently by Firefox ? This must be the case for someone else and not just me...
Any help is appreciated, thanks in advance !
-
Stream specifier '' in filtergraph description [0][1]concat=a=1:n=1:v=1[s0] matches no streams
9 août 2020, par Tanmoy Bhowmicki am trying to concatenate two audio files in django with ffmpeg but getting this error Stream specifier '' in filtergraph description [0][1]concat=a=1:n=1:v=1[s0] matches no streams.`


here is my function


def audiomarge(request):
 recorded_audio = request.FILES['audio']
 new = tempSong(tempSongFile=recorded_audio)
 new.tempSongFile.name = 'test.wav'
 new.save()
 record_file_path = new.tempSongFile.path
 record_file_path = str(record_file_path)
 recorded_audio = request.POST.get('audio')
 songslug = request.POST.get('songslug')
 current_song = Song.objects.filter(slug=songslug)[0]
 current_song_path = current_song.songFile.url 
 current_song_path = '.'+(str(current_song_path))
 
 input_first = ffmpeg.input(current_song_path)
 input_second = ffmpeg.input(record_file_path)


 ffmpeg.concat(input_first, input_second, v=1, a=1).output('./finished_video.wav').run()
 return HttpResponse('okay')



i have also tried .compile() instead of .run() in this case nothing is happening