
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (24)
-
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Installation en mode standalone
4 février 2011, parL’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
[mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (5838)
-
Video playing slow on Rock 3a / Banana Pi 4 and Odroid
21 décembre 2022, par Alain VanderbroeckI want to play 1080p fullscreen video on another device as Raspberry Pi.
Currently i am testing Rock 3A


The video plays very laggy.


Can someone please help me on this one ?


- 

- Which codec should i use ? (currently libx264)
- Which player should i use ? (currently mplayer)
- What are the player settings ? (currently no extra settings)
- Which OS should i use ? (currently tested Ubuntu Mate and Armbian)










Regarding to this link : https://forum.armbian.com/topic/22476-video-playback/
i should patch ffmpeg. But how do i patch it.
Or should i use Kodi ?


-
FFMPEG : merge mkv + audio + subtitles [closed]
24 décembre 2022, par vespinoI have a 4K video with Japanese audio and a 1080p video with English audio. I have extracted the audio from the English video file and would like to know how to merge the following files :


jap_video.mkv
eng_audio.acc
nld_subtitles.srt



I don't mind the original audio and subtitles overwritten, I would like to end up with just 1 file containing my audio and my subtitles.


This is how I merge jap_video.mkv + eng_audio.acc


ffmpeg -i jap_video.mkv -i eng_audio.acc -c:v copy -map 0:v:0 -map 1:a:0 output.mkv



Following this I merge output.mkv + nld_subtitles.srt


ffmpeg -i output.mkv -f srt -i nld_subtitles.srt -map 0:0 -map 0:1 -map 1:0 -c:v copy -c:a copy -c:s srt -metadata:s:s:0 language=nld output_srt.mkv



This works fine, but is it possible in one command ? A nice to have would be to name both audio and subtitles as I'm doing with the second command.


-
Extracting a bit broken AC3 audio from a video file
3 janvier 2023, par WYSIWYGI Googled for about 2 hours for this problem and I can't seem to find the answer anywhere.


So I have a 1080p video file which has about 2 seconds within it that's broken (at 3 minutes and 53 seconds). I found a way to extract the non-broken parts of it, also I got a replacement for the broken frames from another version of the same video (in 720p), upscaled them to 1080p and replaced them in the 1080p file (reencoding the whole file in the process). Here comes the problematic part - at the same time (3 min 53 sec), the audio is also broken and it's in Dolby Digital 5.1 AC3 format. When I try to extract the audio track from the original 1080p file and place the result in the new fixed version, which contains the upscaled video frames, the audio obviously is cut at the problematic 2 seconds and it desyncs (starts to play earlier) for the rest of the file.


What I want to do and I'm unable to understand how to do it is to extract the AC3 stream in such a way that the 2 broken seconds are filled with silence and the total length of the audio stay the same as the original, so it won't desync. Is this possible and if it is, what is the correct FFMPEG command for it ?


Thank you in advance.


I've tried :


ffmpeg -i broken.mkv -c:a copy audio.ac3


which presented an output AC3 file, which is missing the 2 seconds from 03:53 to 03:55


so when I combine the resulting AC3 file with the repaired video, by using :


ffmpeg -i fixed.mkv -i audio.ac3 -c copy fixed-with-audio.mkv


it is desynced, so at video time 03:53 I hear the audio that should play at 03:55