
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (76)
-
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (5144)
-
Android radio stream metadata notification
27 janvier 2016, par sNorei was looking for Android libraries which are able to fetch metadata stuff e.g. artist, title from radio streams. I’ve found these 2 libs which are capable of that :
https://code.google.com/archive/p/streamscraper/
https://github.com/wseemann/FFmpegMediaMetadataRetrieverAnd there’s also ffmpeg available, where the libraries have first to be compiled for Android.
The above libs haven’t a listener interface for getting informed about song changes. The only possible solution is to poll every couple of seconds, and check old artist and title with the new ones. But I think this will drain the smartphone batteries quite a lot.
Is there a way to get notified if radio song changes ? Maybe with ffmpeg ?
-
FFMPEG command runs but youtube livestream is not displayed [closed]
21 septembre 2023, par Ngọc Hoa DươngI have a video on google drive and I use the ffmpeg command to livestream it on youtube

ffmpeg.exe -stream_loop -1 -re -i "https://drive.google.com/uc?export=preview&id=1rfKpTYrV62FnuZsfeWc96zt3Xl6NhZ0v" -vcodec copy -acodec copy -g 1 -f flv -flvflags no_duration_filesize rtmp://a.rtmp.youtube.com/live2/KEY

The command run good

enter image description here

, but no livestream show in youtube

enter image description here

-
Docker : an error happened : ffmpeg exited with code 127
18 mai 2021, par developerpoliceAs I mentioned above, when I run the container, I get an error. When I run it normally, it works, there is no problem.


my container run code : docker run —rm -i -t -p 8080:4444 9fa71c8ca9ba


the error i got ;
an error happened : ffmpeg exited with code 127


APP.JS


https://pastebin.ubuntu.com/p/znCRWz2rgx/


Dockerfile
:

FROM node:10

COPY . /app
WORKDIR /app

RUN npm install
RUN npm install fluent-ffmpeg
RUN npm install os
RUN npm install express
RUN npm install --save @google-cloud/text-to-speech
RUN npm install --save @google-cloud/translate
RUN export GOOGLE_APPLICATION_CREDENTIALS="dogwood-cipher-307314-4074350f02b8.json"


CMD ["node", "app.js"]