
Recherche avancée
Autres articles (66)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (14702)
-
How to decrypt SAMPLE-AES .m3u8 video streams ?
4 avril 2018, par Aaron WizzardI keep trying to download some HD videos that require a cable provider login (which is no problem), but I’m not able to download them because of the SAMPLE-AES encryption. The site uses HLS Streaming. When I try to use "video download helper" in Firefox, the error message says "HLS encryption method SAMPLE-AES is not supported"
I used this code in ffmpeg :
ffmpeg -i http://tve-vod.cdn.turner.com/adultswim/5219209fb9b00585da914ff30104c6e200000000/layer6/layer6_pt.m3u8 -c copy video.ts
Then I got this error message.
[hls,applehttp @ 05e07960] SAMPLE-AES encryption is not supported yet
[hls,applehttp @ 05e07960] Failed to open segment of playlist 0Can someone please help ? I used youtube-dl with some success, but it doesn’t give me the option to download the videos in HD. I also would love to github.com/selsta/hlsdl, but I don’t have a Linux/Unix computer to run it.
-
avutil/tests/audio_fifo.c : Corrected test error messages
28 décembre 2016, par Thomas Turner -
How to remove "wrting library" from an MP3 file using ffmpeg ?
3 septembre 2022, par aveceuxI tried to remove the "writing library" entry from some of my mp3 files with ffmpeg, and this is the command I used :



ffmpeg -i input.mp3 -map_metadata -1 -c copy output.mp3




The command removed all the other tags, but the "writing library" still remained intact.



I've also tried other mp3 tag editing tools, but none of them did the job.



Here's the mediainfo of an example mp3 file :



Format : MPEG Audio
File size : 32.1 MiB
Duration : 1 h 9 min
Overall bit rate mode : Variable
Overall bit rate : 64.0 kb/s
Writing library : LAMEUUULAME3.91
Cover : Yes
Cover MIME : image/jpeg

Audio
Format : MPEG Audio
Format version : Version 1
Format profile : Layer 3
Format settings : Joint stereo / MS Stereo
Duration : 1 h 9 min
Bit rate mode : Variable
Bit rate : 64.0 kb/s
Channel(s) : 2 channels
Sampling rate : 44.1 kHz
Frame rate : 38.281 FPS (1152 SPF)
Compression mode : Lossy
Stream size : 31.9 MiB (100%)
Writing library : LAMEUUULAME3.91




Any help would be greatly appreciated. Thank you.