
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (20)
-
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 (...) -
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (4195)
-
creating Homebrew symlink for beginners
19 mars 2021, par PlatyporeI am having issues installing the Rust dependency while trying to install ffmpeg through Homebrew on macOS 10.3.6. Terminal just eventually hangs, as is well known in other posts about the topic for Sierra (and I guess High Sierra too). I have installed Rust subsequently using the following command from their website :


curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh



It seems I need to now create a symlink between the Rust directory created by the above command and Homebrew so that Homebrew can recognize the dependency as being installed, but I am absolutely not versed in how to do this ; my terminal knowledge is limited to very simple basics and plugging in code from other answers has not worked. I don't have the knowledge to discern what is a generic path meant to be replaced by specific locations and what is meant to be left as is when it comes to terminology such as
prefix
and$PATH
.

I believe the following are the paths I need to symlink to continue on with my installation of ffmpeg, but I honestly have no idea.


/Users/usr/.rustup/toolchains/stable-x86_64-apple-darwin/bin/rustc 
/Users/usr/.rustup/toolchains/stable-x86_64-apple-darwin/bin/cargo



Could anyone please help and explain step-by-step how to go about doing this ?


-
lavf/movenc : write track title metadata for mov files
19 mars 2018, par Courtland Idstromlavf/movenc : write track title metadata for mov files
Track title (atom 'name') is a well defined user data atom for mov files. Existing code (for mp4) only writes title metadata if present.
Relevant reference docs :
https://developer.apple.com/library/content/documentation/QuickTime/Reference/QTRef_AtomsResources/Content/QTRef_AtomsResources4.html#//apple_ref/doc/uid/TP40004285-DontLinkChapterID_1--udta-
https://developer.apple.com/library/content/documentation/QuickTime/QTFF/QTFFChap2/qtff2.html#//apple_ref/doc/uid/TP40000939-CH204-63839 -
FFMPEG rgb image from named pipe in to h256 rawvideo out to named pipe out
12 octobre 2018, par Evren BingølI am forking an ffmpeg and piping in rgb0 images and read hvec rawvideo (h256 frames) out.
This is the command I am using
ffmpeg -y -video_size 176x144 -f rawvideo -pix_fmt rgb0 -i
\\\\.\\pipe\\my_pipe -c:v libx265 -f rawvideo \\\\.\\pipe\\my_pipe_outThe issue is I never hear anything in ffmpeg when I try to read the pipe, so ffmpeg is not spitting anything out.
When piping data into ffmpeg, I would assume that ffmpeg knows by the format parameter that it is rgb, and by the dimensions parameter, its size and calculates when a certain amount of data it received from pipe in is a full frame rgb image, processes it, and spits back hvec from pipe out.
But it blocks as if it is accepting more data even though a full rgb image is piped in.
Is what I am trying to do doable ?