
Recherche avancée
Autres articles (55)
-
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 (...) -
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (7095)
-
Video size streaming to YouTube with FFMPEG on Raspberry Pi 4
14 juillet 2023, par mysteronsI'm using FFMPEG to stream video to YouTube with my Raspberry Pi 4. It used to work well, but just recently YouTube has started displaying the video smaller than it should be with a black surround as pictured.
preview in YouTube studio


The command I am using is :


ffmpeg -re -i $path -r 24 -g 48 -pix_fmt yuv420p -x264-params kiyint=48:min-keyint=48:scenecut=-1 -video_size 1280x720 -b:v 2000k -b:a 128k -ar 44100 -acodec aac -vcodec h264_v4l2m2m -preset superfast -bufsize 960k -crf 28 -threads 4 -f flv rtmp://a.rtmp.youtube.com/live2/$key


I thought -video_size 1280x720 should set the resolution that FFMPEG is outputting, but it's still displaying as in the picture. The videos themselves are 720p.


I can't work out how to get YouTube and FFMPEG to understand the resolution of the video from one another and have it fill the frame.


-
how to use x264 dll in another project
7 février 2024, par Hadi RasekhI want to use x264 in my project. There is some line in the code said :


`/* Application developers planning to link against a shared library version of


- 

- libx264 from a Microsoft Visual Studio or similar development environment
- will need to define X264_API_IMPORTS before including this header.
- This clause does not apply to MinGW, similar development environments, or non
- Windows platforms. */`










But I don't get this line :
define X264_API_IMPORTS before including this header


We can create x264 dll by its configuration and make


./configure --enable-shared
 make



but I can not use the dll in my Qt Project.


I can make my own dll (in another code) and use it in the project.
But when I start to use x264 dll in my project I get the following error :


C:\DataHiding\SourceCode2\GUI\DataHiding\mainwindow.cpp:10: error:
 'pulldown_frame_duration' was not declared in this scope
 qDebug() << pulldown_frame_duration[1];
 ^



-
how to use x264 dll in another project
7 février 2024, par Hadi RasekhI want to use x264 in my project. There is some line in the code said :


`/* Application developers planning to link against a shared library version of


- 

- libx264 from a Microsoft Visual Studio or similar development environment
- will need to define X264_API_IMPORTS before including this header.
- This clause does not apply to MinGW, similar development environments, or non
- Windows platforms. */`










But I don't get this line :
define X264_API_IMPORTS before including this header


We can create x264 dll by its configuration and make


./configure --enable-shared
 make



but I can not use the dll in my Qt Project.


I can make my own dll (in another code) and use it in the project.
But when I start to use x264 dll in my project I get the following error :


C:\DataHiding\SourceCode2\GUI\DataHiding\mainwindow.cpp:10: error:
 'pulldown_frame_duration' was not declared in this scope
 qDebug() << pulldown_frame_duration[1];
 ^