
Recherche avancée
Autres articles (66)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
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 (...)
Sur d’autres sites (5701)
-
DRM for rented content ? [closed]
1er janvier 2024, par CromulentI want to be able to rent audio and video files to people. It'll just be a single payment to rent some media for three days or so but I want to use DRM so that after those three days the media stops working.


It would be good if the content worked on multiple devices before the three days were up.


Can someone suggest some things I should look into ? I'll be serving all my media from my own website and will ffmpeg to encode files to the correct codecs.


-
How to add linker flags to cmake properly ?
29 juillet 2016, par Lera SinevichI am building
opencv-3.1.0
and I want to useffmpeg
, which is installed in custom path/media/sdcard/usr/lib
,/media/sdcard/usr/include
.
Normally, linker gives me an error :/usr/lib/gcc/i586-poky-linux/4.9.1/../../../../i586-poky-linux/bin/ld: cannot find -lavcodec
So I gave cmake some additional flags :
-DCMAKE_SHARED_LINKER_FLAGS="--library-path /media/sdcard/usr/lib", DCMAKE_INCLUDE_PATH=/media/sdcard/usr/include
.
Include seems not to work at all, but as for linker flags,cmake
gave me the following output :Linker flags (Release): --library-path /media/sdcard/usr/lib
Linker flags (Debug): --library-path /media/sdcard/usr/libBut when I tried to run
make
, I got an error :
c++: error: unrecognized command line option '--library-path'
My ld knows ’—library-path’ flag and finds necessary libraries, e.g. if I run
ld -lavcodec --library-path /media/sdcard/usr/lib --verbose
it gives me
attempt to open /media/sdcard/usr/lib/libavcodec.a succeeded
I may be missing some ground understanding of the whole process.
-
ffmpeg to encode MKV or MP4 with segmented Parts in one file
28 juillet 2014, par PhilIs it Possible to create an MP4 or MKV file where the Video, Meta and Audio Data is segmented and placed alternated in a single File ? (By segmented I don’t mean different Video or Audio Tracks.)
So that it looks like something like this :
[meta][video][audio][meta][video][audio]…
I searched for "segmenting", "clustering", and other buzz words. But the most searches ended up in an HTTP-Livestreaming where One File is segmented in single files.
That Segmenting Technology is okay (so you can stream it). But I don’t want these segments in single Files, i want them to be in one single MKV or MP4 File.Maybe someone has any clue.