Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (89)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • 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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

Sur d’autres sites (6792)

  • 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)
    • 


    


  • 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 ?

  • 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