Recherche avancée

Médias (91)

Autres articles (47)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 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 (6419)

  • Android video compression using ffmpeg

    3 août 2016, par Nikhil Desale

    I am compressing video using ffmpeg library.
    user can browse for any video and compress it. It is working fine for videos with video name don’t have white spaces.But if video name have white spaces compression is not working.we try to double quote for video path but still it is not working. for eg. our video path is like this - /storage/sdcard1/Video/teri jhuki nazar.mp4

    how to fix this issue ?

  • how to draw n number of rectangles on video with ffmpeg

    29 octobre 2017, par taltal115

    Im trying to create a video for testing framrate html5 players
    this video need to contain rectanges for each frame for the first 10 frames
    i need it to be dynamic.

    for now i have the following command :

    ffmpeg -loop 1 -i black.png -c:v libx264 -t 15 -r 30 -vcodec h264 -pix_fmt yuv420p \
          -vf "[in]drawtext=fontfile=/usr/share/fonts/open-sans/OpenSans-Regular.ttf : text=%{n}:x=(w-tw): y=h-(lh): fontcolor=white: box=1: boxcolor=0x00000099, \
               drawbox=x='mod(t\,10)*32':w=16:h=16:color=white@1[out]" \
          -y out123.mp4

    again im trying to draw a rectangle for each frame in the to image like so :
    x=16*0,x=16*1,x=16*2...

    the only mving pate here is the x param and its not moving
    can any one help ?

  • How can I play & sync video playback on a webpage for all ? (even a better/more developed streaming method with full media controls)

    15 juin 2020, par Atmos

    I'll start by explaining what I currently use to accomplish this, to better explain my goal

    



    I use ffmpeg to "re-stream" to a streaming service (angelthump). Of which's player I embedded into my website. I run the ffmpeg cmd, which I need to tweak slightly each time to play various media. It's just me either pointing it to a location on my local drive or to a video URL.

    



    Problem being with this is I don't have full media playback control (to pause, resume etc.), and it doesn't allow anyone beyond me & the friend who taught me this method to play a video.

    




    



    What I am looking for in a new/more refined method :

    



    (I'll explain at the end why I added "refined method")

    



    


    The Main Goal I Want to Achieve :

    


    



    A webpage where where visitors can access and view whatever media is playing, in sync with everyone.

    



    And with this synced video, for there to be a simple way for (allowed) users to submit media to play or queue up next. 
And Playback controls for an appointed admin. A more complex preferrable feature in addition to that ; where the submitter of current playing media to also have control.

    



    Some expanded description on the features :

    



      

    1. Recieve info in a simple way on which media to play :

      



        

      • Be able load media by being provided a direct video URL. Or if possible, load it from the submitter's own device.

      • 


      • Queueing multiple videos :

        



        Multiple people may add their own videos while another is playing, so instead of waiting for it to end it can hold the URL to play next.

      • 


    2. 


    3. Proper media playback controls (pause, rewind, resume etc.)

      



      I'd like to be able to have simple controls on the webpage itself to easily pause, seek to a time of the video. Being able to do this without having to go through the complex steps I used to, to achieve this.

      



      If possible, allow the user who submitted the current media playing, access to the media controls only.

      



      (To lock these controls to select users (depending on the video sync method I find suitable) I do realise I may need to figure out seperately how I want to lock this to select users. Either by adding control buttons which only shows up for them. But if I find a method where an embeddable video player like setup with sync capabilitie, I can just leave it up to that.)

    4. 


    



    


    The "refined" point expanded :

    


    



    The friend once provided some bash scripts which could queue videos while ffmpeg is running. So I didn't need to stop/wait for it to finish to start the next vid. And I think he mentioned media controls can be achieved using this same method. 
But if there are better & simpler ways to achieve the overall answer to my topic, I would like to take that route.

    




    



    There was also mention of webrtc & janus if that helps anyone suggest more methods. I will also try and reach out to others to help implement whatever suggestions I can get.