
Recherche avancée
Autres articles (59)
-
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 (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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
Sur d’autres sites (7130)
-
How to get video duration in seconds ? [duplicate]
28 juin 2016, par user2783132This question already has an answer here :
How can I get video duration in seconds ?
what I’ve tried :
ffmpeg -i file.flv 2>&1 | grep "Duration"
Duration: 00:39:43.08, start: 0.040000, bitrate: 386 kb/s
mediainfo file.flv | grep Duration
Duration : 39mn 43sthis what close, but it’s not so accurate, 2383 is 39.71 minutes
ffmpeg -i file.flv 2>&1 | grep "Duration"| cut -d ' ' -f 4 | sed s/,// | sed 's@\..*@@g' | awk '{ split($1, A, ":"); split(A[3], B, "."); print 3600*A[1] + 60*A[2] + B[1] }'
2383 -
php ffmpeg how can i get current video conversation percent [duplicate]
7 juillet 2014, par user3710676This question already has an answer here :
I have a video converting site. But another video converting sites can show current conversation percent to users. How can they do this ?
-
Client/Server Video Streaming [on hold]
7 juillet 2014, par Nawaf AlsrehinI want to build client/Server application in order to do video streaming from server (that is holds the video files) to the client (that want to view the video files). In between I should be able to transcode the video stream to fit the clients (PC, tablet, and smart phone) requirements. For example, If I have a flv (680x320, 30 fps, H.264 codes )video file in the server and want to send it to the client that be able to view only mp4 (320x240, 25 fps, MPEG4 codec).
1) I am wondering if Red5 will work or not because it just allow only FLV clients ?
2) Can I design my own RTP or RTMP protocols to do this ? If yes, It is doable or not within few weeks