
Recherche avancée
Autres articles (90)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (9755)
-
lavfi/avf_showspectrum : add full frame sliding mode.
3 août 2014, par Nicolas George -
Format ffmpeg command to extract the full klv for an mpg/ts file
24 décembre 2020, par Andrew MarquezI am extracting the KLV data from an mpg file using klvdata and ffmpeg.



Following the readme, I have downloaded the sample "Day Flight.mpg" video file that contains KLV data. Running the quick start command works (I get the exact same result as the readme example for the first 6 frames.)



However, for the life of me I don't know how I can extract the KLV data for the entire video file.



As an experiment, I tried creating the KLV data file from an offset start :



ffmpeg -ss 5 -i Day\ Flight.mpg -map data-re -codec copy -f data - > out.klv




and when I run it through my code with different start times (5, 25, etc.) I do get different results.



This (to me) would suggest that the mpg file does contain KLV data throughout, but I can only access 6 frames at a time.



I would expect to be able to run an ffmpeg command to output the full KLV data. I need help formatting my ffmpeg command to properly provide all the data.



To replicate, download the "Day Flight.mpg" file from the klvdata project page and run the command I posted above. You will note it is less than a page long. It should be many, many pages long. Thank you for your help !


-
FFmpeg is not working in my android project
16 mai 2023, par CODAR747I wanted to create an activity that selects a video and then at the click of a button splits the video into parts of 29 seconds each. I tried this code but it didn't work. Here's how I did


FIRSTLY I ADDED THIS DEPENDENCY -


com.arthenica:ffmpeg-kit-video:5.1.LTS



THEN IMPORTED THESE WITHIN MY ACTIVITY


import com.arthenica.ffmpegkit.FFmpegKit;
import com.arthenica.ffmpegkit.FFmpegKitConfig;



AND FINALLY WROTE THIS CODE TO SPLIT THE VIDEO


public void splitVideo() {
 String[] command = {"-i", videoUri.toString(), "-c", "copy", "-f", "segment", "-segment_time", "29", "-reset_timestamps", "1", "-map", "0", "output_%03d.mp4"};
 FFmpegKit.execute(Arrays.toString(command));
 }



but this code is not splitting the selected video. To select video I have different functions and those are working fine. I have a problem with the splitting video using FFmpegKit.