
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (107)
-
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 (...) -
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 (...)
Sur d’autres sites (12598)
-
Pause and resume segmenting stream Smartly
11 octobre 2022, par AliI'm usign ffmpeg to record a rtmp stream and split it to tiny parts


this is the code i use


ffmpeg -i rtmp://PATH -f segment -segment_time 10 -segment_atclocktime 1 -segment_clocktime_offset 0 -write_empty_segments 1 -strftime PATH_OF_OUTPUT\%Y\%m\%d\%H\%M-%S.ts



This code works as I want
But my streaming is not continuous and sometimes it is on and sometimes it is off


I want it to be segmented and stored when the stream is running, and when the stream is interrupted, it is automatically suspended and resumes when the stream is strated again.


The first time I run the code, it runs without any problems, and when the stream reaches it, it automatically starts working, and when the stream stops, it stops.
But when the stream starts again, I get this error and I can't receive a file.


ffmpeg Non-monotonous DTS in output stream 0:1; . This may result in incorrect timestamps in the output file.



Here it is necessary to say that the input stream address and the output address are always the same and do not change
Thank You


-
when i use ffmpeg get : HTTP error 403 Forbidden
29 avril 2021, par Michael M1G0A4Wi entered this :


C:\Users\Michael\Desktop>ffmpeg -i "C:\Users\Michael\Desktop\1.mp4" -i "C:\Users\Michael\Desktop\1.m4a" -c copy "C:\Users\Michael\Desktop\2.mp4"



But the output I received was for the URL input while I was giving the address from my computer.


But the output :


[https @ 00000205778cdec0] HTTP error 403 Forbidden
[dash @ 00000205777be8c0] Failed to open an initialization section
[dash @ 00000205777be8c0] Error when loading first fragment of playlist
C:\Users\Michael\Desktop\1.mp4: Server returned 403 Forbidden (access denied)



At first I thought the problem was with the name or address, but after a test I realized that this is not the case


-
lavf/udp : fix dead code.
3 juin 2016, par Nicolas Georgelavf/udp : fix dead code.
Since d607861, service can not be NULL, only "0".
An UDP address with neither local port nor address leaves both
service and node to their default value, and POSIX specifies
that they are not allowed to be both NULL ; "0" is equivalent
to an unspecified port for all currently known protocols.Fix CID 1341570.