Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (109)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (12816)

  • Using ffmpeg with chunks of file

    27 juin 2020, par Yashik

    I am trying to download a file as 100mb chunks and I need to convert this using ffmpeg and upload this file to dropbox.
The code I tried :

    


    import os
import requests

#---snip---#

for chunk in r.iter_content(chunksize=chunksize):
  #chunksize is 100mb
  fp = open("a.mp4","wb")
  fp.write(chunk)
  fp.close()
  os.system("ffmpeg -i a.mp4 a.mkv")
  
  #code for uploading


    


    The error is moov atom is not found

    


    1.How can I convert file chunks with ffmpeg ?

    


    2.Can I convert without ever needing to save to a.mp4, like giving chunk directly to ffmpeg ?

    


    Ps : The problem occurs with file size greater than 100mb

    


    Edit :

    


    After converting the file is appended to file in dropbox

    


    What I want :

    


      

    • Sample.mp4 - 200mb
    • 


    • Downloads file as chunks 100mb
    • 


    • Converts the chunk
    • 


    • Upload to drive (multipart)
    • 


    


  • doc : remove file name from @file directive in Doxygen usage example

    14 juillet 2011, par Diego Biurrun

    doc : remove file name from @file directive in Doxygen usage example

  • Finding file extension for media file using ffprobe

    12 septembre 2013, par luddet

    I'm writing a media handling tool, using ffmpeg and ffprobe.

    Part of the workflow consists of the application retreiving media files with nondescript extensionless file names.
    Now I could get the extension from the media source but that would not fit as neatly into the program code flow, so I'm using ffprobe to extract the format information.

    The problem i have encountered is the format "QuickTime / MOV" where ffprobe gives me

    format_name="mov,mp4,m4a,3gp,3g2,mj2"

    Is there a way to know which of the extensions is most appropriate ?

    I guess the simplest solution is to pick the first,mov, since that should work for all of them. But I would prefer to be more specific.

    Any way to accomplish this ?