
Recherche avancée
Autres articles (108)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (13487)
-
I can't find a good C# Media Transcoding Library [closed]
11 mai 2021, par TheYoungSethI am trying to find a good c# library for media transcoding, primarily video, and I don't seem to find anything good and actually usable. I do not want to use FFMpeg wrappers because I want my program to be user friendly and for public use which I can't do with FFMpeg because of the harsh usage rules that come with it.


Help would be appreciated,
thanks


-
buffersink : introduce FIFO_INIT_ELEMENT_SIZE to complement FIFO_INIT_SIZE
16 août 2015, par Andreas Cadhalpunbuffersink : introduce FIFO_INIT_ELEMENT_SIZE to complement FIFO_INIT_SIZE
Use sizeof(void *) as its value, because AVFilterBufferRef is deprecated.
Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> -
Combining find -execdir with grep
31 mai 2021, par pasanI want to go through a bunch of files in various sub folders within a root directory quickly to get the video and audio format type.


I can get the information I need from a single file using :


ffprobe file.mp4 2>&1 >/dev/null | grep "Stream"



I can run ffprobe for each file inside the root folder using


find . -name "*.mp4" -execdir ffprobe "{}" \;



What I am struggling with is to use grep with the second command to filter the output I want (as per the first command) and pipe the entire output into a file.
What is the missing link/s here ?