
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 (37)
-
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. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (4681)
-
Anomalie #4343 : L’installation d’un plugin réussi alors que la table n’est pas créée
8 mars 2021 -
Documentation #3001 (Nouveau) : 3 nouvelles constantes à documenter
13 mai 2013, par b b -
FFmpeg INPUT over HTTPS with peer certificate verification
16 janvier 2020, par PistacioIs there a way to verify the INPUT certificate in case of a HTTPS schema with FFmpeg ?
The tls options in FFmpeg use parameters such astls_verify
orlisten
appended to the OUTPUT URL but I need INPUT HTTPS verification. I’d need a way to verify the SSL/TLS server like libcurl or mysql do.ffmpeg -i tls://INPUT?cert_file=PATH_TO_CERT&tls_verify=1
returns
Invalid data found when processing input
Right now I verify the peer with curl/wget and I pipe the output to FFmpeg like this :
curl -sv --cacert PATH_TO_CERT https://INPUT | ffmpeg -i pipe:
but it’s not an elegant solution. Could this be done with FFmpeg only ?