
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (74)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)
Sur d’autres sites (7498)
-
Muxing two video streams without transcoding with ffpmeg and making vlc overlay them during play
20 octobre 2016, par Laars CamotThere is a software that claims it can be done but it’s two expensive for me for a try. Basically it muxes two video streams in one and makes the second transparent video stream overlay on top of the first like it would be a subtitle stream without video filters. The software author states that the resulting output should be playable with all players, including VLC. I’ve tried this :
ffmpeg -i first.ts -i second.ts -vcodec copy -acodec copy -map 0 -map 1:0 -f mpegts out.ts
But it simply adds a second video stream to the resulting file. Playing it with VLC makes the player open two separate VLC instances.. no overlay at all. Is there a way to make VLC show two separate videos concurrently in the same window ?
-
avcodec/libx264 : call x264_param_cleanup() if available
10 juillet 2020, par James Almer -
Automatically appending ffmpeg directory to path whenever exe is opened ?
29 juin 2021, par jeb2I wrote a program compiled as an exe, which live on a network drive for other users to use. An issue I'm running into is that for other users (whose machines dont have python installed, not sure if this matters), it states that it can't find ffmpeg :




I've placed the bin folder of ffmpeg to the same location as the exe, but its not really viable for me to manually go to each users computers to add
\drive\VoiceGen\bin
to their user Path. Is there a way to have the program automatically add the bin location to the userpath ?