
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 (52)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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 -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (6850)
-
Is there somewhere that I can get pre-compiled libraries for reading mp4 files (MinGW32, Windows, C++)
25 juin 2023, par GorlashI would like to find a simple library that I can link to a console-mode C++ utility, to display info about mp4 files (play length, width, height, maybe bit-rate)... I don't need to write or convert data, just read and display it.


The library should come with the standard SDK components :
.lib, .dll, .h, examples.c or examples.cpp, api docs
I build with MinGW 32-bit, not with Visual C++.


I am developing a console media-listing utility to display interesting data about various audio/video media files. It works for almost all formats that I could wish to examine, but mp4 has ended up being a real headache !! mp3 was challenging enough, but I was able eventually to find a short example program in C that would decode the various formats, and over a couple of years I weeded out a couple of bugs with that... but mp4 puts mp3 to shame !! There don't seem to be any single-source-file utilities that will handle parsing mp4 files successfully, so I'm falling back on looking for a library that will handle this for me, with a simple API...


I've looked at a number of common libraries for this purpose (ffmpeg, libvlc, opencv, Bento4, some others) but none of them come as pre-compiled libraries, ready for use, and none of them are trivial to build, especially with MinGW...


-
Trying to convert an mp3 file to a Numpy Array, and ffmpeg just hangs
29 mai 2021, par RichI'm working on a music classification methodology with Scikit-learn, and the first step in that process is converting a music file to a numpy array.



After unsuccessfully trying to call ffmpeg from a python script, I decided to simply pipe the file in directly :



FFMPEG_BIN = "ffmpeg"
cwd = (os.getcwd())
dcwd = (cwd + "/temp")
if not os.path.exists(dcwd): os.makedirs(dcwd)

folder_path = sys.argv[1]
f = open("test.txt","a")

for f in glob.glob(os.path.join(folder_path, "*.mp3")):
 ff = f.replace("./", "/")
 print("Name: " + ff)
 aa = (cwd + ff)

 command = [ FFMPEG_BIN,
 '-i', aa,
 '-f', 's16le',
 '-acodec', 'pcm_s16le',
 '-ar', '22000', # ouput will have 44100 Hz
 '-ac', '1', # stereo (set to '1' for mono)
 '-']

 pipe = sp.Popen(command, stdout=sp.PIPE, bufsize=10**8)
 raw_audio = pipe.proc.stdout.read(88200*4)
 audio_array = numpy.fromstring(raw_audio, dtype="int16")
 print (str(audio_array))
 f.write(audio_array + "\n")




The problem is, when I run the file, it starts ffmpeg and then does nothing :



[mp3 @ 0x1446540] Estimating duration from bitrate, this may be inaccurate
Input #0, mp3, from '/home/don/Code/Projects/MC/Music/Spaz.mp3':
 Metadata:
 title : Spaz
 album : Seeing souns
 artist : N*E*R*D
 genre : Hip-Hop
 encoder : Audiograbber 1.83.01, LAME dll 3.96, 320 Kbit/s, Joint Stereo, Normal quality
 track : 5/12
 date : 2008
 Duration: 00:03:50.58, start: 0.000000, bitrate: 320 kb/s
 Stream #0:0: Audio: mp3, 44100 Hz, stereo, s16p, 320 kb/s
Output #0, s16le, to 'pipe:':
 Metadata:
 title : Spaz
 album : Seeing souns
 artist : N*E*R*D
 genre : Hip-Hop
 date : 2008
 track : 5/12
 encoder : Lavf56.4.101
 Stream #0:0: Audio: pcm_s16le, 22000 Hz, mono, s16, 352 kb/s
 Metadata:
 encoder : Lavc56.1.100 pcm_s16le
Stream mapping:
 Stream #0:0 -> #0:0 (mp3 (native) -> pcm_s16le (native))
Press [q] to stop, [?] for help




It just sits there, hanging, for far longer than the song is. What am I doing wrong here ?,


-
Want to send a video from desktop to Wowza using ffmpeg
3 mars 2018, par ST94I am trying to stream a local
.mp4
video file from my laptop toWowza Streaming Engine
using ffmpeg. Both systems are able to ping each other. I give the following command on my laptopffmpeg -re -i bunny_1080p_60fps_normal.mp4 -vcodec libx264 -acodec aac -ar 48000 -strict experimental -f flv "rtmp://192.168.1.22:1935/live/myStream"
192.168.1.22
is the IP address of Wowza server residing on another system runningUbuntu 17.04
.I see the following on the command prompt of my laptop when I give the above command,
ffmpeg version N-89894-g18e2ac032e Copyright (c) 2000-2018 the FFmpeg developers
built with gcc 7.2.0 (GCC)
configuration: --enable-gpl --enable-version3 --enable-sdl2 --enable-bzlib --enable-fontconfig --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libtheora --enable-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma --enable-zlib --enable-gmp --enable-libvidstab --enable-libvorbis --enable-libvo-amrwbenc --enable-libmysofa --enable-libspeex --enable-libxvid --enable-libmfx --enable-amf --enable-cuda --enable-cuvid --enable-d3d11va --enable-nvenc --enable-dxva2 --enable-avisynth
libavutil 56. 7.100 / 56. 7.100
libavcodec 58. 9.100 / 58. 9.100
libavformat 58. 5.101 / 58. 5.101
libavdevice 58. 0.101 / 58. 0.101
libavfilter 7. 11.101 / 7. 11.101
libswscale 5. 0.101 / 5. 0.101
libswresample 3. 0.101 / 3. 0.101
libpostproc 55. 0.100 / 55. 0.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'bunny_1080p_60fps_normal.mp4':
Metadata:
major_brand : isom
minor_version : 1
compatible_brands: isomavc1
creation_time : 2013-12-16T17:59:32.000000Z
title : Big Buck Bunny, Sunflower version
artist : Blender Foundation 2008, Janus Bager Kristensen 2013
comment : Creative Commons Attribution 3.0 - http://bbb3d.renderfarming.net
genre : Animation
composer : Sacha Goedegebure
Duration: 00:10:34.53, start: 0.000000, bitrate: 4486 kb/s
Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 4001 kb/s, 60 fps, 60 tbr, 60k tbn, 120 tbc (default)
Metadata:
creation_time : 2013-12-16T17:59:32.000000Z
handler_name : GPAC ISO Video Handler
Stream #0:1(und): Audio: mp3 (mp4a / 0x6134706D), 48000 Hz, stereo, s16p, 160 kb/s (default)
Metadata:
creation_time : 2013-12-16T17:59:37.000000Z
handler_name : GPAC ISO Audio Handler
Stream #0:2(und): Audio: ac3 (ac-3 / 0x332D6361), 48000 Hz, 5.1(side), fltp, 320 kb/s (default)
Metadata:
creation_time : 2013-12-16T17:59:37.000000Z
handler_name : GPAC ISO Audio Handler
Side data:
audio service type: main
[rtmp @ 000001ed7c4108c0] No credentials set
[rtmp @ 000001ed7c4108c0] Server error: [ AccessManager.Reject ] : [ code=403 need auth; authmod=adobe ] :
rtmp://192.168.1.22:1935/live/myStream: Unknown error occurredCan anyone please tell me what the exact procedure is to stream a video file to Wowza .
How will I be able to view the stream at Wowza ?