
Recherche avancée
Autres articles (111)
-
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 (...) -
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 (...) -
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)
Sur d’autres sites (12304)
-
ffmpeg started with initial_pause won't play
25 janvier 2015, par ComputerSaysNoI need to :
- connect to RTSP server
- send all RTSP commands except PLAY(hence the ’initial_pause’ option)
- send custom packet to server via GET_PARAMETER command
- send PLAY command <- this does not work
I am successfully sending and receiving data using ffurl_write/read, after which I’m sending av_read_play(context) <- this is being sent correctly and receives response(network sniffer says so), however, ffmpeg is not able to find the video codec for some reason, error :
[rtsp @ 0x7fff0a858800] Could not find codec parameters for stream 0 (Video : h264) : unspecified size
Consider increasing the value for the ’analyzeduration’ and ’probesize’ optionsI did increase the probsize and analyzeduration to obscene values without luck.
My question is : how can I resume/play the stream, what am I missing ?
Feel free to ask any additional questions that may help in finding the issue.
-
How to play a video using an AVPacket ? [on hold]
9 juin 2017, par Sanduni WickramasingheI am reading a mp4 (video) file stored in my local directory. Is there a method to play the video in separate window ?
I can do this with opencv by creating a new window and display the video. But with ffmpeg I have no idea how to do that. I have only found command line arguments to do this which is not useful in my project
-
How to play local video using ffplay and nginx ?
17 février 2016, par Bhoomi Loriya- I want to play video using ffplay.I store data in local machine.
directory path is like :
C:\ffmpeg\bin
- Using this command i cant play this video.
ffplay frlive.m3u8 - Above code can’t work.
- If i am play live video than they work fine this code is like :
ffplay -i <a href="http://media.webtvlive.eu/rtc/_definst_/mp4:live_720p.stream/playlist.m3u" rel="nofollow">http://media.webtvlive.eu/rtc/<em>definst</em>/mp4:live_720p.stream/playlist.m3u</a>
This code work properly.
- I want to play video using ffplay.I store data in local machine.