Recherche avancée

Médias (91)

Autres articles (66)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Supporting all media types

    13 avril 2011, par

    Unlike 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 (...)

Sur d’autres sites (10679)

  • doc/general : Make the license status of the Android libraries clearer

    12 juin 2013, par Timothy Gu
    doc/general : Make the license status of the Android libraries clearer
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/general.texi
  • How to create video by stitching together images (.png) where the serial on each image file increases by 6

    10 avril 2024, par DataStatsExplorer

    I am trying to create a video (preferably mp4) from a series of png images. However, the name of each image file increases by 6 every frame. For example, I would have depthframe_0000 as the first frame, and depthframe_0001 for the next frame.

    &#xA;

    There are a few answers that have answered a similar question but I am unable to process the video when the image files are not increasing by 1.

    &#xA;

    I would like to keep the fps at 5. I am using ffmpeg as the suggested in the answers above but am open to any other suggestion.

    &#xA;

    The collab code that I have put together is as follows :

    &#xA;

    import subprocess&#xA;&#xA;# Define the frame rate and the input/output paths&#xA;output_fps = 5&#xA;input_path = "/content/drive/MyDrive/depth/depthframe_%04d.png"&#xA;output_path = "/content/drive/MyDrive/depth.mp4"&#xA;&#xA;# Create a list of the frames&#xA;frames = [input_path % i for i in range(0, 2671, 6)]  # Update range as needed&#xA;&#xA;# Write the list of frames to a temporary text file&#xA;with open(&#x27;frames.txt&#x27;, &#x27;w&#x27;) as f:&#xA;    for frame in frames:&#xA;        f.write(f"file &#x27;{frame}&#x27;\n")&#xA;&#xA;# Create the command&#xA;command = [&#xA;    "ffmpeg",&#xA;    "-f", "concat",&#xA;    "-safe", "0",&#xA;    "-i", "frames.txt",&#xA;    "-c:v", "libx264",&#xA;    "-pix_fmt", "yuv420p",&#xA;    output_path&#xA;]&#xA;&#xA;# Run the command&#xA;subprocess.run(command, check=True)&#xA;

    &#xA;

  • Heroku ffmpeg buildpack

    20 octobre 2015, par Manuel Quintanilla

    Putting together the video upload section in my rails app and am having some issues with video play on mobile phones. Im using

    paperclip-av-transcoder, s3 and  Heroku

    On my laptop I can visit the page and see the video thumbnails and play the videos only because I have previously installed ffmpeg to my machine.

    Remotely on Heroku I’ve set the appropriate buildpacks for ffmpeg and have run push heroku master to install the buildpacks - Now when I visit the page on my mobile iPhone I don’t get a thumbnail but when I play the video it plays - on the other hand when I visit the page on my Android phone I don’t get a thumbnail and the video dose not play but I can upload mp4s on Android.

    Check out my set up here : Heroku ffmpeg buildpacks for video uploads

    It seems I don’t have the proper buildpack setup or some other heroku setting with ffmpeg.

    Any suggestions ? Thanks in advance !