
Recherche avancée
Médias (1)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
Autres articles (43)
-
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 -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
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 (8689)
-
Feed raw data to ffmpeg from python
27 octobre 2020, par eriI want to wrap h264 stream to mp4 container on fly. But ffmpeg exits after first buffer


ffmpeg = subprocess.Popen("ffmpeg -f h264 -i pipe: -c copy -f mp4 -movflags frag_keyframe+empty_moov+faststart pipe:".split(), stdout=subprocess.PIPE, stdin=subprocess.PIPE)

fd = ffmpeg.stdout.fileno()
fl = fcntl.fcntl(fd, fcntl.F_GETFL)
fcntl.fcntl(fd, fcntl.F_SETFL, fl | os.O_NONBLOCK)

while True:
 data = infile.read(32768)
 ffmpeg.stdin.write(data)
 data = ffmpeg.stdout.read()
 outfile.write(data)



-
h264 : drop any pretense of support for data partitioning
19 janvier 2015, par Anton Khirnovh264 : drop any pretense of support for data partitioning
It does not work correctly and apparently never did. There is no
indication that this (mis)feature is ever used in the wild or even that
any software other than the reference supports it.Since the code that attempts to support it adds some nontrivial
complexity and has resulted in several bugs in the past, it is better to
just drop it. -
ffmpeg command not working with VANC data [closed]
3 avril 2024, par Parmesh Kumawatwhen i am running below ffmpeg command


ffmpeg -i "udp://ip:port?localaddr=ip&sources=ip&overrun_nonfatal=1&buffer_size=4000000&fifo_size=1000000" -c copy -map 0 -vsync passthrough -copyts vanc_stream1.ts


the bin_data for VANC is changing/not recognized saving as below output


Input #0, mpegts, from 'vanc_stream_ffmpeg.ts': 
 Duration: N/A, bitrate: N/A 
 Program 1 
 Metadata:
 service_name : Service01 
 service_provider: FFmpeg 
 Stream #0:0[0x100]: Data: bin_data ([6][0][0][0] / 0x0006) 
 Stream #0:1[0x101]: Data: bin_data ([6][0][0][0] / 0x0006)
 Stream #0:2[0x100]: Data: bin_data ([6][0][0][0] / 0x0006) 
 Stream #0:3[0x101]: Data: bin_data ([6][0][0][0] / 0x0006)



It should be saved as


Stream #0:0[0x100]: Data: bin_data ([6][0][0][0] / 0x0006) 
Stream #0:1[0x101]: Data: bin_data ([6][0][0][0] / 0x0006)
Stream #0:2[0x100]: Data: bin_data (VANC / 0x434E4156) 
Stream #0:3[0x101]: Data: bin_data (VANC / 0x434E4156) 



I have tried below tsp command to fetch the stream and it works fine


tsp -I ip port --source ip -O file stream_capture1.ts



i need the same output with ffmpeg command