
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (31)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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 (8551)
-
Bitrate change with ffmpeg .mp4 -> .wav [duplicate]
14 juin 2020, par jshackleI don't know too much about ffmpeg nor audio in general. I have an .mp4 audio file that I am trying to convert into a .wav file, so I can open it in python with PySoundFile. An issue is that the bitrate increases dramatically from the .mp4 file to the .wav file (I believe 130kb/s -> 1400kb/s) and so the file size increases and becomes harder to handle in python.



For the conversion, I am using a command I found online as I am not familiar with ffmpeg :



ffmpeg -i inFile.mp4 -ab 160k -ac 2 -ar 44100 -vn outFile.wav



I tried playing around with the arguments a little, but I'm still not sure what they do and didn't notice any differences. Is there something going on in the command that is increasing the bitrate ? is it something inherent about .wav files ? should I convert to a different format and if so, how would I do that ?


-
Invalid data error during ffmpeg .m4a conversion
4 janvier 2023, par Kazi bácsiI wanted to edit my .m4a voice recording from Samsung Voice Recorder using ffmpeg 2.2.2, however, I got the error Invalid data found when processing input. I tried to open it through Audacity, but it returned an error claiming that the ffmpeg library is missing, which is definitely not the case. Eventually I tried to use online .m4a to .mp3 converters, but they all returned error, so I assume there may be an issue with the encoding of the original file and ffmpeg should be configured accordingly. What settings shall I use ? (The original file can be played on the phone without any problem.)


ffmpeg -ss 00:00:19 -i "C:\Your\Folder\original.m4a" edited.m4a



-
Create MP4 for HTML5 video with FFMPEG
7 août 2013, par KrisI'm trying to create an MP4 file with FFMPEG to play with a HTML5 video tag.
I found some sample codes that use libx264, but when I tried, FFMPEG gave me an "unknown encoder libx264" error.
I asked my host to install it on my server, and got the following reply :
After review from our L3 group I am informed that x264 is not supported with FFMPEG any longer. That was a library that went with FFMPEG-PHP that is not supported at all by anyone.
In order to get that to work with FFMPEG you would need to contact the developers of the FFMPEG software to get assistance with that as it is outside our scope of support.
I looked everywhere online, but can't seem to find an answer to this. If libx264 is not supported anymore, how is everyone else doing it ? Still libx264 with an older FFMPEG version, or some other way ?