
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (38)
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (10950)
-
My Website Downloads MP4s Instead of Plays them
18 juillet 2014, par user3412869I have a website I am working on and I have an uploads/ folder with mp4 files. When I test this site locally using XAMPP and click the link to the MP4 files, Chrome plays the MP4 with the browser and then when I click the back button it takes me back to my site. When I upload all of the site files to a webserver and click the same links to view the mp4 files it downloads the files and keeps me on the same page. However, I would like it to perform the same actions it does when I am developing locally, and play them, not download the files.
Is it possible to have Chrome play Mp4 files that are hosted on a server and not download them ?
-
ffmpeg incorrectly adds a fixed delay to the end of each video chunk
13 janvier 2023, par SkylerI am trying to combine audio a video data to output as an mp4 file using the command below, the videos are segmented to match the exact length of the audio file they are going to be merged with :


command = 'ffmpeg -y -i {} -i {} -strict -2 -q:v 1 {} -loglevel {} -c:v h264_nvenc'.format(
 audio_file, temp_result_avi, outfile, self.ffmpeg_loglevel
 )
 subprocess.call(command, shell=True)



however each video made by this is exactly 24 ms longer so this causes large delays as they get stitched back together. This doesnt work since the combined video needs to be combined back with another video and the desync gets worse as you get further in the combined videos.


How can I remedy this ?


-
ffmpeg distributed transcoding
23 juillet 2020, par KalavaI have a 100GB 1080p video file which I want to transcode to 720 h264. Since transcoding is computationally expensive, i wanted to transcode smaller portions of video & stitch it back together. Can we use ffmpeg seek to transcode 10seconds of video & stitch it back together ? When I am reading through blogs they mention to go with GOP. I want to get opinion with below approach. Any help is appreciated.


ffmpeg -ss 00:00:00 -i 80Gb.mp4 -t 10 -s 720x720 -c:v libx264 -c:a aac chunk1.mp4 
ffmpeg -ss 00:00:10 -i 80Gb.mp4 -t 10 -s 720x720 -c:v libx264 -c:a aac chunk2.mp4
ffmpeg -ss 00:00:20 -i 80Gb.mp4 -t 10 -s 720x720 -c:v libx264 -c:a aac chunk2.mp4



...