
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (51)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (5191)
-
ffmpeg rtmp webcam live stream iphone/pad segment size too big
1er février 2013, par Foo BarazzI'm transcoding a rtmp stream from a red5 server for use to live stream on a iphone or ipad device. I built latest ffmpeg version from git repo using the built in segmenter to create .ts files and m3u8 playlist file using the following :
ffmpeg -probesize 50k -i "rtmp://localhost/oflaDemo/red5StreamDemo live=1" \
-c:v libx264 -b:v 128k -vpre ipod320 -flags -global_header -map 0 \
-f segment -segment_time 3 -segment_list foo.m3u8 -segment_list_flags +live \
-segment_list_type m3u8 -segment_list_size 5 -segment_format mpegts foo%d.tsThis works fine, but I can't get the segment size smaller than about 12 sec even set to 3 (-segment_time 3). It seems to be caused by libx264 vcodec.
Am I missing any flag ?By the way, you can simple run the ffmpeg command above successfully by starting red5 SimpleBroadcaster example.
-
Unable to play video from firebase cloud storage download url on Iphone Safari [closed]
26 janvier 2024, par Acid CodergetDownloadURL(ref)
 .then(url => {
 //... save the url to state
 })



front end : React



 <source src="{videoURL}" type="video/mp4"></source>
 



work fine on PC and Android, but on Iphone Safari, only 1 out of 10 videos can be played




all video are from the same source, going through same compression, from mp4 to mp4


import ffmpeg from 'fluent-ffmpeg'

 ffmpeg(inputPath)
 .output(outputPath)
 .videoCodec('libx264')
 .audioCodec('aac')
 .on('end', () => {
 // ...
 })
 .on('error', err => {
 // ...
 })
 .run()



-
Convert .mp3 to .mov or .mp4 on iPhone SDK
2 août 2014, par SebastianHow are you guys ? I’m working on a little idea I had yesterday and I’m a little stuck with an mp3 conversion.
At this time, my app does the following :
- Receive an input text.
- The app generate a speech using an online API and download the generated .mp3 file to the app document’s folder.
Now I need to convert the .mp3 to .mov or .mp4 and then grab it to the camera roll, so the user can share the video on Facebook, Whatsapp, or wherever he wants.
Is there some easy and memory friendly way to convert from .mp3 to .mp4 without "writing a video" ?
Thank you !