
Recherche avancée
Autres articles (74)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (11347)
-
Parsing splitted video with ffmpeg
12 mai 2016, par mtomyI have video file split into few chunks. Split done and random file positions, but chunks are large enough.
I need to parse every part with different instances of AVFormatContext. Chunks come one after another in right order. I think there are two options here :
- Being able to save and restore AVFormatContext state ;
- Save video file header (from first chunk) and attach it to every chunk.
I tried both but no success. First approach requires to go too deeply beyond public API of ffmpeg. With second approach I am unable to merge header with new chunk so that ffmpeg can handle it.
Can you help me with this ?
Thank you.
-
Allow internet access for ffmpeg in android
11 décembre 2015, par Can GokdereI have compiled a ffmpeg binary for android, now I am trying record hls stream with it. For this, I am using Runtime.exec() commands.
This is the command I am passing to binary :./ffmpeg -i VIDEO_URL -c copy -bsf:A aac_adtstoasc OUTPUT.mp4
However, when I run this command I see "Cannot resolve host" error for any given url. My app has internet and access network state permissions, But I think that since ffmpeg binary is another process, android does not grant it with same permissions as my app.
So my question is that, how can I give the binary Internet permission without root access.
If this is not possible, can you guide me what other ways I can do to download a hls stream ?
Thanks
-
FFMPeg quick P-Frame decoding
22 août 2014, par Lior OhanaWe’re using FFmpeg to decode H.264 live video streams.
When we get to a point where we’re not able to keep up with the live frame-rate (i.e high CPU) we start to drop frames before they pass the decoder.
Obviously, once we drop a frame, I need to drop all next P-Frames until the next I-Frame (GOP).The result is that sometimes we have several seconds without video (until an I-Frame arrives).
Is there anyway in FFmpeg to have a "partial" P-Frame decoding that will reduce the decoding time on one hand (assuming I don’t need the uncompressed frame) while keeping the decoder in a "valid" state for being able to decode the P-Frames afterwards ?
Thanks,
Lior.