
Recherche avancée
Autres articles (51)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (3159)
-
Revision 29744 : Update de la base de donnée
8 juillet 2009, par kent1@… — LogUpdate de la base de donnée
-
Revision 35042 : Un truc qui trainait
9 février 2010, par kent1@… — LogUn truc qui trainait
-
Converting .360 video (Go Pro Max) to 360 MP4 video ? [closed]
5 juin 2024, par Curious_MateI am trying to create a script that will convert my .360 videos into 360 MP4 format, but it does not seem to work properly. When I scroll through the video, it looks like I am in a black hole or like I am moving with "warp speed" :)


Can anyone help me with the parameters ? The goal is to convert them using ffmpeg instead of the traditional export from GoPro Player.


Here is the Python script so far :


`import os
import subprocess

# Define the root directory to start from and the path to ffmpeg
root_path = r"C:\Videos"
ffmpeg_path = r"C:\Programs\ffmpeg\bin\ffmpeg.exe"

for root, dirs, files in os.walk(root_path):
 for file in files:
 if file.endswith(".360"):
 full_path = os.path.join(root, file)
 output_file = full_path.replace('.360', '.mp4')

 subprocess.run([
 ffmpeg_path, '-y', '-i', full_path,
 '-vf', 'v360=input_stereo=mono:output=equirect:interp=linear',
 '-c:v', 'libx264', '-crf', '23', '-preset', 'fast',
 '-pix_fmt', 'yuv420p', 
 '-map_metadata', '0', 
 '-metadata:s:v', 'stereo_mode=mono', 
 '-metadata', 'projection=equirectangular', 
 '-an',
 '-vf', 'scale=3840:2160',
 output_file
 ])

 print(f"Converted: {output_file}")

print("All video conversions complete.")`



I tried the script above, but the export quality was not what I needed. The video is distorted, so I need a way to automate the export of many videos from .360 to .mp4. The native GoPro Player app has a functionality for batch export, but it constantly crashes.