
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (77)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (5319)
-
Show the filename being processed when using an input list and an error occurs ?
17 février 2024, par GeoNomadI am concatenating a large number of short files using a list.


One in a hundred seems to have an error of one sort or another which stops the processing.


- 

-
Is there a way to tell ffmpeg to just drop the bad frame or even bad file and continue ?


-
If not, is there a way to know what file has the error so I can just remove that file from the list ?








ffmpeg -safe 0 -f concat -i list.txt -c copy FEEDER.mp4


I have tried -loglevel verbose, but that did not help.


[concat @ 0000022d22b23480] h264_mp4toannexb filter failed to receive output packet
Error demuxing input file 0: Invalid data found when processing input
Terminating demuxer thread 0
list.txt: Invalid data found when processing input



How do I find out which file of the several hundred files in list.txt is the culprit ?


As it happens, these files have time stamps and I can find it by looking at the last output frame and then deleting the appropriate file. But it seems there should be a better way.


FWIW I am working in Windows cmd.exe or Powershell Terminal


-
-
How can I debug this rtmp stream ? It wont play on Vlc, and logs show no error
12 avril 2020, par SquirrelSenpaiI am creating a rtmp stream using FFMPEG and sending the data to local NGINX server with the RTMP module.



When playing the stream in VLC I am unable to hear any music. Have I missed something ?



No FFMPEG errors according to logs



fmpeg -hide_banner -loglevel warning -i http://x.x.x.x:8138 -f mp3 rtmp://localhost/live




To test VLC >> Open Network Stream >> rtmp ://localhost/live



Nginx.conf



worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
 worker_connections 768;
 # multi_accept on;
}

rtmp_auto_push on;

rtmp{

 server{

 listen 1935;

 application live {

 # enable live streaming
 live on;
 record off;

 # publish only from localhost
 allow publish all;
 allow play all;

 }

 }

}



-
FFMPEG show libavcodec.so : text relocation warning dialog in Android
3 juillet 2019, par Anand Jain