
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 (67)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
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 (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (7387)
-
Extract part of a video using ffmpeg_extract_subclip - get a clip longer than expected
4 juin 2020, par rightly0716I'm trying to extract a part of a video and find the solution on this page very helpful : 
Extract part of a video using ffmpeg_extract_subclip - black frames



The function
write_videofile
helps get what I need exactly but a bit slow. Theffmpeg_extract_subclip
function is indeed very fast, but somehow generates a weird clip that is slightly longer than what I need. For example, if I use thecmd
below (no matter with or without-copyinkf
),


ffmpeg -y -ss 218.00 -i input.mp4 -t 7.00 -vcodec copy -acodec copy output.mp4




My output.mp4 will be 9 second long, with the last two seconds frozen with no audio. Anyone saw a similar issue before ? Thanks a lot !


-
How to show part of a frame from a 4k IP cam
15 avril 2022, par BrPI'm working with andoroid.js framework to create a simple app that will show the video that is streamed from some IP cam.


I want to add the ability for the user to see only a part of the full video frame that have a resolution of 4k, so for example, if the user want to see the upper left corner of the frame, he can see it like the image is magnified. I'm not sure if this is possible.


Is there any ffmpeg or any way to accomplish this with a library for node ? Can I include ffmpeg with
node_modules
when I build my app ?

-
Stream part of the screen on linux
1er juin 2014, par Boris BrodskiHow can I stream part of my screen using ffmpeg (avconv) on Linux ?
I can record part of my screen :
ffmpeg -f alsa -ac 1 -i pulse -acodec pcm_s16le -f x11grab -r 24 -s 100x200 -i :0.0+20,30 ...
But trying to stream it adding
-f rtp rtp://127.0.0.1:1234
doesn’t work. ffmpeg starts to stream, but ffplay complains
$ ffplay rtp://127.0.0.1:1234
[rtp @ 0xaf8026a0] Unable to receive RTP payload type 96 without an SDP file describing it
[rtp @ 0xaf8026a0] Estimating duration from bitrate, this may be inaccurate
Input #0, rtp, from 'rtp://127.0.0.1:8080':
Duration: N/A, bitrate: N/A
rtp://127.0.0.1:8080: could not open codecs
1401611400.39 A-V: 0.000 s:0.0 aq= 0KB vq= 0KB sq= 0B f=0/0What do I missing ?