
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (46)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)
Sur d’autres sites (10462)
-
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 ?