
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (62)
-
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 (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (7881)
-
Create Video Programmatically with Qt 5.0 [on hold]
2 août 2018, par JoeyWe have a QT application that renders programmatically generated QPixmaps one by one to the display and we would like to save this output to a video file.
I know that in the past people have recommended using ffmpeg or opencv with Qt to do this. In Qt 5, however, the new QtMultimedia module seems to expose some of this type of functionality.
It is now possible, for example, to save video from a camera source in Qt 5 by using the QMediaRecorder as described in http://doc.qt.io/qt-5/qmediarecorder.html#details.
With this new functionality, is there any way to use Qt 5 to save our programmatically generated video, or am I still better off using a third party library ?
-
init seg_duration option for dash similar to -hls_init_time option
5 août 2019, par SaurabhIs there any option to set first segment duration for dash files, There is similar option for HLS : hls_init_time ?
I could not found any such option in documentation.
Why I want such option to be there :
From generated DASH files : in Android ExoPlayer, It always plays first chunk of lowest quality(bitrate/resolution), after first chunk, basis user’s internet speed, it picks the next chunk. If there is no init_seg_duration option, I have to rely only on seg_duration and I can not keep it bit large. Why I will like to keep it large : to reduce the number of files generated.
With such option, I could had given
-init_seg_duraion 2 -seg_duration 6
, so video quality would had increased after 2 seconds and total number of files generated would also not had exploded. -
ffmpeg settings for converting to mp4 from ogg for HTML5 video
8 janvier 2013, par ayr_tonI'm trying to convert OVG to MP4 H.264 valid format for use in HTML5 video.
I tryid this :ffmpeg -i video_source_file.ogv -vcodec libx264 -vpre ipod640 -b 250k -bt 50k -acodec libfaac -ab 56k -ac 2 -s 480x320 video_out_file.mp4
But the generated format is invalid for Internet Explorer 9 and 10. Other H.264 videos works fine. VLC says that the generated video is H.264.
It only happens when I try to convert ogv/ogg valid videos to mp4 H.264.
I also tried many options in ffmpeg2theora, but it appears only to convert files to theora. I thought this might help, but I could not generate a valid H.264.
How to make it work ?