
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (98)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (11323)
-
Convert 16bit Grayscale PNG to HEVC/x265
14 février 2021, par Ben BezosI want to convert a 12bit image signal to HEVC for effective compression. Because I need to be able to reconstruct the original 12bit signal, the compression needs to be losslessly reversible. At the moment I have the data as 16-bit PNG files.


My first try was using ffmpeg :


ffmpeg -y -framerate 1 -i input.png -c:v libx265 -x265-params "lossless=1" output.mp4



Unfortunately the output is not reversible. When extracting the image from the mp4, the pixel values are slightly off.


ffmpeg -i output.mp4 -vframes 1 reconstructed.png



Following Answer suggest converting the input to YUV444 first to avoid unexpected behavior by ffmpeg : Lossless x264 compression


I have failed so far to successfully convert my 16bit file to YUV, convert it to x256 and receive a correct reconstruction when decoding.


Is there a straight forward way to convert 16bit images to HEVC ?


-
Convert g723.1 to wav using ffmpeg
22 février 2018, par user2191454I want to convert g723.1 encoded audio file to simple wav format.
I tried this :
ffmpeg -i 1.wav -c g723_1 -f wav output_file_name.wav
I got the error below :
1.wav: could not find codec parameters
Guessed Channel Layout for Input Stream #0.0 : stereo
Input #0, wav, from '1.wav':
Duration: 00:00:39.72, bitrate: 8 kb/s
Stream #0:0: Audio: none ([131][0][0][0] / 0x0083), 8000 Hz, 2 channels, 16 kb/s
File 'output_file_name.wav' already exists. Overwrite ? [y/N] y
No decoder for stream #0:0, filtering impossible
Error opening filters!How can I convert the file with ffmpeg ?
-
Convert a normal mp4 into a 180 VR
15 novembre 2018, par bob dylanIf i open a "normal" video into aframe, it is incredibly distorded.
Is there a way to convert any video into something that can be played without being distorded ?
Of course replacing missing chunks with black.
Edit : Let’s say that videos are 16:9, if this is important.