
Recherche avancée
Autres articles (60)
-
Diogene : création de masques spécifiques de formulaires d’édition de contenus
26 octobre 2010, parDiogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
A quoi sert ce plugin
Création de masques de formulaires
Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...) -
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 (...) -
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 (5859)
-
Revision 49101 : Yaml peut être victime de textwheel. Correction a minima en ne redéclarant ...
27 juin 2011, par marcimat@… — LogYaml peut être victime de textwheel. Correction a minima en ne redéclarant pas la fonction yaml_decode si elle existe. textwheel la possède dans inc/yaml-mini.
-
FFmpeg per stream metadata change with more audio streams
22 août 2014, par tomasbI’m trying to change audio stream title for a movie which was originally with DTS sound. I have added AC3 version using -map parameter, want to keep both. My problem is that the AC3 audio stream bears DTS stream metadata. I am using FFmpeg 1.2
Tried :
ffmpeg -i movie.mkv -c copy \
-metadata:s:1 title="AC3 5.1 640 kb/s" -y movie.temp.mkvthis partially works, but output file contains only 1 of each stream type, i.e. 1 video, 1 audio and 1 subtitle stream. When i try to get all the streams contained in my mkv like this :
ffmpeg -i movie.mkv -map 0 \
-metadata:s:1 title="AC3 5.1 640 kb/s" -y movie.temp.mkvi am getting strange output :
Stream mapping:
Stream #0:0 -> #0:0 (h264 -> libx264)
Stream #0:1 -> #0:1 (ac3 -> libvorbis)
Stream #0:2 -> #0:2 (subrip -> ass)
Stream #0:3 -> #0:3 (dca -> libvorbis)
Stream #0:4 -> #0:4 (ac3 -> libvorbis)
Stream #0:5 -> #0:5 (subrip -> ass)
Press [q] to stop, [?] for help
[libvorbis @ 0x12e5a40] Queue input is backward in time
Last message repeated 19 times
Queue input is backward in time 20kB time=00:00:01.05 bitrate= 156.8kbits/s
[libvorbis @ 0x12e5a40] Queue input is backward in time
Last message repeated 17 times
Queue input is backward in time 20kB time=00:00:01.99 bitrate= 83.0kbits/s
[libvorbis @ 0x12e5a40] Queue input is backward in time
Last message repeated 5 times
Queue input is backward in time= 20kB time=00:00:02.38 bitrate= 69.5kbits/s
[libvorbis @ 0x12e5a40] Queue input is backward in time
Last message repeated 6 times
Queue input is backward in time= 20kB time=00:00:02.87 bitrate= 57.5kbits/s
[libvorbis @ 0x12e5a40] Queue input is backward in time
...I have found information that FFmpeg’s attributes under linux are inconsistent when manipulating per stream metadata and doesn’t work as expected so I am looking for some alternative way how to proceed. (preferably with ffmpeg)
Thanks for any help.
-
Syncing decoded video using Ffmpeg
30 juin 2012, par Infiniti FizzI am using Ffmpeg to decode and play video files. I have currently got the video playing and the audio playing at as fast as the CPU can decode and display them. The problem is that I want to play the video and audio in sync using the system clock.
I've searched around for some help but can't find anything substantial other than dranger's tutorial 05 but I don't really understand what he is doing because my program isn't written in the same way as his.
I am using mjpeg files and so the pts seems to be retrieved every single time a frame is decoded, I have multiplied the pts by the time_base as dranger does to get the value in seconds but the resolution seems to be only seconds and so I get the value "6" 25 times and then "7" 25 times as the video runs at 25 frames per second.
Is there not a more accurate value ? Or way to get a more accurate value and if so, how would I go about syncing to this value ? I am using SDL to display the value so can I just use a SDL_Delay() of the value I get ?
Thanks for your time,
Infinitifizz