
Advanced search
Medias (91)
-
Valkaama DVD Cover Outside
4 October 2011, by
Updated: October 2011
Language: English
Type: Picture
-
Valkaama DVD Label
4 October 2011, by
Updated: February 2013
Language: English
Type: Picture
-
Valkaama DVD Cover Inside
4 October 2011, by
Updated: October 2011
Language: English
Type: Picture
-
1,000,000
27 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Demon Seed
26 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
The Four of Us are Dying
26 September 2011, by
Updated: September 2011
Language: English
Type: Audio
Other articles (10)
-
Les formats acceptés
28 January 2010, byLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Ajouter notes et légendes aux images
7 February 2011, byPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Gestion générale des documents
13 May 2011, byMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet; la récupération des métadonnées du document original pour illustrer textuellement le fichier;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP sur (...)
On other websites (3130)
-
Why cant I feed FFServer(Linux) from FFMpeg (Windows)?
14 March 2018, by MilenWhat I want to do is to stream a (only)video file from Windows 10 using RTSP. First, I tried to use webm HTTP instead. I found that ffserver is not avaiable for Windows, so I configured and run ffserver on a Linux machine (Ubuntu 16.04). Then, I downloaded pre-built ffmpeg for Windows x64 and run a ffmpeg command to feed my rtsp server. The fact is that the command didnt work on my Windows machine
The same ffmpeg command works well if I run it in my Linux machine.
The details are descripted below:
ffserver.conf file:
HTTPPort 8090
HTTPBindAddress 0.0.0.0
MaxHTTPConnections 2000
MaxClients 1000
MaxBandwidth 10000
CustomLog -
NoDaemon
<feed>
File ./feed1.ffm
FileMaxSize 1G
ACL allow 127.0.0.1 192.168.0.131 #Windows machine IP address
</feed>
<stream>
Feed feed1.ffm
Format webm
# Video settings
VideoCodec libvpx
VideoSize 720x576
VideoFrameRate 25
AVOptionVideo flags +global_header
AVOptionVideo cpu-used 0
AVOptionVideo qmin 10
AVOptionVideo qmax 42
AVOptionVideo quality good
NoAudio
PreRoll 15
StartSendOnKey
VideoBitRate 400
</stream>
<stream>
Format status
ACL allow localhost
ACL allow 192.168.0.0 192.168.255.255
ACL allow 192.168.0.131 # my windows machine ip
</stream>
<redirect>
URL http://www.ffmpeg.org/
</redirect>ffmpeg command to feed server:
ffmpeg -i video.avi http://192.168.0.119:8090/feed1.ffm
Error thrown by Windows command line:
Unable to find a suitable output format for 'http://192.168.0.119:8090/feed1.ffm' .
http://192.168.0.119:8090/feed1.ffm : Invalid argument.Someone told me that Windows newest version of FFMpeg doesnt support ffm, Is that true? I couldnt find a different format example.
-
Generate AcoustID/Chromaprint acoustic fingerprint in iOS
28 March 2023, by ttarikChromaprint is an open-source software library for calculating an AcoustID audio fingerprint of an audio file.



I'm trying to generate this audio fingerprint from a local file on iOS.



The library can be built on Windows, Linux and OS X, where it creates a dynamic library as well as a standalone program (fpcalc) that accepts an audio file, decodes the audio and passes it to the chromaprint library to calculate the fingerprint. It doesn't really work on iOS for the following reasons:



- 

- The standalone fpcalc program can't be run on iOS because you can't run an executable from an app
- The source code to the fpcalc program uses chromaprint and ffmpeg. From what I've read, ffmpeg is difficult to compile on iOS. The chromaprint docs state that the Accelerate framework can be used in OS X/iOS, but there is no example code to do this and I have no idea where to start.







I've been having a bit of trouble actually building the library for iOS (CMake hates me), but I feel like the above problems are more relevant because even with the library compiled, it wouldn't just work out of the box.



I'm trying to avoid this being a "write my code for me" question, but I am very much stuck on essentially every aspect of generating a chromaprint fingerprint for iOS.



My goal, I think, is to recreate the functionality of the fpcalc program on iOS - to decode an audio file (stored on the device, of any audio type) and pass it to the chromaprint library to generate the fingerprint.



I found this question about acoustic fingerprinting on iOS but it wasn't relevant to chromaprint/AcoustID and the answers were less than helpful. Echoprint Codegen is interesting, but I need a chromaprint fingerprint.


-
Which FFMPEG Arguments to Copy .m4a Audio File in Flutter?
25 July 2021, by MeggyI've got my own fork of GSPrakashNaidu' Flutter Audio_Trimmer plugin which I'd like to use to edit an M4a audio file.


https://github.com/meghead/audio_trimmer


The plugin passes the following command to Flutter's FFMPEG plugin;


"-y -i \"$path\" -vn -ss $start -to $end -ar 16k -ac -c:a aac -b:a 96k -acodec copy $outPath"; 



Which can be seen here in the Android Studio console;


Running FFmpeg with arguments: [-y, -i, /storage/emulated/0/Android/data/myfiles/files/flutter_audio_recorder_1627212132002.m4a.temp, -vn, -ss, 5.0, -to, 10.5, -ar, 44k, -ac, 2, -b:a, 96k, -acodec, copy, /data/user/0/myfiles/cache/output.m4a].



But here's the error which gets thrown;


Guessed Channel Layout for Input Stream #0.0 : mono
I/mobile-ffmpeg(21007): Input #0, wav, from '/storage/emulated/0/Android/data/myfiles/files/flutter_audio_recorder_1627212265033.m4a':
I/mobile-ffmpeg(21007): Duration: 
I/mobile-ffmpeg(21007): 00:00:01.91
I/mobile-ffmpeg(21007): , bitrate: 
I/mobile-ffmpeg(21007): 705 kb/s
I/mobile-ffmpeg(21007): 
I/mobile-ffmpeg(21007): Stream #0:0
I/mobile-ffmpeg(21007): : Audio: pcm_s16le ([1][0][0][0] / 0x0001), 44100 Hz, mono, s16, 705 kb/s
I/mobile-ffmpeg(21007): 
E/mobile-ffmpeg(21007): [ipod @ 0x7277f388c0] Could not find tag for codec pcm_s16le in stream #0, codec not currently supported in container
E/mobile-ffmpeg(21007): Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument
I/mobile-ffmpeg(21007): Stream mapping:
I/mobile-ffmpeg(21007): Stream #0:0 -> #0:0
I/mobile-ffmpeg(21007): (copy)
I/mobile-ffmpeg(21007): 
E/mobile-ffmpeg(21007): 
I/mobile-ffmpeg(21007): Conversion failed!
D/flutter-ffmpeg(21007): FFmpeg exited with rc: 1 



What argument can I use to output .m4a?