
Recherche avancée
Autres articles (78)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...)
Sur d’autres sites (11836)
-
doc/developer.texi : extend and update naming conventions
15 novembre 2022, par Anton Khirnov -
Anomalie #4701 : Jointures automatiques erronées ? (ex. : groupe au lieu de groupe_mots)
23 mars 2021, par cedric -"avant ça fonctionnait" c’est un bien grand mot. Disons que la requête sortait un résultat, mais il était faux !
Voici ce que j’obtiens en SPIP 3.2 : on note l’absence de clause sur
L1.objet
qui est une erreur :
```
SELECT L1.id_objet, L1.id_objet AS id_groupe
FROM spip_documents_liens AS `L1`
INNER JOIN spip_documents AS L2 ON ( L2.id_document = L1.id_document )
WHERE (L2.titre = ’toto’)
GROUP BY L1.id_objet
```Je pense que le bug apparait plus clairement depuis https://git.spip.net/spip/spip/commit/81b3f6dd22d699986ca2d5a068959ec0011b4253 qui en effet introduit la clause where de façon plus robuste
-
ffmpeg cut and stitch video
5 janvier 2023, par user726720I have a scenario where i need to cut and stitch parts of the video together using ffmpeg, but this video has multiple audio channels (8 audio channels). The below is working for me but only gives me one audio channel as output


ffmpeg -i c:\process\abc.mxf -filter_complex \
"[0:v]trim=600:2663,setpts=PTS-STARTPTS,format=yuv420p[0v]; \
[0:a]atrim=600:2663,asetpts=PTS-STARTPTS[0a]; \
[0:v]trim=2886:3286,setpts=PTS-STARTPTS,format=yuv420p[1v]; \
[0:a]atrim=2886:3286,asetpts=PTS-STARTPTS[1a]; \
[0v][0a][1v][1a]concat=n=2:v=1:a=1[outv][outa]" -map [outv] -map [outa] out.mxf



How can i get all the 8 audio channels in the output. I have tried the below, as an attempt to get two audio channels, but does work


ffmpeg -i c:\process\abc.mxf -filter_complex \
"[0:v]trim=600:2663,setpts=PTS-STARTPTS,format=yuv420p[0v]; \
[0:a]atrim=600:2663,asetpts=PTS-STARTPTS[0a]; \
[0:b]atrim=600:2663,asetpts=PTS-STARTPTS[2a]; \
[0:v]trim=2886:3286,setpts=PTS-STARTPTS,format=yuv420p[1v]; \ 
[0:a]atrim=2886:3286,asetpts=PTS-STARTPTS[1a];
[0:b]atrim=600:2663,asetpts=PTS-STARTPTS[3a]; \
[0v][0a][2a][1v][1a][3a]concat=n=6:v=1:a=2[outv][outa]" -map [outv] -map [outa] out.mxf



Any hint will be much appreciated.


ANOTHER ATTEMPT


ffmpeg -i c:\process\3010010155-TCRHD.mxf -filter_complex " \
[0:v]trim=600:2663,setpts=PTS-STARTPTS,format=yuv420p[0v]; \
[0:a:0]atrim=600:2663,asetpts=PTS-STARTPTS[0a]; \ 
[0:a:1]atrim=600:2663,asetpts=PTS-STARTPTS[2a]; \
[0:v]trim=2886:3286,setpts=PTS-STARTPTS,format=yuv420p[1v]; \
[0:a:0]atrim=2886:3286,asetpts=PTS-STARTPTS[1a]; \
[0:a:1]atrim=600:2663,asetpts=PTS-STARTPTS[3a]; \
[0v][0a][2a][1v][1a][3a]concat=n=6:v=1:a=2[outv][outa]" -map [outv] -map [outa] out.mxf



This gives me an error Cannot find a matching stream for unlabeled input pad 6 on filter Parsed_concat_14