
Recherche avancée
Autres articles (110)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 (13944)
-
Revision 6919 : Gros changement... On change le pipeline diogene_champs_sup en ...
22 août 2012, par kent1 — LogGros changement...
On change le pipeline diogene_champs_sup en diogene_objets
Les champs_sup antérieurs $fluxarticle ?truc ? deviennent maintenant $fluxarticle ?champs_sup ?truc ?
On fait cela pour gérer d’autres propriétés spécifiques par objet comme :$fluxpage ?type_orig ? = ’article’ ; => indique que le type d’origine est article ;
$fluxpage ?diogene_max ? = 1 ; => indique que l’on ne peut avoir qu’un seul diogène de ce type ;
$fluxpage ?ss_rubrique ? = true ; => indique que ce type de diogène est sans rubrique, ne peut correspondre à 1 secteur ;
Passage en version 1.2.0 -
FFmpeg function avformat_open_input for USB video device throws exception : No such file or directory
8 juin, par ffvideonerWindows & C# & FFmpeg.AutoGen


I used the ffmpeg-function (from library FFmpeg.AutoGen) to show video from rtsp-stream :


ffmpeg.avformat_open_input(&pFormatContext, "rtsp://127.0.0.1:8554/abc", iformat, null);



It works right.


Now I want to use this function for USB video device.


FFmpeg outputs this device name :


ffmpeg -list_devices true -f dshow -i dummy

[dshow @ 0000000000163000] "GENERAL WEBCAM" (video)



This is how I'm trying to get the video :


string deviceName = "GENERAL WEBCAM";



or


string deviceName = "video=GENERAL WEBCAM";

ffmpeg.avformat_open_input(&pFormatContext, deviceName, ffmpeg.av_find_input_format("dshow"), null);



For both variants of device names, I get an error :


No such file or directory.



But here it works :


ffmpeg -video_size 1280x720 -framerate 30 -f dshow -i video="GENERAL WEBCAM":audio="Microphone (3- GENERAL WEBCAM)" -c:v libx264 -crf 30 -preset ultrafast ffmpegvideo.mp4



Why doesn't
avformat_open_input
work with video device name ?

-
FFmpeg : calculate time to convert images and .mp3 to a video
22 novembre 2018, par domiIs there any formula that I can use to calculate the time that FFmpeg uses to convert a single .jpg image and .mp3 song to a video ?
I am using the following code :
ffmpeg -loop 1 -r ntsc -i image.jpg -i song.mp3 -c:a copy -c:v libx264 \ -preset fast -threads 0 -shortest
Lets say we have an image with X resolution and .mp3 length of L. Would the formula be :
time = X * L(in seconds) ?
Thanks for any tips.