
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (88)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (12772)
-
arm : Use .data.rel.ro for const data with relocations
16 novembre 2014, par Martin Storsjö -
How to extract EPG data from a rec/ts file ?
5 janvier 2016, par wolfrevoI need to extract the data stream of a rec/ts file.
What I’ve tried until now is withavconv
avconv -i filename.rec
I get this output
avconv version 0.8.17-6:0.8.17-1, Copyright (c) 2000-2014 the Libav developers
built on Mar 15 2015 17:00:31 with gcc 4.7.2
...
Input #0, mpegts, from 'filename.rec':
Duration: 01:54:55.94, start: 74083.801633, bitrate: 400 kb/s
...
Program 28479
Metadata:
...
Stream #0.0[0x475](ger): Audio: mp2, 48000 Hz, stereo, s16, 320 kb/s
Stream #0.1[0x81a]: Data: [5][0][0][0] / 0x0005
Stream #0.2[0x881]: Data: [11][0][0][0] / 0x000B
...AFIK the data stream contains the EPG information. Does it ?
The following command
avconv -i filename.rec -f ffmetadata metadata.txt
outputs this to metadata.txt
;FFMETADATA1
and with
avconv -i filename.rec -map 0:1 -f ffmetadata metadata.txt
I get the message
Data stream encoding not supported yet (only streamcopy)
The file
filename.rec
has following content which I would like to extract : -
Flutter | Retrieve ffprobe data
23 juin 2021, par YourLogarithmI'm using
flutter_ffmpeg
package, specifically I'm trying to retrieve information regarding the chapter marks from a.m4b
file which is an audiobook. By using this method :

_flutterFFmpeg.executeWithArguments(['-i', widget.book.path, '-print_format', 'json', '-show_chapters', '-loglevel', 'error']);



I was able to output this data as a JSON map in the console. The thing is, I need to use this data inside my application, is there a way to get access to those chapters as a variable using another approach, or maybe to access this data directly from the console log printed by the method shown earlier.