Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add file name ZencoderThumbnail #2

Open
maksimu opened this issue Jul 3, 2012 · 1 comment
Open

Add file name ZencoderThumbnail #2

maksimu opened this issue Jul 3, 2012 · 1 comment

Comments

@maksimu
Copy link

maksimu commented Jul 3, 2012

Add file name to de.bitzeche.video.transcoding.zencoder.job.ZencoderThumbnail

This is what I have done:

....

private String filename;

...
public Element createXML(Document document) {
...
if(this.filename != null){
Node filenameNode = document.createElement("filename");
filenameNode.setTextContent(this.filename.toLowerCase());
root.appendChild(filenameNode);
}
...

//Getters and setters
...
public String getFilename(){
return filename;
}

public void setFilename(String filename){
    this.filename = filename;
}
@drallgood
Copy link
Contributor

Sounds like a good idea.

Do you thing you can send a push request for this change? This way, you get credit for it ;)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants