
Recherche avancée
Autres articles (54)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (7530)
-
Get remote MKV file metadata using nodejs
31 mars 2024, par Ali RahmaniI need to extract the softsubs embeded into an mkv file hosted on a remote server using nodejs.


All of the solutions I've found online so far are using local files, and others are either poorly documented or throwing unknown errors that I can't find online ; That doesn't work for me. I need to extract subtitles from the remote file (like
http://some-url.com/videos/video.mkv
) without downloading the entire file to use it in my web-based application.

-
How to convert a DNxHD file and interlace at 25fps ?
27 octobre 2022, par Moritz BastianI need some help transcoding a file with ffmpeg.


I'm trying to transcode a progressive file to an interlaced DNxHD 185 using different filters.


Goal is to archive better interlacing for a couple of problematic shots eg. zooms / drone footage.


Can someone help with the proper command ?


Best,
Moritz


-
showall equivalent ffmpeg flags in VLC ?
5 décembre 2019, par vagranI have a stream which I can play in ffplay using command like this :
ffplay -flags2 +showall rtsp://localhost:12345/video
Notice
-flags2 +showall
option which instructs ffplay not to wait until the first keyframe received before start playing. My video does not have ones (I-frames). It uses encoding scheme which uses only P-frames, so initially video is corrupted, but after several seconds it gradually becomes good. This is not so rare case, actually many popular nowadays DJI drones (e.g. Mavic or Inspire where my video is from, encoded video data is unchanged H.264 stream provided by DJI SDK) have such encoding. So without this flag the playback never starts. The same behaviour is visible in VLC, it connects to RTSP server, receives the stream, but video is not playing probably because of the same reason. Here is a video sample which can be played byffplay -flags2 +showall inspire.ts
.
Is it possible to specify equivalent option to VLC and be able to play such videos ?