
Recherche avancée
Autres articles (79)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (15256)
-
FFmpeg Audio Merge Delays
26 novembre 2016, par Matt WallI’m trying to run this kind if FFmpeg command to stitch two videos together and merge the audio.
ffmpeg -i C:\Santa\Staging\santa_2016.11.21.12.01.33_Komo_Kwigly.flv -i C:\Santa\Staging\door_2016.11.21.12.01.33_Komo_Kwigly.flv -loop 1 -i C:\watermark.png -filter_complex "[0]setpts=PTS-STARTPTS,transpose=1[a];[1]setpts=PTS-STARTPTS,transpose=1[b];[a][b]hstack[c];[c][2]overlay=W-w-5:H-h-5:shortest=1[v];[0][1]amerge,pan=stereo:c0code>
And I’m getting this strange error and audio sync issues :
Does anyone have any tips for what to do ? I’ve tried a lot and cannot seem to change the behavior. The sources are fine, too.
The only other relevant log seems to be :
[Parsed_pan_7 @ 00000000006a8440] This syntax is deprecated. Use '|' to separate the list items.
[Parsed_pan_7 @ 00000000006a8ac0] This syntax is deprecated. Use '|' to separate the list items.
[Parsed_amerge_6 @ 00000000006a8440] No channel layout for input 1
[Parsed_amerge_6 @ 00000000006a8440] Input channel layouts overlap: output layout will be determined by the number of di stinct input channels -
Appium iOS screen recording in parallel runs result in overlapping videos
29 juillet 2020, par Shiori BermudoMy code is in Python. I'm using appium's built in function
driver.start_screen_recording() driver.stop_screen_recording()
.

I run two tests (A and B) on different devices (A and B respectively), different appium servers (ports) and different wdalocalports. The tests are running on a schedule in Jenkins.


Each test look something like this :


self.driver = webdriver.Remote("http://localhost:portA/B")
# Part1
self.driver.start_screen_recording()
# do something ...
vbytes = self.driver.stop_screen_recording()
self.save_movie(vbytes, Part1fileName)
# Part2
self.driver.start_screen_recording()
# do something ...
vbytes = self.driver.stop_screen_recording()
self.save_movie(vbytes, Part2fileName)
# do something until test is over...
self.driver.quit()



When Test B starts while Test A is running, the video output of B is showing the screen of Test A. The saved filenames are correct. TestA.mp4 is correct but TestB.mp4 shows the screen of Device A.


-
ffmpeg Attach file from stream
5 juin 2020, par Tobias BrohlI have a flac source file with an embedded cover art, and what to convert it into an mka while retaining the cover art. The problem being that matroska requires cover arts to be attached.
I can extract the original cover using



ffmpeg -i target.flac -vcodec copy cover.jpg



and later add it to the mka using
-attach
. My question is, whether there is any way not to load the attached data from a file, but instead from the first command (as stream) and do this inline.